I want to use ATL to move displayable in the screen, but after use "Transform" statement my displayable move with lag(it seem like hiccups) while the transform is continue until the end of transform.
this my Transform code :
Code: Select all
transform unit_move(ox,oy,nx,ny,tm):
xpos ox ypos oy
linear tm xpos nx ypos ny
Code: Select all
# in game
ox,oy = 100,50
nx,ny = 300,100
tm = 3
ui.add('unit1',at=[unit_move(ox,oy,nx,ny,tm)])
renpy.pause(tm)
but...no anything change, I don't know what to do next to solve this problem.
Please tell me if it has another way to move a displayable(maybe use ATL or not).
p.s. my laptop that i coding this project is from 8 year ago.(and use software render)

