ue-mcp 1.0.48 → 1.0.49

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-05-26T14:15:18.421Z",
30
- "version": "1.0.48"
29
+ "generatedAt": "2026-05-26T14:21:31.564Z",
30
+ "version": "1.0.49"
31
31
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ue-mcp",
3
- "version": "1.0.48",
3
+ "version": "1.0.49",
4
4
  "description": "Unreal Engine MCP server - 21 tools, 556+ actions for AI-driven editor control",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -116,7 +116,7 @@ void SMCPPIEPanel::RegisterToolbarButton()
116
116
  UEMCPPIE::FPIEInputRecorder::Get().Arm(Cfg, Err, Msg);
117
117
  if (GEditor && !GEditor->PlayWorld)
118
118
  {
119
- GEditor->PlayInEditor(GEditor->GetEditorWorldContext().World(), false);
119
+ FRequestPlaySessionParams P; GEditor->RequestPlaySession(P);
120
120
  }
121
121
  })),
122
122
  FText::FromString(TEXT("Record")),
@@ -210,7 +210,7 @@ TSharedRef<SWidget> SMCPPIEPanel::BuildRecorderSection()
210
210
  UEMCPPIE::FPIEInputRecorder::Get().Arm(Cfg, Err, Msg);
211
211
  if (GEditor && !GEditor->PlayWorld)
212
212
  {
213
- GEditor->PlayInEditor(GEditor->GetEditorWorldContext().World(), false);
213
+ FRequestPlaySessionParams P; GEditor->RequestPlaySession(P);
214
214
  }
215
215
  return FReply::Handled();
216
216
  })