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.
AM2R-TimeTrials/scripts/make_escape_sequence_fx.gml

18 lines
396 B

/// make_escape_sequence_fx(phase)
var fx;
if (global.event[203] > 0 && global.event[203] < 9) {
fx = instance_create(0, 0, oA4EscapeSeqFX);
if (argument0 == 0) {
fx.shaking = 0;
fx.explosions = 0;
}
if (argument0 == 1) {
fx.shaking = 1;
fx.explosions = 0;
}
if (argument0 == 2) {
fx.shaking = 1;
fx.explosions = 1;
}
}