AS3 Untyped Variable Efficiency
I'm (still) trying to solve an issue in my 2D Flash game where my framerate is dropping to unacceptable lows. I have a class with the following member variable and method: protected var value:*; public function getValue () :* { return this.value; } Right now, that method is being called seemingly a few hundred times per frame and ...