unreal 1.1.0 — add Launch Unreal Engine action
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
@ -14,6 +14,12 @@ export function activate(host) {
|
||||
ue.build(); // triggers the core build flow + overlay
|
||||
});
|
||||
|
||||
// Launch the Unreal editor by opening the detected .uproject.
|
||||
host.ui.addMenuItem("🚀 Launch Unreal Engine", () => {
|
||||
if (!ue.hasProject()) { host.flash("No Unreal project in the current working folder.", true); return; }
|
||||
ue.launch();
|
||||
});
|
||||
|
||||
// Live Unreal editor log (tails Saved/Logs). Opens from the Actions menu.
|
||||
host.ui.addView({
|
||||
id: "unreal-log",
|
||||
|
||||
Reference in New Issue
Block a user