Search Issue Tracker
Fixed in 2020.1.X
Fixed in 2019.2.X, 2019.3.X
Votes
14
Found in
2018.3.0b7
Issue ID
1094991
Regression
Yes
Editor is lagging when modifying material properties
How to reproduce:
1. Open attached "ForgottenPlayhouse" project
2. Select "cardboardwall1" material under Assets/Materials/Cardboard/CardboardWall1
3. In Inspector change color of the material
Expected result: Color(or any other property) is changed instantly and Editor does not lag
Actual result: Editor is lagging after every property change
Reproduced with: 2018.3.0b7, 2019.1.0a10
Does not reproduce with: 2018.3.0b6 (performance is only barely slower), 2018.2.17f1 and lower (performance is as expected)
Notes: Changing the Shader from HDRP to any other still reproduces the issue.
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
- "Unsupported texture format R16 for a swizzle" error and texture is not correctly rendered when using texture Swizzle and reimporting texture asset
- Tab order is incorrect after re-ordering
- [Ubuntu] Red squares instead of ticks in dropdown options
- Multiple simultaneous input with the touch screen sometimes leaves button in not default state
- Crash on ShowDelayedContextMenu(bool) when changing the Size options of a Visual Element in the UIToolkit Inspector
beritahariini
Mar 10, 2023 08:01
asfasfasf
shubhamswaraj2021
Aug 18, 2020 09:33
good one <a href="https://www.lyricsauto.com">lyricsauto</a>
unity_CM9bXNV3hgR4kw
Aug 15, 2020 18:34
great job
visit my blog
https://www.bengkelnurisa.com/
https://www.sociocampaign.com/
https://www.nulisviral.com/
https://www.sediakonten.com/
https://sedaun.id/
https://sinyalpedia.com/
https://www.mp4project.com/
https://pewe.my.id/
https://monicaanggen.id/
https://www.pe-we.com/
https://pewetekno.com/
https://www.monicaanggen.com/
https://vlogaudi.com/
https://www.destinasikeren.com/
https://www.suaraterkini.com/
https://www.tipskekini.com/
https://www.ruangkonten.com/
https://www.jurnalkit.com/
https://brtnetwork.id/
https://sijipitu.id/
https://growthing.id/
cozyurt_unity
Jul 17, 2020 14:03
kedi maması köpek maması www.patilimama.com
Peter77
Sep 05, 2019 16:28
Related forum post:
https://forum.unity.com/threads/case-1094991-bump-custom-shader-gui-makes-scene-editing-impossible.738944/
julian-moschuering
Sep 03, 2019 09:50
Or just cache it. I hacked around this by skipping CreateCustomShaderEditor and replacing it with a cached one.
Kleptine
Jun 21, 2019 16:28
The cause of this bug is that the ShaderGUIUtility.ExtractCustomEditorType() function is looping through all types in the loaded assemblies, even though it's only looking for a specific type name.
Fix: Swap this loop with Assembly.GetType() which is O(1) for a given type name.