Code: Select all
init:
image girl = Placeholder("girl")
transform big:
zoom 1.5
# The game starts here.
label start:
show girl
"Normal size"
show girl at big
"Big size"
show girl at big:
"Bigger than intended."
return
I think when you're using an ATL block, the transform is also treated like ATL, resulting in some strange behavior.
I'm not sure if this is intended bahavior or not, but it's certainly non-intuitive. It's really frustrating. I would expect the transform to act the same whether I have an ATL block or not.
Another similar problem I've run into, not sure if they're connected:
Code: Select all
init:
image girl2:
Placeholder("girl")
zoom 0.5
# The game starts here.
label start:
show girl2
"Half size, as expected."
show girl2:
"Quarter size!?"
return
Is this a bug?