More work on blueprint MCP

This commit is contained in:
2026-03-18 14:18:53 -04:00
parent a2f6a21d29
commit b0743a3c3d
9 changed files with 123 additions and 23 deletions

View File

@@ -10,15 +10,15 @@
// and metadata as simple UPROPERTYs that the property system can
// populate from JSON.
USTRUCT()
struct FBlueprintVar
struct FWingBlueprintVar
{
GENERATED_BODY()
FBPVariableDescription* Desc = nullptr;
WingProperty DefaultValueProp;
FBlueprintVar() = default;
FBlueprintVar(UBlueprint* BP, const FString& VarName);
FWingBlueprintVar() = default;
FWingBlueprintVar(UBlueprint* BP, const FString& VarName);
bool NotFound() const { return Desc == nullptr; }