Exemplo n.º 1
0
        // the pathfinder may now change, so we have to re-poll it every turn
        internal void SetPathfinder()
        {
            // this is a little hacky
            Player player = Main.player[projectile.owner];
            BlockAwarePathfinder nextPathfinder = player?.GetModPlayer <MinionPathfindingPlayer>().GetPathfinder(minion);

            if (pathfinder != nextPathfinder)
            {
                DetachFromPath();
                pathfinder = nextPathfinder;
            }
        }
Exemplo n.º 2
0
 internal PathfinderMetadata(MinionPathfindingPlayer player, int tacticsGroup)
 {
     pHelper = new BlockAwarePathfinder(player, tacticsGroup);
 }