Search Issue Tracker
Fixed in 2020.2.X
Fixed in 2020.1.X
Votes
0
Found in
2019.3.12f1
2020.1
Issue ID
1240667
Regression
No
Custom editor do not respect the hide in editor flag
The inspector custom editor are still shown even if the target object specify to be hidden in the inspector.
Steps:
1- Create a new project
2- Create a scripted importer
[ExcludeFromPreset, ScriptedImporter(version: 1, ext: "qse")]
class SearchExpressionImporter : ScriptedImporter
{
public override void OnImportAsset(AssetImportContext ctx)
{
Debug.Log($"Importing search expression {ctx.assetPath}");
var text = new TextAsset(File.ReadAllText(ctx.assetPath));
text.hideFlags |= HideFlags.HideInInspector;
ctx.AddObjectToAsset("expression", text, Icons.quicksearch);
ctx.SetMainObject(text);
}
}
3- Import and select the generated asset
Result: Notice that the the Text object is still shown even if we want it hidden when the asset is selected in the project browser
Expected: Have any imported object be hidden in the inspector if mark as such.
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- WebGL Player with WebGPU Graphics API fails to render Scene when custom Render Feature is used
- “EndLayoutGroup” error thrown when changing Shader Precision Model settings in Build Profiles window > Player Settings Overrides
- Button hover state uses default theme color when a custom .uss is applied
- Samples Showcase script warning does not clear after enabling required settings until GameObject is reselected
- VFX Particles receive shadow artifacts when using ShaderGraph with enabled shadows and Face Camera Plane Orient mode
Add comment