User Tools

Site Tools


move:general

This is an old revision of the document!


General Options

Set options like attack type, armor and gauge of your move here.

Move Name: The move name. This is the main identifier for this move.

Move Description: The move description. Can be used in handy guides inside your game.

FPS Architecture: The frame per second architecture this move is designed for. By default this value is set to 60. Be very careful when changing this value on already coded moves. The editor will recalculate the frames in your move which can cause already coded frame data to malfunction.

Attack Type: If the attack is Regular, Special, EX or Super. Although you can use this for organization purposes while creating your special moves, Currently UFE has no visual cue to distinct these value types.

Armor: How many hits can a character using this move takes before breaking the move. You can read more about it following this link.

Combat Stance: Use this option to change between move sets by setting this value to the desired stance. If you don't need to change stances, just leave this value untouched.

Ignore Gravity: If this move is triggered in the air, should the character ignore the laws of physics for the duration of the move?

Gauge (Meter) Options: Set how much gauge the character will receive on hit, miss or block -or- how much gauge a move requires to be triggered by the player.

OP. Gauge Gain on Block: How much gauge will the opponent get if they block this attack.

OP. Gauge Gain on Parry: How much gauge will the opponent get if they parry this attack.

Possible States: Possible character positions in witch a move be executed by the player. The options are Stand, Crouch, Forward Jump, Back Jump, Straight Jump. You can set multiple states to allow the move to be executed from several different conditions.
Coming soon: Close to Opponent, Far from Opponent.


Code example:

void OnHit(HitBox strokeHitBox, MoveInfo move, CharacterInfo hitter){
	if (move.attackType == AttackType.EX) Debug.Log("EX Move fired!");
}

< Back to Move Editor

move/general.1386915960.txt.gz · Last modified: 2013/12/13 01:26 by Mistermind