Browsing Chinese (Simplified) translation

Don't show this notice anymore
Before translating, be sure to go through Launchpad Translators instructions and Chinese (Simplified) guidelines.
1827 of 108 results
18.
This is perhaps one of the simplest Ren'Py games. It doesn't include any pictures or anything like that, but it does show a conversation between the two characters.
这可能是最简单的Ren'Py游戏了。它不包含任何图像或类似的资源,仅仅展示了两个人物之间的对话。
Translated and reviewed by Hanming Wu
Located in ../../source/quickstart.rst:83
19.
To try this out, go into the launcher, select the "My Question Project", and choose "script.rpy" from under Edit File. Ren'Py may ask you to select a text editor, after which it will download the editor you select. When it finishes, script.rpy will open in an editor. Erase everything in script.rpy, as we're starting from scratch, so you don't need what's there. Copy the example above into script.rpy, and save it.
如要尝试,请前往启动器,选择“My Question Project”,然后在编辑文件一栏中选择“script.rpy”。Ren'py会让您选择一个文本编辑器,您选中的编辑器将会被下载。当下载完成后,Ren'py就会使用下载好的编辑器打开文件。清除script.rpy中的所有内容,因为我们需要从头开始,所以您不需要里面的内容。拷贝下列范例的内容至script.rpy中,并保存它。
Translated and reviewed by Huang Junjie
Located in ../../source/quickstart.rst:87
20.
You're now ready to run this example. Go back to the launcher, and choose "Launch Project". Ren'Py will start up. Notice how, without any extra work, Ren'Py has given you menus that let you load and save the game, and change various preferences. When ready, click "Launch Project", and play through this example game.
现在您可以运行这个例子了。回到启动器并选择“Launch Project”来启动Ren'Py。您将看到Ren'Py提供了一些菜单供您载入或保存游戏、修改游戏设置,这些功能都不需要您做额外的工作,Ren'Py已经替您实现了。准备好后请点击“Launch Project”,从头到尾玩一下这个示例游戏。
Translated and reviewed by Hanming Wu
Located in ../../source/quickstart.rst:95
21.
This example shows some of the commonly-used Ren'Py statements.
这个例子展示了一些常用的Ren'Py语句。
Translated and reviewed by Hanming Wu
Located in ../../source/quickstart.rst:101
22.
The first line is a label statement. The label statement is used to give a name to a place in the program. In this case, we create a label named ``start``. The start label is special, as it's where Ren'Py scripts begin running when the user clicks "Start Game" on the main menu.
第一行是label语句,label语句的作用是在代码中标记一个位置。在这个例子中我们创建了一个名为 ``start``的标签(label)。 ``start``这个标签的特别之处在于当玩家在主菜单点击“Start Game”时,Ren'Py将会从这个标签的位置开始运行脚本。
Translated and reviewed by Hanming Wu
Located in ../../source/quickstart.rst:103
23.
The other lines are say statements. There are two forms of the say statement. The first is a string (beginning with a double-quote, containing characters, and ending with a double-quote) on a line by itself, which is used for narration, and the thoughts of the main character. The second form consists of two strings. It's used for dialogue, with the first string being a character name and the second being what that character is saying.
其他几行都是say语句。Ren'Py中有两种say语句。第一种是以一个单独的字符串(以双引号开始,中间包含字符,并以双引号结尾)为一行,一般用于记叙,或描述主人公的想法。另外一种形式包含两个字符串,一般用于对话,第一个字符串是该角色的名字,第二个字符串是相应的台词。
Translated and reviewed by Hanming Wu
Located in ../../source/quickstart.rst:109
24.
Note that all the say statements are indented by four spaces. This is because they are a block underneath the label statement. In Ren'Py, blocks must be indented relative to the prior statement, and all of the statements in a block must be indented by the same amount.
请注意所有的say语句之前都有四个空格的缩进。因为他们所处的代码块是从属于某一个label语句的。在Ren'Py中,代码块必须在其上一级语句的基础上进行缩进,该代码块中所有的语句的缩进量应该是相同的。
Translated and reviewed by Hanming Wu
Located in ../../source/quickstart.rst:117
25.
When strings contain double-quote characters, those characters need to be preceded by a backslash. This is done in the last line of our example.
当字符串中包含双引号时,需要在双引号的前面加上反斜线,正如这个示例中最后一行那样。
Translated and reviewed by Hanming Wu
Located in ../../source/quickstart.rst:122
26.
While this simple game isn't much to look at, it's an example of how easy it is to get something working in Ren'Py. We'll add the pictures in a little bit, but first, let's see how to declare characters.
这个简单的游戏没什么看头,他只不过是一个例子,展示了在Ren'Py中让这些东西运转起来是多么容易。我们将会向其中加入一些图片,但先让我们来看看怎样声明一个角色。
Translated and reviewed by Hanming Wu
Located in ../../source/quickstart.rst:126
27.
Init
初始化(Init)
Translated and reviewed by Hanming Wu
Located in ../../source/quickstart.rst:131
1827 of 108 results

This translation is managed by Launchpad Simplified Chinese Translators, assigned by Launchpad Translators.

You are not logged in. Please log in to work on translations.

Contributors to this translation: Hanming Wu, Huang Junjie.