sashadkiselev125
Aug 17, 2013 - 02:59
How do I simply show a built in image in scene without layers with simple coordinates
How do I simply show a built in image in scene without layers with simple coordinates
Just use the image() function.
Call it like this inside the draw function:
image("image_name", x, y, w, h)from scene import *
class MyScene (Scene):
def setup(self):
pass
def draw(self):
background(0, 0, 0)
image('Alien_Monster', 200, 200, 100, 100)
run(MyScene())Thank you Sebastian I wa putting image('name',x=200,y=200)