I'm trying to dip my toes into python and I'm already bumping into problems.
As a simple test I would like to create 100 instances of Sprite with the loop index as it's X value.
for n in range(0, 100, 1):
System.Create(Sprite,"top",n,30)
[/code:10j5k26t]
It doesn't create anything. When I run the debugger it even says there's only the one initial instance in existance.
But when I use the loop index for something else, like: ListBox.Add(n) that works fine.
Am I missing something?