Esempio n. 1
0
        public SubCell GetAvailableSubCell(CPos a, SubCell preferredSubCell = SubCell.Any, Actor ignoreActor = null, bool checkTransientActors = true)
        {
            var cellConditions = checkTransientActors ? CellConditions.All : CellConditions.None;

            return(Locomotor.GetAvailableSubCell(self, a, preferredSubCell, ignoreActor, cellConditions));
        }
Esempio n. 2
0
 public SubCell GetAvailableSubCell(CPos a, SubCell preferredSubCell = SubCell.Any, Actor ignoreActor = null, BlockedByActor check = BlockedByActor.All)
 {
     return(Locomotor.GetAvailableSubCell(self, a, check, preferredSubCell, ignoreActor));
 }