TS3PR/SimIFace/Sims3.SimIFace/BlockedStatus
From SimsWiki
< TS3PR | SimIFace | Sims3.SimIFace
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 ;)
Used primarily by:
Code
public enum BlockedStatus { Unobstructed, BlockedBySim, BlockedByVehicle, BlockedByObject, BlockedByWall, BlockedByOther, BlockedForOtherReason }