Fixed up some description text.
This commit is contained in:
parent
7505a70575
commit
64b2c8e934
@ -30,16 +30,16 @@ public:
|
||||
|
||||
protected:
|
||||
/**
|
||||
* GUID for this Mountea Dialogue Graph.
|
||||
*❗ Unique identifier for this Dialogue Graph instance.
|
||||
*❔ Can be used for debugging and tracing purposes.
|
||||
* Unique GUID for this graph.
|
||||
* Can be used for debugging and tracing purposes.
|
||||
*/
|
||||
UPROPERTY(BlueprintReadOnly, Category="Combo Input")
|
||||
FGuid GraphGUID;
|
||||
|
||||
public:
|
||||
|
||||
// Pointer to the starting node of the dialogue graph.
|
||||
/**
|
||||
* Pointer to the starting node of the dialogue graph.
|
||||
*/
|
||||
UPROPERTY(BlueprintReadOnly, Category="Combo Input|Action")
|
||||
class UComboActionGraphNode *StartNode = nullptr;
|
||||
/**
|
||||
|
||||
@ -42,7 +42,7 @@ public:
|
||||
virtual FText GetName() const override { return NSLOCTEXT("AssetTypeActions", "AssetTypeActions_ComboInputAsset", "Combo Input Asset"); }
|
||||
virtual uint32 GetCategories() override { return FComboInputEditorModule::GetInputAssetsCategory(); }
|
||||
virtual FColor GetTypeColor() const override { return FColor(255, 127, 255); }
|
||||
virtual FText GetAssetDescription(const FAssetData &AssetData) const override { return NSLOCTEXT("AssetTypeActions", "AssetTypeActions_ComboInputAssetDesc", "This maps a sequence of button inputs from EnhancedInput to a combo action that can be used to execute a sequence of moves. This gets sent from the input buffer subsystem to the player controller's ComboManagerComponent, which executes the associated action in the current ComboSequenceNode."); }
|
||||
virtual FText GetAssetDescription(const FAssetData &AssetData) const override { return NSLOCTEXT("AssetTypeActions", "AssetTypeActions_ComboInputAssetDesc", "This maps a sequence of button inputs from EnhancedInput to a combo action that can be used to execute a sequence of moves. This gets sent from the input buffer subsystem to the player controller's ComboManagerComponent, which executes the associated action in the current ComboActionGraph."); }
|
||||
virtual UClass *GetSupportedClass() const override { return UComboInputAsset::StaticClass(); }
|
||||
};
|
||||
|
||||
@ -52,7 +52,7 @@ public:
|
||||
virtual FText GetName() const override { return NSLOCTEXT("AssetTypeActions", "AssetTypeActions_ComboActionGraph", "Combo Action Graph"); }
|
||||
virtual uint32 GetCategories() override { return FComboInputEditorModule::GetInputAssetsCategory(); }
|
||||
virtual FColor GetTypeColor() const override { return FColor(255, 127, 255); }
|
||||
virtual FText GetAssetDescription(const FAssetData &AssetData) const override { return NSLOCTEXT("AssetTypeActions", "AssetTypeActions_ComboActionGraphDesc", "This maps a sequence of button inputs from EnhancedInput to a combo action that can be used to execute a sequence of moves. This gets sent from the input buffer subsystem to the player controller's ComboManagerComponent, which executes the associated action in the current ComboSequenceNode."); }
|
||||
virtual FText GetAssetDescription(const FAssetData &AssetData) const override { return NSLOCTEXT("AssetTypeActions", "AssetTypeActions_ComboActionGraphDesc", "A node graph containing a sequence of combo actions. Each node can respond to any number of combo inputs, and when activated will execute the associated event."); }
|
||||
virtual UClass *GetSupportedClass() const override { return UComboActionGraph::StaticClass(); }
|
||||
|
||||
virtual void OpenAssetEditor(const TArray<UObject*> &InObjects, TSharedPtr<class IToolkitHost> EditWithinLevelEditor = TSharedPtr<IToolkitHost>()) override
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user