YesNoOk
avatar

type (CNS) (Read 7290 times)

Started by JustNoPoint, September 30, 2015, 04:05:17 pm
Share this topic:
type (CNS)
#1  September 30, 2015, 04:05:17 pm
  • ******
    • www.justnopoint.com/
Part of the Statedef
This is the state type of P1 in that state. It defines if he is standing, crouching, in the air, or lying down. The corresponding values are "S", "C" , "A" and "L" respectively (without the quotation marks). To leave the type unchanged from the previous state, use a value of "U". If this line is omitted, it assumes the type is "S". You will most commonly use "S", "C" and "A". For example, a crouching state type would require the line:

Code:
type = C
The type is used to determine several factors, most importantly, how P1 will react to being hit. For example, being in a "stand"-type state, P1 will react as if he is standing on the ground. If the type was "air", then P1 would react to the hit accordingly.
Last Edit: October 13, 2015, 07:57:51 pm by Odb718
Re: type (CNS)
#2  April 08, 2016, 08:07:47 pm
  • *****
  • Thanks and God bless
    • USA
    • ricepigeon.neocities.org
While not explicitly stated, the type defined in the statedef is only applied at the beginning of the state and lasts throughout the state until changed. One mistake many newcomers to Mugen coding make is an attack that takes the player off the ground (ie: a Shoryuken) and while the character may appear in the air, they are technically in a "S" state type, as they forget to change the state type. Type can be changed in the middle of a state by using the StateTypeSet controller.