Skip to content

Base Action

Actions inherit from BaseAction instead of FsmStateAction.

Before:

public class Wait : FsmStateAction
{
    ...
}

Now:

public class Wait : BaseAction
{
    ...
}