home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Diversos / rocketcar2.swf / scripts / DefineSprite_1012 / frame_1 / DoAction.as
Encoding:
Text File  |  2008-09-24  |  228 b   |  12 lines

  1. this.onEnterFrame = function()
  2. {
  3.    if(_root.boss.dir == "right")
  4.    {
  5.       _rotation = _rotation + _root.boss.speed;
  6.    }
  7.    if(_root.boss.dir == "left")
  8.    {
  9.       _rotation = _rotation - _root.boss.speed;
  10.    }
  11. };
  12.