I have a set function
public function set energy(value:int):void
when I try to call this function from the same class using
energy(10); or this.energy(10)
I get an error:
Call to a possibly undefined method energy.
There are no variables declared as energy in the class. Any clues?
its a property setter, so you call it with:
this.energy = 10;