lxLuaWidget is gone.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
@@ -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);
|
||||
};
|
||||
|
||||
@@ -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);
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user