You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -80,34 +81,36 @@ public override JObject Execute(JObject parameters)
80
81
AssetDatabase.Refresh();
81
82
82
83
// Log the action
83
-
McpLogger.LogInfo($"Created prefab '{prefab.name}' at path '{prefabPath}' from script '{scriptName}'");
84
+
McpLogger.LogInfo($"Created prefab '{prefabName}' at path '{prefabPath}' from script '{componentName}'");
85
+
86
+
stringmessage=success?$"Successfully created prefab '{prefabName}' at path '{prefabPath}'":$"Failed to create prefab '{prefabName}' at path '{prefabPath}'";
84
87
85
88
// Create the response
86
89
returnnewJObject
87
90
{
88
-
["success"]=true,
91
+
["success"]=success,
89
92
["type"]="text",
90
-
["message"]=$"Successfully created prefab '{prefab.name}' at path '{prefabPath}'",
0 commit comments