@@ -91,6 +91,8 @@ internal static void Display(ScriptableSentryUnityOptions options, SentryCliOpti
91
91
EditorGUI . indentLevel ++ ;
92
92
if ( UnfoldNativeOptions )
93
93
{
94
+ GUILayout . Label ( "Desktop" , EditorStyles . boldLabel ) ;
95
+
94
96
options . WindowsNativeSupportEnabled = EditorGUILayout . Toggle (
95
97
new GUIContent ( "Windows" , "Whether to enable native crashes support on Windows." ) ,
96
98
options . WindowsNativeSupportEnabled ) ;
@@ -103,6 +105,8 @@ internal static void Display(ScriptableSentryUnityOptions options, SentryCliOpti
103
105
new GUIContent ( "Linux" , "Whether to enable native crashes support on Linux." ) ,
104
106
options . LinuxNativeSupportEnabled ) ;
105
107
108
+ GUILayout . Label ( "Mobile" , EditorStyles . boldLabel ) ;
109
+
106
110
options . IosNativeSupportEnabled = EditorGUILayout . Toggle (
107
111
new GUIContent ( "iOS" , "Whether to enable Native iOS support to capture" +
108
112
"errors written in languages such as Objective-C, Swift, C and C++." ) ,
@@ -133,6 +137,12 @@ internal static void Display(ScriptableSentryUnityOptions options, SentryCliOpti
133
137
EditorGUI . EndDisabledGroup ( ) ;
134
138
EditorGUI . EndDisabledGroup ( ) ;
135
139
EditorGUI . indentLevel -- ;
140
+
141
+ GUILayout . Label ( "Console" , EditorStyles . boldLabel ) ;
142
+
143
+ options . XboxNativeSupportEnabled = EditorGUILayout . Toggle (
144
+ new GUIContent ( "Xbox" , "Whether to enable native crashes support on Xbox." ) ,
145
+ options . XboxNativeSupportEnabled ) ;
136
146
}
137
147
138
148
EditorGUI . indentLevel -- ;
0 commit comments