You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
EditorGUILayout.HelpBox("Configure your client settings here.",MessageType.Info);
142
-
DrawProperty(clientIdProp,"Client ID");
143
-
DrawProperty(bundleIdProp,"Bundle ID");
144
+
DrawProperty(clientIdProp,"Client ID","Your Thirdweb Client ID. You can find this in the Thirdweb Dashboard by creating a project.");
145
+
DrawProperty(bundleIdProp,"Bundle ID","You may allowlist a bundle ID in the Thirdweb Dashboard to allow native apps to access our services, eg com.mycompany.myapp");
DrawProperty(optOutUsageAnalyticsProp,"Opt-Out of Usage Analytics");
158
+
DrawProperty(initializeOnAwakeProp,"Initialize On Awake","If enabled, Thirdweb will initialize on Awake. If disabled, you must call ThirdwebManager.Instance.Initialize() manually.");
159
+
DrawProperty(showDebugLogsProp,"Show Debug Logs","If enabled, Thirdweb will log debug messages to the console.");
160
+
DrawProperty(optOutUsageAnalyticsProp,"Opt-Out of Usage Analytics","If enabled, you may see inconsistent stats in your Thirdweb Dashboard.");
159
161
}
160
162
161
163
privatevoidDrawMiscTab()
162
164
{
163
165
EditorGUILayout.HelpBox("Configure other settings here.",MessageType.Info);
DrawProperty(rpcOverridesProp,"RPC Overrides","We recommend using our default RPC, but if you encounter issues you may override them by chain id here.");
167
169
168
170
GUILayout.Space(10);
169
171
170
172
// Desktop OAuth Settings
171
-
EditorGUILayout.LabelField("OAuth Redirect Page HTML Override",EditorStyles.boldLabel);
173
+
EditorGUILayout.LabelField(
174
+
newGUIContent("OAuth Redirect Page HTML Override","The HTML displayed after Social Login on Desktop, you may override it to match your branding."),
0 commit comments