Page 1 of 1

Folder Structure for Ren'Py?

Posted: Fri Dec 13, 2019 12:47 am
by that_wannabe_cat
Is there any set guidelines for structuring files and folders in Ren'py? For example in java you place any source code under src/main/java and any test code under src/main/test.

I made my own file structure for the game I'm working on, but I was wondering if there is anything more official or recommended for future projects.

Re: Folder Structure for Ren'Py?

Posted: Sat Dec 14, 2019 1:41 pm
by Per K Grok
that_wannabe_cat wrote: Fri Dec 13, 2019 12:47 am Is there any set guidelines for structuring files and folders in Ren'py? For example in java you place any source code under src/main/java and any test code under src/main/test.

I made my own file structure for the game I'm working on, but I was wondering if there is anything more official or recommended for future projects.
Not as far as I know. Any way that works for you will be good. :)

Re: Folder Structure for Ren'Py?

Posted: Sat Dec 14, 2019 3:07 pm
by Kia
renpy scans for every .rpy file in the game directory and it's sub directories.
as long as you keep in mind that renpy reads the files in order it finds (nearly alphabetical), you'll be fine.

Re: Folder Structure for Ren'Py?

Posted: Sun Dec 15, 2019 7:50 pm
by that_wannabe_cat
Per K Grok wrote: Sat Dec 14, 2019 1:41 pm
Not as far as I know. Any way that works for you will be good. :)
Ah. Was hoping there was some documentation for a recommended structure. Oh well. Thank you for answering.