Exemplo n.º 1
0
	def draw(self, ds, x, y):
		sm = StickMan(width=48, height=48)
		sm.center = (x,y)
		ds.add_widget(sm)
Exemplo n.º 2
0
 def draw(self,draw_space,x,y):
     stickman = StickMan(width=48,height=48)
     stickman.center_x = x
     stickman.center_y = y
     draw_space.add_widget(stickman)