In the FSMState class there’s an overriden OnCreate method that throws an exception when building the game.
public override void OnCreate(Graph assignedGraph) {
base.customColor = new Color(1, 0.42f, 0.32f);
}
The property customColor does not exist. Commenting this line fixed the issue 🙂