You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
420 B
24 lines
420 B
if (global.transitiontype == 0)
|
|
{
|
|
if (fade < 1)
|
|
fade += 0.1
|
|
else
|
|
event_user(0)
|
|
}
|
|
if (global.transitiontype == 1)
|
|
{
|
|
if (fade < 1)
|
|
fade += 0.1
|
|
else if (moveplayer < 30)
|
|
{
|
|
with (oCharacter)
|
|
{
|
|
x -= ((x - global.transitionx) / 10)
|
|
y -= ((y - global.transitiony) / 10)
|
|
}
|
|
moveplayer += 1
|
|
}
|
|
else
|
|
event_user(0)
|
|
}
|