コード例 #1
0
ファイル: Livestock.cs プロジェクト: chaojikugua/CapitalCity
    public override void ReturnHome()
    {
        List <Node> entrances = Origin.GetAdjBareGroundTiles();

        if (entrances.Count == 0)
        {
            DestroySelf();
            return;
        }
        FindPathTo(entrances);
        data.ReturningHome = true;
        Stuck = true;
    }