OnStateExit

void OnStateExit();

Description

ステートが終了したときに呼ばれる関数。
必要な場合、overrideしてメソッドを作成してください。

// C# Example
public class Example : StateBehaviour
{
	public override void OnStateExit()
	{
		Debug.Log( "OnStateExit" );
	}
}