MoveAction.ActionSuccess C# (CSharp) Method

ActionSuccess() protected method

protected ActionSuccess ( ) : bool
return bool
    protected override bool ActionSuccess()
    {
        foreach (HexNode node in HexGridAssembler.singleton.tiles) {
            if (node.entityOnTile != null) {
                node.AddToTemporaryGraph();
            }
        }
        return base.ActionSuccess();
    }