Search found 4 matches

by oncardam
Mon Oct 14, 2013 4:43 am
Forum: Development of Ren'Py
Topic: builds_folder suggestion/enhancement/contribution
Replies: 2
Views: 882

Re: builds_folder suggestion/enhancement/contribution

Oh cool, thankyou. That will work just as well for my purposes. Does it work with relative and absolute paths?
by oncardam
Sat Oct 05, 2013 10:24 pm
Forum: Development of Ren'Py
Topic: builds_folder suggestion/enhancement/contribution
Replies: 2
Views: 882

builds_folder suggestion/enhancement/contribution

I keep my project source on a cloud storage folder (google drive) so other contributors can get to it, but I don't really want to keep uploading each build to cloud storage. It would be good to have a builds_folder where dists get built to either on a per project or a global basis. As a quick and ea...
by oncardam
Thu Jan 10, 2013 12:54 am
Forum: Ren'Py Questions and Announcements
Topic: Can I skew an image/displayable in Renpy
Replies: 1
Views: 705

Can I skew an image/displayable in Renpy

Can I skew an image in Renpy? The effect I am looking for is similar to the 3D Text rotation effect in PowerPoint, except I am going to do it with card faces.

At this point it is looking like I might have to have pre-prepared ones and load them as a sequence of images and I would rather not do that.
by oncardam
Fri Nov 09, 2012 12:18 am
Forum: Ren'Py Questions and Announcements
Topic: renpy.call error
Replies: 4
Views: 1740

Re: renpy.call error

1. renpy.call seems to be broken if you try to call a label with no parameters. defining your label as: label SetTime(dummy=1): works around the problem. I believe this test: if (args is not None) or (kwargs is not None): raise Exception("Arguments supplied, but label does not take parameters.&...