Code: Select all
def create_animations(name = "laria"):
img = "rpg/npc/{}/sheet.png".format(name)
d = Crop((32, 0, 32, 32), img)
renpy.image(name, d)Code: Select all
image You down walk:
Crop((0, 0, 32, 32), img)
pause .1
Crop((32, 0, 32, 32), img)
pause .1
Crop((64, 0, 32, 32), img)
pause .1
Crop((32, 0, 32, 32), img)
pause .1
repeatI assume it must be something like Image(img1, 0.1, img2, 0.1, img3, 0.1, img4, 0.1, repeat=True) but I can't find the correct format. anybody knows the proper way to do it?