mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-21 01:36:02 +08:00
Added version placeholder for building JAR.
This commit is contained in:
parent
92f91bae58
commit
257e72de11
@ -430,7 +430,7 @@ public class SkeletonViewer extends ApplicationAdapter {
|
||||
stage.addActor(window);
|
||||
|
||||
{
|
||||
Table table = new Table(skin);
|
||||
Table table = new Table();
|
||||
table.setFillParent(true);
|
||||
table.setTouchable(Touchable.disabled);
|
||||
stage.addActor(table);
|
||||
@ -438,6 +438,15 @@ public class SkeletonViewer extends ApplicationAdapter {
|
||||
table.add(toasts);
|
||||
}
|
||||
|
||||
{
|
||||
Table table = new Table();
|
||||
table.setFillParent(true);
|
||||
table.setTouchable(Touchable.disabled);
|
||||
stage.addActor(table);
|
||||
table.pad(10).top().right();
|
||||
table.add(new Label("", skin, "default", Color.LIGHT_GRAY)); // Version.
|
||||
}
|
||||
|
||||
window.addListener(new InputListener() {
|
||||
public boolean touchDown (InputEvent event, float x, float y, int pointer, int button) {
|
||||
event.cancel();
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user