Search found 3 matches

by Calimon
Sun Aug 31, 2008 11:25 am
Forum: Ren'Py Questions and Announcements
Topic: having trouble with images!
Replies: 3
Views: 1040

Re: having trouble with images!

You forgot to put the file extensions on the end of the images you're defining..

like if the "liam" image is a .png image, it should be "liam.png"

so it'd be

image liam normal = "liam.png"


Hopefully this helps..
by Calimon
Wed Jul 09, 2008 1:43 pm
Forum: Creator Discussion
Topic: Characters, any ideas where to get 'em?
Replies: 11
Views: 2076

Re: Characters, any ideas where to get 'em?

There's also a free anime model called Kururu on http://www.poserclub.jp
though the website is in japanese and ye have to be a member there.. (free sign up though.)

I think it was sposed to be for Poser but it works in Daz Studio too. :3

^_^; hopefully this was helpful fer ya.
by Calimon
Fri Feb 01, 2008 5:56 pm
Forum: Ren'Py Questions and Announcements
Topic: Background music question
Replies: 2
Views: 1243

Re: Background music question

Code: Select all

$ renpy.music.stop
Ye can put this in the main script where the game first starts.
^_^

And if that doesn't work.

Code: Select all

$ renpy.music.stop(fadeout = 0.5)
This can work too. ^_^
(Though I'm sure that the first one should work anyway.
Or something. @_@)