Search found 1 match

by Alefi
Mon Jun 08, 2020 3:44 am
Forum: Ren'Py Questions and Announcements
Topic: Displaying images from an array renpy.show
Replies: 1
Views: 208

Displaying images from an array renpy.show

Sorry in advance for my bad English $ h = [3,3,3,0,0,0,0,0] init python: #showing hearts from array def heart(h): x=0.15 y=6 for i in range(0,7): if h[i]==3: renpy.show("rh1()", at_list=[Transform(pos=(x, y))] ) # xalign x ypos y renpy.show(image_name, at_list=[Transform(pos=(x, y))]) elif...