ID:118490
 
Not Feasible
Applies to:
Status: Not Feasible

Implementing this feature is not possible now or in the foreseeable future
It would be nice if when a variable changed value you could run background operations following that change.

balloon
var
x, y, z
image/sprite
New()
..()
[init sprite]//assume sprite has a value.


balloon/onChange(arg, value)
if(arg == "x")
sprite.loc = locate(value, y, z)
x = value
else if(arg == "y")
sprite.loc = locate(x, value, z)
y = value
else if(arg == "z")
sprite.loc = locate(x, y, value)
z = value