Compare commits
2 Commits
81989e83d7
...
46ac6b34a8
| Author | SHA1 | Date | |
|---|---|---|---|
| 46ac6b34a8 | |||
| c14947382d |
Binary file not shown.
Binary file not shown.
@@ -1,3 +1,5 @@
|
|||||||
|
* UE Wingman Widgets: cannot edit 'Is Variable' flag or widget name.
|
||||||
|
|
||||||
* Keyboard Event Handling
|
* Keyboard Event Handling
|
||||||
|
|
||||||
* Menus
|
* Menus
|
||||||
|
|||||||
@@ -148,10 +148,3 @@ ElxValidOrNotValid UlxAssetLookup::LoadUserWidgetAsset(
|
|||||||
Result = (UClass *)LoadAsset(Context, UWidgetBlueprint::StaticClass(), UUserWidget::StaticClass(), Name);
|
Result = (UClass *)LoadAsset(Context, UWidgetBlueprint::StaticClass(), UUserWidget::StaticClass(), Name);
|
||||||
return Result ? Valid : NotValid;
|
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;
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -83,10 +83,4 @@ public:
|
|||||||
UFUNCTION(BlueprintCallable, meta = (WorldContext = "Context", ExpandEnumAsExecs="ReturnValue"), Category = "Luprex|Asset Loading")
|
UFUNCTION(BlueprintCallable, meta = (WorldContext = "Context", ExpandEnumAsExecs="ReturnValue"), Category = "Luprex|Asset Loading")
|
||||||
static ElxValidOrNotValid LoadUserWidgetAsset(
|
static ElxValidOrNotValid LoadUserWidgetAsset(
|
||||||
TSubclassOf<UUserWidget> &Result, const UObject *Context, const FString &Name);
|
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);
|
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -138,22 +138,3 @@ DECLARE_LOG_CATEGORY_EXTERN(LogLuprex, Display, All);
|
|||||||
// Messages about the Luprex integration with Unreal.
|
// Messages about the Luprex integration with Unreal.
|
||||||
//
|
//
|
||||||
DECLARE_LOG_CATEGORY_EXTERN(LogLuprexIntegration, Display, All);
|
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);
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user