Flash / Flex / ActionScript/Animation/Rotation — различия между версиями

Материал из Web эксперт
Перейти к: навигация, поиск
м (1 версия)
 
м (1 версия)
 
(нет различий)

Текущая версия на 08:14, 26 мая 2010

Applying Animation Techniques to Other Properties

 
package {
    import flash.display.Sprite;
    import flash.events.Event;
    
    public class Main extends Sprite {
        private var _sprite:Sprite = new Sprite(  );
        private var _vr:Number = 4;
        
        public function Main(  ) {
            _sprite.graphics.beginFill(0xffffff, 100);
            _sprite.graphics.drawEllipse(-50, -20, 100, 40);
            _sprite.x = 10;
            _sprite.y = 10;
            addChild(_sprite);
            addEventListener(Event.ENTER_FRAME, onEnterFrame);
        }
        
        public function onEnterFrame(event:Event):void {
             _sprite.rotation += _vr;
        }
    }    
}