コード例 #1
0
 public static bool FsmIsNull(FsmPathfindingBase pathfinder)
 {
     try
     { return pathfinder.Value == null; }
     catch (InvalidCastException e)
     { return true; }
 }
コード例 #2
0
 public static Type FsmGetTypeOf(FsmPathfindingBase pathfinder)
 {
     return pathfinder.Value ? pathfinder.Value.GetType () : null;
 }