-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPROJECT_LANG_2.rpy
More file actions
27 lines (22 loc) · 1.11 KB
/
PROJECT_LANG_2.rpy
File metadata and controls
27 lines (22 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Start of script
define narrator = Character(_('Ren') color="#ffa500")
init python:
# A list of section and tutorial objects.
tutorials = [ ]
class ProjectLanguageFileTwo(object):
narrator "Project language file 2"
narrator "For: seanpm2001/Anime_Studio/Manga-File-Format"
narrator "About:"
narrator "I decided to make Ren'Py the second project language file for this project (Anime_Studio/Manga-File-Format/) as Ren'Py is to be used for visual novel functions in document development here. It is getting its own project language file, starting here."
# Output
"""
Project language file 2
For: seanpm2001/Anime_Studio/Manga-File-Format
About:
I decided to make Ren'Py the second project language file for this project (Anime_Studio/Manga-File-Format/) as Ren'Py is to be used for visual novel functions in document development here. It is getting its own project language file, starting here.
"""
# File info
# File type: Ren'Py source file (*.rpy)
# File version: 1 (2023, Monday, March 13th at 6:11 pm PST)
# Line count (including blank lines and compiler line): 28
# End of script