LibGDX Archives – GameFromScratch.com Game Development News, Tutorials and More Mon, 05 Oct 2020 14:31:13 +0000 en-US hourly 1 https://wordpress.org/?v=6.4.2 https://gamefromscratch.com/wp-content/uploads/2020/07/GFS-1.png LibGDX Archives – GameFromScratch.com 32 32 LibGDX Status Report https://gamefromscratch.com/libgdx-status-report/ Mon, 05 Oct 2020 14:29:31 +0000 https://gamefromscratch.com/?p=23675 GameFromScratch.com
LibGDX Status Report

LibGDX is a cross platform open source game development framework (previously covered in-depth tutorial series on GFS here and here) that has seen more frequent development in recent months. LibGDX is a battle tested and production ready game framework that was used in recent titles such as Attack the Spire …

LibGDX Status Report Read More

The post LibGDX Status Report appeared first on GameFromScratch.com.

]]>
An Introduction To Spine–A 2D Bone Based Animation System https://gamefromscratch.com/an-introduction-to-spine-a-2d-bone-based-animation-system/ Mon, 25 Apr 2016 00:00:00 +0000 https://gamefromscratch.com/an-introduction-to-spine-a-2d-bone-based-animation-system/ GameFromScratch.com
An Introduction To Spine–A 2D Bone Based Animation System

  One of the major advantages to working in 3D is once you have your character modeled and rigged, creating new animations is simply a matter of defining a series of poses on a timeline.  Animations are generally defined by moving a series of bones controlling your mesh, which in turn are powered by a [...]

The post An Introduction To Spine–A 2D Bone Based Animation System appeared first on GameFromScratch.com.

]]>
Using the Blender Generated Game Level in LibGDX https://gamefromscratch.com/using-the-blender-generated-game-level-in-libgdx/ Wed, 13 Jan 2016 00:00:00 +0000 https://gamefromscratch.com/using-the-blender-generated-game-level-in-libgdx/ GameFromScratch.com
Using the Blender Generated Game Level in LibGDX

  I recently published a tutorial on creating a game level in Blender over three parts, but I never actually illustrated how such a level would be used by a game engine.  A user on /r/gamedev asked exactly this question, so I figured I would throw together a quick post showing how such content could [...]

The post Using the Blender Generated Game Level in LibGDX appeared first on GameFromScratch.com.

]]>
LibGDX Tutorial 7: Camera basics https://gamefromscratch.com/libgdx-tutorial-7-camera-basics/ Mon, 01 Jun 2015 00:00:00 +0000 https://gamefromscratch.com/libgdx-tutorial-7-camera-basics/ GameFromScratch.com
LibGDX Tutorial 7: Camera basics

Previous Part Table Of Contents Next Part   Now we are going to look quickly at using a camera, something we haven’t used in any of the prior tutorials.  Using a camera has a couple of advantages.  It gives you an easier way of dealing with device resolution as LibGDX will scale the results up [...]

The post LibGDX Tutorial 7: Camera basics appeared first on GameFromScratch.com.

]]>
Building LibGDX iOS Apps in IntelliJ using new RoboVM plugin https://gamefromscratch.com/building-libgdx-ios-apps-in-intellij-using-new-robovm-plugin/ Mon, 04 May 2015 00:00:00 +0000 https://gamefromscratch.com/building-libgdx-ios-apps-in-intellij-using-new-robovm-plugin/ GameFromScratch.com
Building LibGDX iOS Apps in IntelliJ using new RoboVM plugin

  Until recently, if you were developing for iOS with LibGDX, you were better of using Eclipse or command line as your development environment.  Now however there is a beta plugin for RoboVM, the technology that enables Java on iOS.  This tutorial is going to take a quick look at the process.     Before [...]

The post Building LibGDX iOS Apps in IntelliJ using new RoboVM plugin appeared first on GameFromScratch.com.

]]>
LibGDX Video Tutorial: 3D Part 2–Loading Models and Playing Animations https://gamefromscratch.com/libgdx-video-tutorial-3d-part-2-loading-models-and-playing-animations/ Tue, 07 Apr 2015 00:00:00 +0000 https://gamefromscratch.com/libgdx-video-tutorial-3d-part-2-loading-models-and-playing-animations/ GameFromScratch.com
LibGDX Video Tutorial: 3D Part 2–Loading Models and Playing Animations

  In this video tutorial we continue to look at 3D programming in LibGDX.  First we look at how to convert a 3D model to work with LibGDX using fbx-conv.  We then write the code to display that model and look at displaying animations.  The fbx-conv application can be downloaded here.   The data file [...]

The post LibGDX Video Tutorial: 3D Part 2–Loading Models and Playing Animations appeared first on GameFromScratch.com.

]]>
LibGDX Video Tutorial: 3D Part 1 https://gamefromscratch.com/libgdx-video-tutorial-3d-part-1/ Tue, 24 Mar 2015 00:00:00 +0000 https://gamefromscratch.com/libgdx-video-tutorial-3d-part-1/ GameFromScratch.com
LibGDX Video Tutorial: 3D Part 1

  In this tutorial we start looking at 3D game development using LibGDX.  We explore creating a Camera, Model, ModelInstance and look at the basics of working in 3D using LibGDX.   You can watch the tutorial in HD here or embedded below.  The following is the source used in this example.   The Source [...]

The post LibGDX Video Tutorial: 3D Part 1 appeared first on GameFromScratch.com.

]]>
Create a 3D game in Blender using LibGDX and BDX https://gamefromscratch.com/create-a-3d-game-in-blender-using-libgdx-and-bdx/ Mon, 16 Mar 2015 00:00:00 +0000 https://gamefromscratch.com/create-a-3d-game-in-blender-using-libgdx-and-bdx/ GameFromScratch.com
Create a 3D game in Blender using LibGDX and BDX

  This post popped up on reddit a few days back and didn’t really get a ton of interest.  I almost missed it myself, but I am glad I didn’t.  Off and on the last couple days, I’ve been playing around with BDX and I have to say, there is the kernel of something really [...]

The post Create a 3D game in Blender using LibGDX and BDX appeared first on GameFromScratch.com.

]]>
LibGDX Video Tutorial: Sprite Animation https://gamefromscratch.com/libgdx-video-tutorial-sprite-animation/ Fri, 27 Feb 2015 00:00:00 +0000 https://gamefromscratch.com/libgdx-video-tutorial-sprite-animation/ GameFromScratch.com
LibGDX Video Tutorial: Sprite Animation

  In this tutorial, we look at animating sprites using the Animation class.  We look at loading sprites two different ways.  First creates them by splitting up a Texture loaded into memory.  The second example uses a texture atlas.  As always the code is provide below.   You can watch the video in HD here. [...]

The post LibGDX Video Tutorial: Sprite Animation appeared first on GameFromScratch.com.

]]>
LibGDX Tutorial 5: Handling Input–Touch and gestures https://gamefromscratch.com/libgdx-tutorial-5-handling-input-touch-and-gestures/ Fri, 12 Dec 2014 00:00:00 +0000 https://gamefromscratch.com/libgdx-tutorial-5-handling-input-touch-and-gestures/ GameFromScratch.com
LibGDX Tutorial 5: Handling Input–Touch and gestures

Previous Part Table Of Contents Next Part   In the previous tutorial we looked at handling mouse and keyboard events, both event driven and polled.  Now we will look at how touch works.  To follow along at this point you need to have a touch enabled device ( multi-touch with a mouse is tricky to [...]

The post LibGDX Tutorial 5: Handling Input–Touch and gestures appeared first on GameFromScratch.com.

]]>