SW 중심대학 OSS GIT 서버 박건태, 이승준, 고기완, 이준호 새로운 배포
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
613 B

4 years ago
  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. }