began setup of actual game screen

This commit is contained in:
2017-07-22 18:40:32 -05:00
parent 8a64368b9b
commit 99e6fe9c3f
45 changed files with 359 additions and 263 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 313 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 370 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 345 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 464 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 523 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 663 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 971 B

BIN
android/assets/800x480/magic1.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 202 B

View File

@@ -237,18 +237,18 @@ pause-down
index: -1
bar-empty
rotate: false
xy: 106, 13
size: 26, 7
split: 0, 0, 1, 1
orig: 32, 32
xy: 105, 13
size: 13, 3
split: 0, 0, 0, 0
orig: 13, 3
offset: 0, 0
index: -1
bar-fill
rotate: false
xy: 106, 21
size: 26, 7
split: 0, 0, 1, 1
orig: 26, 7
xy: 119, 13
size: 13, 3
split: 1, 1, 1, 1
orig: 13, 3
offset: 0, 0
index: -1
left-button

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.6 KiB

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

@@ -4,13 +4,13 @@ import android.os.Bundle;
import com.badlogic.gdx.backends.android.AndroidApplication;
import com.badlogic.gdx.backends.android.AndroidApplicationConfiguration;
import zero1hd.polyjet.Polyjet;
import zero1hd.polyjet.Main;
public class AndroidLauncher extends AndroidApplication {
@Override
protected void onCreate (Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
AndroidApplicationConfiguration config = new AndroidApplicationConfiguration();
initialize(new Polyjet(), config);
initialize(new Main(), config);
}
}