Search Issue Tracker
By Design
Votes
0
Found in
2020.2.0a8
2020.2.0a20
Issue ID
1267029
Regression
Yes
[Preset] Unity Remote properties are missing in the Preset of Editor Settings
When preset of "Editor Settings" is created from Project Settings window, "Unity Remote" properties are missing in the Preset, refer attache video
Steps to repro:
1. Create a new project
2. Edit > Project Settings > Editor
3. Create preset of Editor Settings
4. Project window > EditorSetttings preset > Select
Actual Result:
Unity Remote properties are missing in the Preset of Editor Settings
Expected Result:
Unity Remote Properties should be available in the preset of Editor Settings
Occurring on:
2020.2.0a20, 2020.2.0a8
Working fine:
2020.2.0a7, 2020.1.1f1
Environment:
Windows10 and macOS 10.15
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Created asset is placed in a new folder when creating a new folder and instantly creating an asset by clicking somewhere else
- Selecting and deleting transition in Animator does not add to Undo History when animation is previewed in Inspector
- GameObjects remain static when updating constraints of PhysicsJoint with "Enable Sleeping" selected in Havok Physics Configuration
- [iOS] Touch input is not clocked and UI is unresponsive when the application is paused mid-drag without lifting the finger
- [sw-unity-6-1] Scene view renders any light differently when more than one camera exists and neither have the "MainCamera" tag
Resolution Note (2020.2.9f1):
Editor Settings are a strange beast. Part of the settings are global values (like Remote Unity values) that are persisted in C++ and not part of a SerializedObject. Par of the settings are a SerializedObject that can be copied and used as a preset.
When displaying the Editor Settings SettingsWindow we show all the settings: Global values and Serialized values.
When displaying the Editor Preset Settings we are NOT displaying the global values because ALL PRESETS would share the same values anyway.
Why did it seem to work with version 2020.2a7?
The UI would show the Unity Remote values but it wouldn't be modifying the preset data. It would be modifying the global values thus affecting the values of ALL presets. So in wasn't really working either :)