Fix zindex property not working on polysec component.

This commit is contained in:
2022-11-26 21:55:03 +08:00
parent 4bcf76819c
commit e43a0e62b7
2 changed files with 4 additions and 1 deletions

View File

@@ -22,7 +22,9 @@ namespace Cryville.Crtr.Components {
}
protected void UpdateZIndex() {
if (!mesh.Initialized) return;
mesh.Renderer.material.renderQueue = _zindex;
foreach (var mat in mesh.Renderer.materials) {
mat.renderQueue = _zindex;
}
}
}
}