kyouryuukunn / renpy-ActionEditor

This is 3D camera functions and GUI Action Editor for Ren'py
58 stars 10 forks source link

Loop doesn't work seamlessly #4

Closed songproducer closed 4 years ago

songproducer commented 4 years ago

$ camera_moves( ( (1500, 0, 0, 0, 5, 'linear'), (-1500, 0, 0, 0, 10, 'linear') ), loop=True)

It jumps a few pixels forward when ending the loop

kyouryuukunn commented 4 years ago

A Seemlessly Loop needs that the camera position of start and end is same.

IF the camera start position is (0,0,0,0) $ camera_moves( ( (1500, 0, 0, 0, 5, 'linear'), (-1500, 0, 0, 0, 15, 'linear'), (0, 0, 0, 0, 20, 'linear')), loop=True)

songproducer commented 4 years ago

Thanks!