-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- All screens are now Objects (fixes screen not being deleted during …
…a reset) - Integrated tutorial screen - More generic way to go to next screen
- Loading branch information
Showing
5 changed files
with
82 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,67 +1,69 @@ | ||
[Tutorial] | ||
ChildList = TutorialMatch # TutorialSwap # TutorialTitle # MatchText # SwapText # ControlsText | ||
|
||
[TutorialMatch] | ||
ParentCamera = MainCamera | ||
UseParentSpace = position | ||
Position = (-.2, -.15) | ||
Scale = 5 | ||
Graphic = @ | ||
Texture = tutorial_match.png | ||
TextureOrigin = (0, 0) | ||
TextureSize = (100, 100) | ||
|
||
[TutorialSwap] | ||
ParentCamera = MainCamera | ||
UseParentSpace = position | ||
Position = (.2, -.15) | ||
Scale = 5 | ||
Graphic = @ | ||
Texture = tutorial_swap.png | ||
TextureOrigin = (0, 0) | ||
TextureSize = (100, 100) | ||
|
||
[TutorialTitle] | ||
ParentCamera = MainCamera | ||
UseParentSpace = position | ||
Pivot = top left | ||
Position = (-.45, -.45) | ||
Graphic = @ | ||
Text = @ | ||
String = TUTORIAL | ||
Scale = 10 | ||
|
||
[MatchText] | ||
ParentCamera = MainCamera | ||
UseParentSpace = position | ||
Pivot = top center | ||
Position = (-.2, .1) | ||
Graphic = @ | ||
Text = @ | ||
String = "FLIP TWO CARDS AND FIND A MATCH. | ||
EARN POINTS BY FINDING MORE PAIRS." | ||
Scale = 4 | ||
|
||
[SwapText] | ||
ParentCamera = MainCamera | ||
UseParentSpace = position | ||
Pivot = top center | ||
Position = (.2, .1) | ||
Graphic = @ | ||
Text = @ | ||
String = "SWAP CARDS POSITIONS ON THE BOARD" | ||
Scale = 4 | ||
|
||
[ControlsText] | ||
ParentCamera = MainCamera | ||
UseParentSpace = position | ||
Pivot = bottom center | ||
Position = (0, .4) | ||
Graphic = @ | ||
Text = @ | ||
String = "CONTROLS: | ||
LEFT HAND: LJOYSTICK, DPAD, WASD | ||
RIGHT HAND: RJOYSTICK, ABXY, ARROWS | ||
PICKUP CARDS: BUMPERS, SPACE | ||
SHUFFLE CARDS: TRIGGERS, SHIFT" | ||
Scale = 4 | ||
[Tutorial@Object] | ||
ChildList = TutorialMatch # TutorialSwap # TutorialTitle # MatchText # SwapText # ControlsText | ||
NextScreen = Scene | ||
TrackList = PressStartTrack | ||
|
||
[TutorialMatch] | ||
ParentCamera = MainCamera | ||
UseParentSpace = position | ||
Position = (-.2, -.15) | ||
Scale = 5 | ||
Graphic = @ | ||
Texture = tutorial_match.png | ||
TextureOrigin = (0, 0) | ||
TextureSize = (100, 100) | ||
|
||
[TutorialSwap] | ||
ParentCamera = MainCamera | ||
UseParentSpace = position | ||
Position = (.2, -.15) | ||
Scale = 5 | ||
Graphic = @ | ||
Texture = tutorial_swap.png | ||
TextureOrigin = (0, 0) | ||
TextureSize = (100, 100) | ||
|
||
[TutorialTitle] | ||
ParentCamera = MainCamera | ||
UseParentSpace = position | ||
Pivot = top left | ||
Position = (-.45, -.45) | ||
Graphic = @ | ||
Text = @ | ||
String = TUTORIAL | ||
Scale = 10 | ||
|
||
[MatchText] | ||
ParentCamera = MainCamera | ||
UseParentSpace = position | ||
Pivot = top center | ||
Position = (-.2, .1) | ||
Graphic = @ | ||
Text = @ | ||
String = "FLIP TWO CARDS AND FIND A MATCH. | ||
EARN POINTS BY FINDING MORE PAIRS." | ||
Scale = 4 | ||
|
||
[SwapText] | ||
ParentCamera = MainCamera | ||
UseParentSpace = position | ||
Pivot = top center | ||
Position = (.2, .1) | ||
Graphic = @ | ||
Text = @ | ||
String = "SWAP CARDS POSITIONS ON THE BOARD" | ||
Scale = 4 | ||
|
||
[ControlsText] | ||
ParentCamera = MainCamera | ||
UseParentSpace = position | ||
Pivot = bottom center | ||
Position = (0, .4) | ||
Graphic = @ | ||
Text = @ | ||
String = "CONTROLS: | ||
LEFT HAND: LJOYSTICK, DPAD, WASD | ||
RIGHT HAND: RJOYSTICK, ABXY, ARROWS | ||
PICKUP CARDS: BUMPERS, SPACE | ||
SHUFFLE CARDS: TRIGGERS, SHIFT" | ||
Scale = 4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters