UnityEngine.GUIElement.INTERNAL_CALL_HitTest C# (CSharp) Method

INTERNAL_CALL_HitTest() private method

private INTERNAL_CALL_HitTest ( GUIElement self, Vector3 &screenPosition, Camera camera ) : bool
self GUIElement
screenPosition Vector3
camera Camera
return bool
        private static extern bool INTERNAL_CALL_HitTest(GUIElement self, ref Vector3 screenPosition, Camera camera);
    }

Usage Example

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