Search found 6 matches

by Psieye
Tue May 30, 2017 4:09 pm
Forum: Development of Ren'Py
Topic: RAPT - Ren'Py Android Packaging Tool
Replies: 270
Views: 98217

Re: RAPT - Ren'Py Android Packaging Tool

trying to make my game to an android game but when i try to build i get this error BUILD FAILED /Applications/renpy-6.17.0-sdk/rapt/android-sdk-r24.4.1/tools/ant/build.xml:928: The following error occurred while executing this line: /Applications/renpy-6.17.0-sdk/rapt/android-sdk-r24.4.1/tools/ant/...
by Psieye
Sun Sep 04, 2016 12:44 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] How to disable user input during a pause?
Replies: 2
Views: 1585

Re: How to disable user input during a pause?

Ah thank you, that was the specific term to search for. Just to wrap this thread up, here's how I made hard pausing a user-toggleable preference: Define variable: init python: hardPause = True Use hard pause in script: $ renpy.pause(1.5, hard=hardPause) Make option box in Preferences screen (screens...
by Psieye
Sun Sep 04, 2016 7:54 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] How to disable user input during a pause?
Replies: 2
Views: 1585

[Solved] How to disable user input during a pause?

For example, suppose the following source code: show myCharacter: xalign 0.9 yalign 0.5 linear 1.0 xalign 0.5 pause 1 "Begin narration" If the user clicks during that pause, the default Ren'Py behaviour is to cancel the pause (sometimes pre-maturely stopping the animation) and immediately ...
by Psieye
Tue Jan 13, 2015 2:42 pm
Forum: Ren'Py Cookbook
Topic: Configuring Notepad++ for Ren'Py
Replies: 14
Views: 37698

Re: Configuring Notepad++ for Ren'Py

A new version of functionList.xml has been uploaded to my previous post. It can now cope with class names like "fooBar(baz)" i.e. it works with Python's class inheritance.
by Psieye
Thu Jan 01, 2015 4:36 pm
Forum: Ren'Py Cookbook
Topic: Configuring Notepad++ for Ren'Py
Replies: 14
Views: 37698

Re: Configuring Notepad++ for Ren'Py

Once you get comfy with Notepad++ I recommend installing and learning how to use the Fingertext plug-in, which lets you trigger and paste snippets of code on the fly. (It was sooo helpful when coding sprite expressions, which in my script, is basically the same formula but with three or four ever c...
by Psieye
Thu Jan 01, 2015 3:41 pm
Forum: Ren'Py Cookbook
Topic: Configuring Notepad++ for Ren'Py
Replies: 14
Views: 37698

Re: Configuring Notepad++ for Ren'Py

At the time of writing, I am using Notepad++ v6.6.9 Some of the information in the above links was a little outdated so I wrote an improved version of the settings for Ren'py in Notepad++. These are in the two attachments to this post: userDefineLang.xml and functionList.xml. Both should be placed ...