Combo special attack
Posted: Thu Oct 02, 2014 8:46 am
Hi I wonder how I should edit my combo file to make it so the 3rd attack of the combo only works if your energy is full?
Code: Select all
Transition("ATTACK3")
{
If()
{
Break(10, "Frames");
TimeStart(6, "Frames");
TimeEnd(16, "Frames"); //, "SyncIfOvertime");
Posture("Stand");
Energy(">=", 2.5); // at least half a second worth of deflect time
Button("Fire", "Press");
}
}