I've found the problem!
it was in my onEnterFrameHandler!
BEFORE (bad!):
private function onEnterFrameHandler(e:Event):void {
//object transformations
transformObjects();
updatePivotPoint();
//view
view.render();
}
AFTER (good!):
private function onEnterFrameHandler(e:Event):void {
//view
view.render();
//object transformations
transformObjects();
updatePivotPoint();
}
Thanks for checking, otherways I've wouldn't have looked at it!
greets,
Vatro
On 12 Apr., 22:18, John Brookes <[email protected]> wrote:
> I dont get thathttp://www.shrewballooba.co.uk/test/
>
> whats your setup? camera/lens etc