소스 검색

Added version placeholder for building JAR.

NathanSweet 9 년 전
부모
커밋
97756d6921
1개의 변경된 파일9개의 추가작업 그리고 0개의 파일을 삭제
  1. 9 0
      spine-libgdx/spine-skeletonviewer/src/com/esotericsoftware/spine/SkeletonViewer.java

+ 9 - 0
spine-libgdx/spine-skeletonviewer/src/com/esotericsoftware/spine/SkeletonViewer.java

@@ -397,6 +397,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.
+			}
+
 			// Events.
 
 			window.addListener(new InputListener() {