ARLocationOrientationInspector.cs 613 B

12345678910111213141516171819
  1. using UnityEditor;
  2. namespace ARLocation
  3. {
  4. [CustomEditor(typeof(ARLocationOrientation))]
  5. public class ARLocationOrientationInspector : Editor
  6. {
  7. public override void OnInspectorGUI()
  8. {
  9. DrawDefaultInspector();
  10. #if PLATFORM_ANDROID
  11. EditorGUILayout.HelpBox("On some Android devices, the magnetic compass data is not tilt compensated," +
  12. "so it is recommended that you check the 'ApplyCompassTiltCompensationOnAndroid' option above. " +
  13. "\n", MessageType.Warning);
  14. #endif
  15. }
  16. }
  17. }