feat: expand editor scripting asset and viewport flow

This commit is contained in:
2026-04-03 13:22:30 +08:00
parent ed8c27fde2
commit a05d0b80a2
124 changed files with 10397 additions and 1737 deletions

View File

@@ -0,0 +1,17 @@
#pragma once
#include <string>
namespace XCEngine {
namespace Editor {
struct EditorScriptRuntimeStatus {
bool backendEnabled = false;
bool assembliesFound = false;
bool runtimeLoaded = false;
std::string assemblyDirectory;
std::string statusMessage;
};
} // namespace Editor
} // namespace XCEngine