home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
404 Jogos
/
CLJG.iso
/
Acao
/
Titans
/
beastboy.swf
/
scripts
/
DefineSprite_354
/
frame_1
/
DoAction.as
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2006-01-05
|
337 b
|
24 lines
vy = -100;
grav = 100;
xs = 2;
onenterframe = function()
{
if(!land)
{
_rotation = _rotation + 30;
}
vy += grav / 10;
y = _Y + vy / 10;
_Y = y;
_X = _X + xs;
if(_Y > 0)
{
_Y = 0;
land = 1;
_rotation = 0;
vy = -0.4 * vy;
xs = 0.9 * xs;
}
};
stop();