gatsby0121
gatsby01213w ago

Missing normcore appsettings after upgrade to Unity 6

I upgraded our project to Unity 6. Once I did that, when I look at the Realtime + VR Player, the App Settings object is gone. When I click on the select app settings file picker, there's nothing in the NormCore app settings to select. It's no longer in the Assets/Normcore/Resources folder (it was moved by the migrate functionality. Has anyone seen this before?
No description
9 Replies
kapa.ai
kapa.ai3w ago
Hi @gatsby0121. I'm kapa.ai, your friendly support bot. I will try to answer your question by searching through the knowledge base. :wave: ---------------------- It seems like the Normcore App Settings file might have been misplaced or deleted during the Unity upgrade process. The App Settings file is a ScriptableObject that represents all settings related to a single Normcore application, including the app key used to associate your application with the Normcore servers. You can create a new App Settings instance using the CreateInstance method. Here's how you can do it:
NormcoreAppSettings appSettings = NormcoreAppSettings.CreateInstance("your_normcore_app_key");
NormcoreAppSettings appSettings = NormcoreAppSettings.CreateInstance("your_normcore_app_key");
Replace "your_normcore_app_key" with your actual Normcore app key. If you don't have your app key, you can find it in your Normcore account dashboard (https://normcore.io/dashboard). Once you've created the new App Settings instance, you should be able to select it in the Realtime component's App Settings field. If you're still encountering issues, I recommend reaching out to the Normcore community on their Discord (https://normcore.io/documentation/essentials/common-questions#does-normcore-support-x-y-z) for further assistance. Source: NormcoreAppSettings Documentation (https://normcore.io/documentation/reference/classes/Normal.NormcoreAppSettings) ---------------------- Note: you can ask me a follow up question by @ mentioning me again :speech_balloon: ----------------------
kapa.ai
kapa.ai3w ago
<@401227332855267329> Kapa.ai is still learning and improving, please let me know how I did by reacting below.
Mechabit
Mechabit3w ago
the latest version moved some things around, you can just replace it
gatsby0121
gatsby0121OP3w ago
@Mechabit Sorry replace it with what? The one under the asset/Normal/VR Player is also having the same issue. Same with the Cube and Hoverbird players.
gatsby0121
gatsby0121OP3w ago
No description
gatsby0121
gatsby0121OP3w ago
As a result, we can't add our application key
Mechabit
Mechabit3w ago
No description
Mechabit
Mechabit3w ago
create a new app settings file and put it in resources
gatsby0121
gatsby0121OP3w ago
Thanks, I think that did it.