GetObjectFromScreenPoint() 공개 정적인 메소드

public static GetObjectFromScreenPoint ( Vec2 pt, Vec3 &hitPos ) : EditorObject
pt Vec2
hitPos Vec3
리턴 EditorObject
예제 #1
0
 public static EditorObject GetObjectFromScreenPoint(Vec2 pt, out Vec3 hitPos, bool includeFrozen)
 {
     return(ObjectManager.GetObjectFromScreenPoint(pt, out hitPos, includeFrozen, EditorObject.Null));
 }
예제 #2
0
 public static EditorObject GetObjectFromScreenPoint(Vec2 pt, out Vec3 hitPos)
 {
     return(ObjectManager.GetObjectFromScreenPoint(pt, out hitPos, false, EditorObject.Null));
 }