Compare commits

...

2 Commits

Author SHA1 Message Date
46ac6b34a8 Working on wb_hotkey_image 2026-04-09 17:53:42 -04:00
c14947382d lxLuaWidget is gone. 2026-04-09 16:58:19 -04:00
6 changed files with 6 additions and 36 deletions

Binary file not shown.

Binary file not shown.

View File

@@ -1,3 +1,5 @@
* UE Wingman Widgets: cannot edit 'Is Variable' flag or widget name.
* Keyboard Event Handling
* Menus

View File

@@ -148,10 +148,3 @@ ElxValidOrNotValid UlxAssetLookup::LoadUserWidgetAsset(
Result = (UClass *)LoadAsset(Context, UWidgetBlueprint::StaticClass(), UUserWidget::StaticClass(), Name);
return Result ? Valid : NotValid;
}
ElxValidOrNotValid UlxAssetLookup::LoadLuaWidgetAsset(
TSubclassOf<UlxLuaWidget> &Result, const UObject *Context, const FString &Name)
{
Result = (UClass *)LoadAsset(Context, UWidgetBlueprint::StaticClass(), UlxLuaWidget::StaticClass(), Name);
return Result ? Valid : NotValid;
}

View File

@@ -83,10 +83,4 @@ public:
UFUNCTION(BlueprintCallable, meta = (WorldContext = "Context", ExpandEnumAsExecs="ReturnValue"), Category = "Luprex|Asset Loading")
static ElxValidOrNotValid LoadUserWidgetAsset(
TSubclassOf<UUserWidget> &Result, const UObject *Context, const FString &Name);
// Get a look-at widget blueprint by name.
//
UFUNCTION(BlueprintCallable, meta = (WorldContext = "Context", ExpandEnumAsExecs="ReturnValue"), Category = "Luprex|Asset Loading")
static ElxValidOrNotValid LoadLuaWidgetAsset(
TSubclassOf<UlxLuaWidget> &Result, const UObject *Context, const FString &Name);
};

View File

@@ -138,22 +138,3 @@ DECLARE_LOG_CATEGORY_EXTERN(LogLuprex, Display, All);
// Messages about the Luprex integration with Unreal.
//
DECLARE_LOG_CATEGORY_EXTERN(LogLuprexIntegration, Display, All);
////////////////////////////////////////////////////////////
//
// UlxLuaWidget
//
////////////////////////////////////////////////////////////
class UlxLuaValues;
UCLASS(BlueprintType)
class INTEGRATION_API UlxLuaWidget : public UUserWidget
{
GENERATED_BODY()
public:
UFUNCTION(BlueprintImplementableEvent, BlueprintCallable, Category = "Luprex|Miscellaneous")
void ReadLuaConfiguration(UlxLuaValues *Config);
};