• R/O
  • SSH

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revisionf67716a9e6c26c3ac4deba3eb270f933012c78c3 (tree)
Time2022-01-10 04:46:47
Authorsebastian_bugiu
Commitersebastian_bugiu

Log Message

Changed font colour to green.

Change Summary

Incremental Difference

diff -r a9ba9e76724a -r f67716a9e6c2 android/assets/uiskin.json
--- a/android/assets/uiskin.json Sun Jan 09 19:40:15 2022 +0200
+++ b/android/assets/uiskin.json Sun Jan 09 21:46:47 2022 +0200
@@ -15,7 +15,7 @@
1515 toggle: { parent: default, checked: default-round-down }
1616 },
1717 TextButtonStyle: {
18- default: { parent: default, font: default-font, fontColor: white, disabledFontColor: gray },
18+ default: { parent: default, font: default-font, fontColor: green, disabledFontColor: gray },
1919 toggle: { parent: default, checked: default-round-down, downFontColor: red }
2020 },
2121 ScrollPaneStyle: {
@@ -23,7 +23,7 @@
2323 },
2424 SelectBoxStyle: {
2525 default: {
26- font: default-font, fontColor: white, background: default-select,
26+ font: default-font, fontColor: green, background: default-select,
2727 scrollStyle: default,
2828 listStyle: { font: default-font, selection: default-select-selection }
2929 }
@@ -33,7 +33,7 @@
3333 default-horizontal: { handle: default-splitpane }
3434 },
3535 WindowStyle: {
36- default: { titleFont: default-font, background: default-window, titleFontColor: white },
36+ default: { titleFont: default-font, background: default-window, titleFontColor: green },
3737 dialog: { parent: default, stageBackground: dialogDim }
3838 },
3939 ProgressBarStyle: {
@@ -45,13 +45,13 @@
4545 default-vertical: { parent: default-vertical }
4646 },
4747 LabelStyle: {
48- default: { font: default-font, fontColor: white }
48+ default: { font: default-font, fontColor: green }
4949 },
5050 TextFieldStyle: {
51- default: { selection: selection, background: textfield, font: default-font, fontColor: white, cursor: cursor }
51+ default: { selection: selection, background: textfield, font: default-font, fontColor: green, cursor: cursor }
5252 },
5353 CheckBoxStyle: {
54- default: { checkboxOn: check-on, checkboxOff: check-off, font: default-font, fontColor: white }
54+ default: { checkboxOn: check-on, checkboxOff: check-off, font: default-font, fontColor: green }
5555 },
5656 ListStyle: {
5757 default: { fontColorUnselected: white, selection: selection, fontColorSelected: white, font: default-font }
@@ -64,7 +64,7 @@
6464 },
6565 TextTooltipStyle: {
6666 default: {
67- label: { font: default-font, fontColor: white },
67+ label: { font: default-font, fontColor: green },
6868 background: default-pane, wrapWidth: 150
6969 }
7070 },
diff -r a9ba9e76724a -r f67716a9e6c2 core/src/com/headwayent/spacerocket/MainMenuActivity.java
--- a/core/src/com/headwayent/spacerocket/MainMenuActivity.java Sun Jan 09 19:40:15 2022 +0200
+++ b/core/src/com/headwayent/spacerocket/MainMenuActivity.java Sun Jan 09 21:46:47 2022 +0200
@@ -2,6 +2,7 @@
22
33 import com.badlogic.gdx.Gdx;
44 import com.badlogic.gdx.ScreenAdapter;
5+import com.badlogic.gdx.graphics.Color;
56 import com.badlogic.gdx.graphics.GL20;
67 import com.badlogic.gdx.graphics.OrthographicCamera;
78 import com.badlogic.gdx.scenes.scene2d.Actor;
@@ -38,8 +39,10 @@
3839 Skin skin = new Skin(Gdx.files.internal("uiskin.json"));
3940
4041 //create buttons
41- Label title = new Label("HotShot", skin);
42+ Label title = new Label("Hotshot", skin);
4243 title.setAlignment(Align.center);
44+// Label.LabelStyle titleStyle = new Label.LabelStyle(title.getStyle().font, Color.GREEN);
45+// title.setStyle(titleStyle);
4346 title.setFontScale(2.0f);
4447 TextButton resumeGame = Utility.createTextButton("Resume Game", skin);
4548 TextButton newGame = Utility.createTextButton("New Game", skin);
diff -r a9ba9e76724a -r f67716a9e6c2 core/src/com/headwayent/spacerocket/old/DifficultySelection.java
--- a/core/src/com/headwayent/spacerocket/old/DifficultySelection.java Sun Jan 09 19:40:15 2022 +0200
+++ b/core/src/com/headwayent/spacerocket/old/DifficultySelection.java Sun Jan 09 21:46:47 2022 +0200
@@ -90,7 +90,7 @@
9090 table.add(medium).fillX().uniformX();
9191 table.row().pad(10, 20, 0, 20);
9292 table.add(hard).fillX().uniformX();
93- table.row().pad(10, 20, 0, 20);
93+ table.row().pad(20, 20, 0, 20);
9494 table.add(backButton).fillX().uniformX();
9595
9696 final SpaceRocket game = SpaceRocket.getGame();
diff -r a9ba9e76724a -r f67716a9e6c2 ios/robovm.properties
--- a/ios/robovm.properties Sun Jan 09 19:40:15 2022 +0200
+++ b/ios/robovm.properties Sun Jan 09 21:46:47 2022 +0200
@@ -2,5 +2,5 @@
22 app.id=com.headwayent.spacerocket
33 app.mainclass=com.headwayent.spacerocket.IOSLauncher
44 app.executable=IOSLauncher
5-app.build=6
5+app.build=7
66 app.name=Hotshot 2D