INTERNAL_CALL_HitTest() private method

private INTERNAL_CALL_HitTest ( GUIElement self, Vector3 &screenPosition, Camera camera ) : bool
self GUIElement
screenPosition Vector3
camera Camera
return bool
コード例 #1
0
ファイル: GUIElement.cs プロジェクト: zhkuang/UnityDecompiled
 public bool HitTest(Vector3 screenPosition, [DefaultValue("null")] Camera camera)
 {
     return(GUIElement.INTERNAL_CALL_HitTest(this, ref screenPosition, camera));
 }
コード例 #2
0
ファイル: GUIElement.cs プロジェクト: zhkuang/UnityDecompiled
        public bool HitTest(Vector3 screenPosition)
        {
            Camera camera = null;

            return(GUIElement.INTERNAL_CALL_HitTest(this, ref screenPosition, camera));
        }