Skip to content
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.

Commit

Permalink
Update settings
Browse files Browse the repository at this point in the history
  • Loading branch information
lucoiso committed Nov 11, 2022
1 parent 7af4510 commit f9cbc5c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Source/Public/MFEA_Settings.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ class MODULARFEATURES_EXTRAACTIONS_API UMFEA_Settings : public UDeveloperSetting
explicit UMFEA_Settings(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get());

private:
/* Work in Progress: If true, will auto bind the ability input directly using the given Input Action */
UPROPERTY(GlobalConfig, EditAnywhere, Category = "Settings", Meta = (DisplayName = "Work in Progress: Enable Ability Auto Binding", EditCondition = "false"))
/* Work in Progress: If true, will auto bind the ability input directly using the given Input Action. Will be added in a next update. */
UPROPERTY(GlobalConfig, EditAnywhere, Category = "Settings", Meta = (DisplayName = "Enable Ability Auto Binding", EditCondition = "false"))
bool bEnableAbilityAutoBinding;

public:
Expand All @@ -49,7 +49,7 @@ class MODULARFEATURES_EXTRAACTIONS_API UMFEA_Settings : public UDeveloperSetting
UPROPERTY(GlobalConfig, EditAnywhere, Category = "Settings", Meta = (DisplayName = "InputID Enumeration", EditCondition = "!bEnableAbilityAutoBinding && AbilityBindingMode == EAbilityBindingMode::InputID"))
TSoftObjectPtr<UEnum> InputIDEnumeration;

/* Determine if the ability binding will be performed to the pawn or its controller - Must be the owner of the binding interface */
UPROPERTY(GlobalConfig, EditAnywhere, Category = "Settings")
/* Determine if the ability binding will be performed to the pawn or its controller - Must be the owner of the binding interface. Can be overrided by actions. */
UPROPERTY(GlobalConfig, EditAnywhere, Category = "Settings", Meta = (DisplayName = "Default Input Binding Owner"))
EInputBindingOwner InputBindingOwner;
};

0 comments on commit f9cbc5c

Please sign in to comment.