generated from remarkablegames/renpy-template
-
-
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.
- Loading branch information
1 parent
87d1ca5
commit f23728c
Showing
23 changed files
with
10 additions
and
23 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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,4 +1 @@ | ||
# Declare characters used by this game. The color argument colorizes the | ||
# name of the character. | ||
|
||
define e = Character("Eileen") | ||
define player = Character("Player") |
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,25 +1,11 @@ | ||
# The game starts here. | ||
label start: | ||
|
||
label start: | ||
scene bg plain | ||
|
||
# Show a background. This uses a placeholder by default, but you can | ||
# add a file (named either "bg room.png" or "bg room.jpg") to the | ||
# images directory to show it. | ||
show placeholder boy | ||
|
||
scene bg club | ||
player "You've created a new Ren'Py game." | ||
|
||
# This shows a character sprite. A placeholder is used, but you can | ||
# replace it by adding a file named "eileen happy.png" to the images | ||
# directory. | ||
|
||
show eileen happy | ||
|
||
# These display lines of dialogue. | ||
|
||
e "You've created a new Ren'Py game." | ||
|
||
e "Once you add a story, pictures, and music, you can release it to the world!" | ||
|
||
# Jump to a label. | ||
player "Once you add a story, pictures, and music, you can release it to the world!" | ||
|
||
jump end |