Search found 6 matches

by Cboom
Thu Jan 13, 2022 5:07 pm
Forum: Ren'Py Questions and Announcements
Topic: animation doesn't repeat
Replies: 2
Views: 229

Re: animation doesn't repeat

It actually does repeat. But you don't see it. What happens: 1) Displayable is created with default values ypos = 0, yoffset = 0 2) transfrorm starts and sets ypos to 0, notice how it does not change yoffset ypos = 0 yoffset = 0 3) yoffset changes linearly to 1200 ypos = 0 yoffset = 1200 4) Animati...
by Cboom
Thu Jan 13, 2022 4:48 pm
Forum: Ren'Py Questions and Announcements
Topic: animation doesn't repeat
Replies: 2
Views: 229

animation doesn't repeat

I have an animation:

Code: Select all

image snowy:
    animation
    "snow"
    ypos 0
    linear 6.0 yoffset 1200
    repeat
but it doesn't repeat, i guess is for the transforma, because in animations without the transforms it works, so, how can i make it repeat?
by Cboom
Sat Jan 01, 2022 8:42 pm
Forum: Ren'Py Questions and Announcements
Topic: Error I can't solve
Replies: 6
Views: 457

Re: Error I can't solve

I keep getting this error whenever I reload the game and when I load save files. I can't see what the problem is though. Any ideas? This is what happens when I load a save file. I'm sorry, but an uncaught exception occurred. While running game code: File "game/days/day3.rpy", line 92, in script "Hu...
by Cboom
Mon Aug 16, 2021 2:15 am
Forum: Ren'Py Questions and Announcements
Topic: Drag multiple draggables
Replies: 3
Views: 950

Re: Drag multiple draggables

There is a drag_joined property for this drag_joined This is called with the current Drag as an argument. It's expected to return a list of [ (drag, x, y) ] tuples, giving the draggables to drag as a unit. x and y are the offsets of the drags relative to each other, they are not relative to the cor...
by Cboom
Sun Aug 15, 2021 7:14 pm
Forum: Ren'Py Questions and Announcements
Topic: Drag multiple draggables
Replies: 3
Views: 950

Re: Drag multiple draggables

There is a drag_joined property for this drag_joined This is called with the current Drag as an argument. It's expected to return a list of [ (drag, x, y) ] tuples, giving the draggables to drag as a unit. x and y are the offsets of the drags relative to each other, they are not relative to the cor...
by Cboom
Thu Aug 12, 2021 9:36 pm
Forum: Ren'Py Questions and Announcements
Topic: Drag multiple draggables
Replies: 3
Views: 950

Drag multiple draggables

i want to know if i can make that when you drag a draggable, also it drag another draggable at the time