158159160161162163164
public void dispose () { atlas.dispose(); } public static void main (String[] args) throws Exception { new LwjglApplication(new SimpleTest2()); }
134135136137138139140
batch.getProjectionMatrix().setToOrtho2D(0, 0, width, height); debugRenderer.getShapeRenderer().setProjectionMatrix(batch.getProjectionMatrix()); } public static void main (String[] args) throws Exception { new LwjglApplication(new MixTest()); }
374375376377378379380
if (args.length == 0) args = new String[] {"spineboy/spineboy-old", "walk"}; else if (args.length == 1) // args = new String[] {args[0], null}; new LwjglApplication(new NormalMapTest(args[0], args[1])); }
104105106107108109110
public void dispose () { atlas.dispose(); } public static void main (String[] args) throws Exception { new LwjglApplication(new SimpleTest3()); }
242243244245246247248
public static void main (String[] args) throws Exception { LwjglApplicationConfiguration config = new LwjglApplicationConfiguration(); config.title = "Box2D - Spine"; config.width = 640; config.height = 480; new LwjglApplication(new Box2DExample(), config); }
498499500501502503504
LwjglApplicationConfiguration config = new LwjglApplicationConfiguration(); config.width = 800; config.height = 600; config.title = "Skeleton Viewer"; config.allowSoftwareMode = true; new LwjglApplication(new SkeletonViewer(), config); }
114115116117118119120
public void resize (int width, int height) { camera.setToOrtho(false); } public static void main (String[] args) throws Exception { new LwjglApplication(new SkeletonAttachmentTest()); }
163164165166167168169
public void dispose () { atlas.dispose(); } public static void main (String[] args) throws Exception { new LwjglApplication(new IkTest()); }