Search found 7 matches

by Twain
Wed Jun 06, 2018 9:49 am
Forum: Ren'Py Questions and Announcements
Topic: if-condition doesn't recognize certain float additions?
Replies: 6
Views: 706

Re: if-condition doesn't recognize certain float additions?

Thanks for your explanation and link xavimat. I see the problem now. I'll make sure to be very careful around floats if I must use them.
by Twain
Wed Jun 06, 2018 9:18 am
Forum: Ren'Py Questions and Announcements
Topic: if-condition doesn't recognize certain float additions?
Replies: 6
Views: 706

if-condition doesn't recognize certain float additions?

I was doing some float additions when I noticed some if-conditions weren't triggered and I can't figure out why. What am I missing here? I used renpy 7.0 Script below. label start: "starting from 0.5" $ fnumber = 0.5 $ fnumber += 0.1 if fnumber == 0.6: "0.6" $ fnumber += 0.1 if f...
by Twain
Tue Jan 16, 2018 6:38 pm
Forum: Ren'Py Questions and Announcements
Topic: How to reduce loading times?
Replies: 8
Views: 2752

Re: How to reduce loading times?

Thanks for taking the time to give it a look. I'm sorry to say I was dumb enough to forget the files I sent you weren't made in the latest version of Renpy so I think the first time you tried to load it, it was unnecessarily slow and the forced recompile simply set things straight again. I didn't ex...
by Twain
Mon Jan 15, 2018 6:38 am
Forum: Ren'Py Questions and Announcements
Topic: How to reduce loading times?
Replies: 8
Views: 2752

Re: How to reduce loading times?

That's fine and certainly more than I could ever hope for when starting this thread. I sent you a pm with a link to the full game. Thanks again.
by Twain
Sun Jan 14, 2018 7:41 pm
Forum: Ren'Py Questions and Announcements
Topic: How to reduce loading times?
Replies: 8
Views: 2752

Re: How to reduce loading times?

I'm afraid I'm not really sure what you mean by "hits the disk as part of the image load?", but I don't think I'm doing something especially strange. I wouldn't mind sending you a private message with a link to the scripts etc on a "for your eyes only"- basis. Just some general &...
by Twain
Sun Jan 14, 2018 5:24 pm
Forum: Ren'Py Questions and Announcements
Topic: How to reduce loading times?
Replies: 8
Views: 2752

Re: How to reduce loading times?

Thanks for replying. It currently has about 150 scripts . Most of them far below 100 KB in file size. I use those to store composites of images etc . Eight of them are about 1 MB in size (but their rpyc versions sometimes 2 MB) Would chopping those bigger scripts into smaller ones have any noticeabl...
by Twain
Sun Jan 14, 2018 10:49 am
Forum: Ren'Py Questions and Announcements
Topic: How to reduce loading times?
Replies: 8
Views: 2752

How to reduce loading times?

I've been working on a renpy game but reloading it for bug/play testing is taking longer and longer as the game increases in size to the point where it becomes a time drain. I've got a lot of scripts, images, composites etc. Are there tricks or certain ways of doing things which can help reduce (re)...