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.
6 lines
310 B
6 lines
310 B
/// platformCharacterIs()
|
|
if (argument0 == ON_GROUND && (state == RUNNING || state == STANDING || state == DUCKING || state == BALL)) return 1;
|
|
if (argument0 == IN_AIR && (state == JUMPING || state == FALLING || state == AIRBALL)) return 1;
|
|
if (argument0 == ON_LADDER && state == CLIMBING) return 1;
|
|
return 0;
|