Hey everyone,
I'm new to Construct and Python so please be gentle.
I have a very simple question. How do I set the XY position of an object using a Python script? I can set the X and Y positions separately, but how do I set them using the XY property?
Setting the positions separately is easy:
object.X = 0
object.Y = 0
Setting them together doesn't seem to work with any of these approaches:
object.XY = {0,0}
object.XY = [0,0]
object.XY = (0,0)
What syntax should I use?
-Zumbooruk