I recently found myself in the situation that a Unity project which changed ownership, still linked to now non-existing Unity Services. It constantly gave me warning messages like:
Unable to access Unity services. Please log in or request membership to this project to use these services
As it took me multiple iterations to solve it and there are multiple unsolved or incomplete post about it, I wanted to share how I did it:
- Navigate to the file <
Your project folder>/ProjectSettings/ProjectSettings.asset
and open it with a text editor - In the section
cloudServicesEnabled
, set all to 0 - Set the
cloudProjectId
empty (i.e. a space after the colon)
The respective sections of my file now look like this:
...
vrEditorSettings:
daydream:
daydreamIconForeground: {fileID: 0}
daydreamIconBackground: {fileID: 0}
cloudServicesEnabled:
UNet: 0
luminIcon:
m_Name:
m_ModelFolderPath:
m_PortalFolderPath:
luminCert:
m_CertPath:
m_SignPackage: 1
luminIsChannelApp: 0
luminVersion:
m_VersionCode: 1
m_VersionName:
apiCompatibilityLevel: 6
cloudProjectId:
framebufferDepthMemorylessMode: 0
...