Siddharth
Siddharth

Reputation: 4312

Unity Complete Editor Become Pink - Unity Editor Bug

Whole Unity Editor becomes pink, I don't know what happened wrong with the editor.

Here is the screenshot of the editor: enter image description here

I have changed Color Space settings from Gamma to Linear and all things become pink. Linear or gamma workflow

I have restarted Unity multiple times but nothing changed.

I hope I will not lose my project data because of this. I can't able to find any way to change settings back to Gamma.

NOTE: Within the same project, I started getting this problem. My other projects don't face this kind of problem.

Upvotes: 2

Views: 1094

Answers (1)

derHugo
derHugo

Reputation: 90659

Seems to be a bug!


Hotfix for reverting the change

With an external texteditor open the file

ProjectSettings/ProjectSettings.asset

and find the entry

m_ActiveColorSpace = 1

it should be 1 for Gamma

and change it back to 0 for Linear

m_ActiveColorSpace = 0

then open the project in Unity again.

This should hopefully revert the change.

Upvotes: 2

Related Questions