Difference between revisions of "TS3PR/SimIFace/Sims3.SimIFace/BlockedStatus"
From SimsWiki
< TS3PR | SimIFace | Sims3.SimIFace
(Gave Blocked status it's own page) |
Latest revision as of 17:05, 1 February 2021
A helper enum that gives us the ability to determine what blocked the sim/object from routing. This is really only used inside the Route class to return the reason, but there's plenty of code in there that can serve as a debug function for routing. So there's no need to make your own ;)
[edit] Used primarily by:
[edit] Code
public enum BlockedStatus { Unobstructed, BlockedBySim, BlockedByVehicle, BlockedByObject, BlockedByWall, BlockedByOther, BlockedForOtherReason }