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.
package/dist/tool-counts.json
CHANGED
package/package.json
CHANGED
|
@@ -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->
|
|
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->
|
|
213
|
+
FRequestPlaySessionParams P; GEditor->RequestPlaySession(P);
|
|
214
214
|
}
|
|
215
215
|
return FReply::Handled();
|
|
216
216
|
})
|