Search found 7 matches

by faylar
Sat May 07, 2016 6:03 am
Forum: Ren'Py Questions and Announcements
Topic: Darkening sprites over time
Replies: 6
Views: 3625

Re: Darkening sprites over time

I'm sorry for bumping this post again, but this is a slight extension of the question I have. Is it possible to pass more variables into the ATL transform function? like transform alphatransform(duration): alpha .0 linear duration alpha 1.0 #this does not work of course return AlphaBlend(alphatransf...
by faylar
Tue Apr 26, 2016 4:45 am
Forum: Ren'Py Questions and Announcements
Topic: Transform() cannot update xpos/ypos?
Replies: 6
Views: 971

Re: Transform() cannot update xpos/ypos?

Sorry, I have been busy with work recently and I didn't have time to test but: You probably want to use Render.place() , instead of blitting things directly. Thanks! I was actually suspecting that this function might be what I need (or rather I was hoping it is because I couldn't find any other func...
by faylar
Sat Apr 23, 2016 8:09 am
Forum: Ren'Py Questions and Announcements
Topic: Transform() cannot update xpos/ypos?
Replies: 6
Views: 971

Re: Transform() cannot update xpos/ypos?

Hmm I have a couple more questions. The problem now is that render.blit() uses pixels and I have been coding most of my stuff relatively (from 0.0 to 1.0) . 1) Is there a way to use those normalized coordinates instead? 2) If not, then I can make use of screen resolution and calculate backwards. For...
by faylar
Sat Apr 23, 2016 7:44 am
Forum: Ren'Py Questions and Announcements
Topic: Transform() cannot update xpos/ypos?
Replies: 6
Views: 971

Re: Transform() cannot update xpos/ypos?

Omg thanks a lot ><

I should've paid more attention to the documentation...
by faylar
Sat Apr 23, 2016 5:21 am
Forum: Ren'Py Questions and Announcements
Topic: Transform() cannot update xpos/ypos?
Replies: 6
Views: 971

Transform() cannot update xpos/ypos?

Hi everyone, I'm trying to get this code to work atm, but while I can use Transform() to adjust alpha, I can't seem to change xpos and ypos. I was thinking that it could be because of the previous transform (numpad2 in the code below), but I'm not exactly sure if that is really the case. Here is my ...
by faylar
Wed Apr 20, 2016 12:44 am
Forum: Ren'Py Questions and Announcements
Topic: Darkening sprites over time
Replies: 6
Views: 3625

Re: Darkening sprites over time

Thanks for the reply everyone. If you intend to use it to show who's talking I'm intending to have full control of this effect and have shuffling of characters going back and forth between the foreground and background so this would not suffice (I have already checked all those threads, but thanks f...
by faylar
Tue Apr 19, 2016 10:22 pm
Forum: Ren'Py Questions and Announcements
Topic: Darkening sprites over time
Replies: 6
Views: 3625

Darkening sprites over time

Hi everyone! I just started experiementing with renpy and everything has been great so far, but I'm slowly trying to do more advanced stuff. So the effect I'm trying to do now is to "darken sprites". Yes, I know there are already a few threads in the forums with this, and I already know th...