ue-mcp 1.0.81 → 1.0.82

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -26,6 +26,6 @@
26
26
  "statetree": 35,
27
27
  "plugins": 2
28
28
  },
29
- "generatedAt": "2026-06-23T18:11:49.599Z",
30
- "version": "1.0.81"
29
+ "generatedAt": "2026-06-23T18:21:10.999Z",
30
+ "version": "1.0.82"
31
31
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ue-mcp",
3
- "version": "1.0.81",
3
+ "version": "1.0.82",
4
4
  "description": "Unreal Engine MCP server - 21 tools, 599+ actions for AI-driven editor control",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -157,7 +157,7 @@ namespace
157
157
  return Obj;
158
158
  }
159
159
 
160
- TSharedPtr<FJsonObject> MaterialInstanceOverrideCounts(const UMaterialInstanceConstant* Instance)
160
+ TSharedPtr<FJsonObject> MaterialInstanceOverrideCounts(UMaterialInstanceConstant* Instance)
161
161
  {
162
162
  TSharedPtr<FJsonObject> Counts = MakeShared<FJsonObject>();
163
163
  if (!Instance)
@@ -184,7 +184,7 @@ namespace
184
184
  return Counts;
185
185
  }
186
186
 
187
- int32 CountTotalMaterialInstanceOverrides(const UMaterialInstanceConstant* Instance)
187
+ int32 CountTotalMaterialInstanceOverrides(UMaterialInstanceConstant* Instance)
188
188
  {
189
189
  if (!Instance)
190
190
  {