List of usage examples for com.badlogic.gdx ApplicationListener interface-usage
From source file com.badlogic.gdx.backends.android.CardBoardApplicationListener.java
public interface CardBoardApplicationListener extends ApplicationListener { public void onNewFrame(HeadTransform paramHeadTransform); public void onDrawEye(Eye paramEye);
From source file com.badlogic.gdx.graphics.g3d.test.KeyframedModelViewer.java
public class KeyframedModelViewer implements ApplicationListener { PerspectiveCamera cam; KeyframedModel model; Texture texture = null; boolean hasNormals = false; BoundingBox bounds = new BoundingBox();
From source file com.badlogic.gdx.graphics.g3d.test.MD2Viewer.java
public class MD2Viewer implements ApplicationListener { KeyframedModel model; Texture texture; PerspectiveCamera cam; float angle = 0;
From source file com.badlogic.gdx.graphics.g3d.test.QbobViewer.java
public class QbobViewer implements ApplicationListener { PerspectiveCamera cam; KeyframedModel animModel; KeyframedAnimation anim; float animTime = 0;
From source file com.badlogic.gdx.graphics.g3d.test.SkeletonModelViewer.java
public class SkeletonModelViewer implements ApplicationListener { PerspectiveCamera cam; SkeletonModel model; Texture texture = null; boolean hasNormals = false; BoundingBox bounds = new BoundingBox();
From source file com.badlogic.gdx.graphics.g3d.test.StillModelViewer.java
public class StillModelViewer implements ApplicationListener { PerspectiveCamera cam; StillModel model; Texture[] textures = null; boolean hasNormals = false;
From source file com.badlogic.gdx.graphics.g3d.test.StillModelViewerGL20.java
public class StillModelViewerGL20 implements ApplicationListener { PerspectiveCamera cam; StillModel model; Texture[] textures = null; boolean hasNormals = false;
From source file com.badlogic.gdx.graphics.g3d.test.Viewer.java
public class Viewer implements ApplicationListener { public static void main(String[] argv) { new LwjglApplication(new Viewer(), "Viewer", 480, 320, false); }
From source file com.badlogic.gdx.spriter.demo.SpriterDemoApp.java
public class SpriterDemoApp implements ApplicationListener { // Display stuff SpriteBatch batch; OrthographicCamera camera; Skin skin;
From source file com.badlogic.gdx.tests.android.WindowedTest.java
public class WindowedTest extends AndroidApplication implements ApplicationListener { Color color = new Color(1, 1, 1, 1); public void onCreate(Bundle bundle) { super.onCreate(bundle);