began setup of actual game screen
BIN
android/assets/1280x720/magic1.png
Executable file
After Width: | Height: | Size: 6.8 KiB |
BIN
android/assets/1280x720/tpSelector.png
Executable file
After Width: | Height: | Size: 313 B |
BIN
android/assets/1280x800/magic1.png
Executable file
After Width: | Height: | Size: 8.1 KiB |
BIN
android/assets/1280x800/tpSelector.png
Executable file
After Width: | Height: | Size: 370 B |
BIN
android/assets/1366x768/magic1.png
Executable file
After Width: | Height: | Size: 7.5 KiB |
BIN
android/assets/1366x768/tpSelector.png
Executable file
After Width: | Height: | Size: 345 B |
BIN
android/assets/1920x1080/magic1.png
Executable file
After Width: | Height: | Size: 13 KiB |
BIN
android/assets/1920x1080/tpSelector.png
Executable file
After Width: | Height: | Size: 464 B |
BIN
android/assets/1920x1200/magic1.png
Executable file
After Width: | Height: | Size: 17 KiB |
BIN
android/assets/1920x1200/tpSelector.png
Executable file
After Width: | Height: | Size: 523 B |
BIN
android/assets/2560x1440/magic1.png
Executable file
After Width: | Height: | Size: 23 KiB |
BIN
android/assets/2560x1440/tpSelector.png
Executable file
After Width: | Height: | Size: 663 B |
BIN
android/assets/3840x2160/magic1.png
Executable file
After Width: | Height: | Size: 49 KiB |
BIN
android/assets/3840x2160/tpSelector.png
Executable file
After Width: | Height: | Size: 971 B |
BIN
android/assets/800x480/magic1.png
Executable file
After Width: | Height: | Size: 3.3 KiB |
BIN
android/assets/800x480/tpSelector.png
Executable file
After Width: | Height: | Size: 202 B |
@@ -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
|
||||
|
Before Width: | Height: | Size: 4.6 KiB After Width: | Height: | Size: 4.5 KiB |
@@ -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);
|
||||
}
|
||||
}
|
||||
|