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
[Tooltip("API key for your Thirdweb project. Get your API key from https://thirdweb.com/create-api-key")]
140
142
privatestringClientId{get;set;}
141
143
142
144
[field:SerializeField]
145
+
[Tooltip("Bundle ID of your Unity project. Default is Application.identifier. If not set, it will be generated using Application.companyName and Application.productName.")]
143
146
privatestringBundleId{get;set;}
144
147
145
148
[field:SerializeField]
149
+
[Tooltip("Initialize ThirdwebManager on Awake. Default is true. Set to false if you want to initialize manually.")]
146
150
privateboolInitializeOnAwake{get;set;}=true;
147
151
148
152
[field:SerializeField]
153
+
[Tooltip("Enable or disable debug logs. Default is true.")]
149
154
privateboolShowDebugLogs{get;set;}=true;
150
155
151
156
[field:SerializeField]
157
+
[Tooltip("Opt out of usage analytics. This will disable tracking of wallet connection events and affect your dashboard stats.")]
0 commit comments