private void UpdateColor(Color newColor, int pmatIndex)
 {
     if (this.matIndex == pmatIndex)
     {
         _curColor = newColor;
         ObjectUtil.ChangeMeshRendererColor(_renderer, this.matIndex, newColor, colorProperty);
     }
 }