Update ManageAsset.cs

main
Shutong Wu 2025-07-13 15:14:08 -04:00 committed by GitHub
parent 8211d85563
commit fb8be3b1c5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -907,9 +907,9 @@ namespace UnityMcpBridge.Editor.Tools
); );
} }
} }
} else if (properties["_Color"] is JArray colorArr) //Current Prevention for systems that use _Color instead of color } else if (properties["color"] is JArray colorArr) //Current Prevention for systems that use _Color instead of color
{ {
string propName = "_Color"; // Default main color string propName = "_Color";
try { try {
if (colorArr.Count >= 3) if (colorArr.Count >= 3)
{ {