美文网首页
Error:Instantiating material due

Error:Instantiating material due

作者: RichMartin | 来源:发表于2021-12-10 13:02 被阅读0次

Error:Instantiating material due to calling renderer.material during edit mode. This will leak materials into the scene. You most likely want to use renderer.sharedMaterial instead.

 var tempMaterial = new Material(renderer.sharedMaterial);
 tempMaterial.color = Color.red;
 renderer.sharedMaterial = tempMaterial;

This gives no errors in edit mode.

相关文章

网友评论

      本文标题:Error:Instantiating material due

      本文链接:https://www.haomeiwen.com/subject/hqycfrtx.html