@@ -56,56 +56,56 @@ class RIVE_API URiveViewModel : public UObject, public INotifyFieldValueChanged
5656 // check HasDefaultValues() before using these or the value returned may be
5757 // incorrect.
5858
59- UFUNCTION (BlueprintPure)
59+ UFUNCTION (BlueprintPure, Category = " Rive|Data Binding " )
6060 bool GetBoolValue (const FString& PropertyName, bool & OutValue) const ;
61- UFUNCTION (BlueprintPure)
61+ UFUNCTION (BlueprintPure, Category = " Rive|Data Binding " )
6262 bool GetColorValue (const FString& PropertyName,
6363 FLinearColor& OutColor) const ;
64- UFUNCTION (BlueprintPure)
64+ UFUNCTION (BlueprintPure, Category = " Rive|Data Binding " )
6565 bool GetStringValue (const FString& PropertyName, FString& OutString) const ;
66- UFUNCTION (BlueprintPure)
66+ UFUNCTION (BlueprintPure, Category = " Rive|Data Binding " )
6767 bool GetEnumValue (const FString& PropertyName, FString& EnumValue) const ;
68- UFUNCTION (BlueprintPure)
68+ UFUNCTION (BlueprintPure, Category = " Rive|Data Binding " )
6969 bool GetNumberValue (const FString& PropertyName, float & OutNumber) const ;
70- UFUNCTION (BlueprintPure)
70+ UFUNCTION (BlueprintPure, Category = " Rive|Data Binding " )
7171 bool GetListSize (const FString& PropertyName, int32& OutSize) const ;
72- UFUNCTION (BlueprintPure)
72+ UFUNCTION (BlueprintPure, Category = " Rive|Data Binding " )
7373 bool ContainsListsByName (const FString& ListName) const ;
74- UFUNCTION (BlueprintPure)
74+ UFUNCTION (BlueprintPure, Category = " Rive|Data Binding " )
7575 // This is a copy that you get. So do not expect to be able to modify the
7676 // list value here.
7777 bool GetListByName (const FString ListName, FRiveList& OutList) const ;
78- UFUNCTION (BlueprintPure)
78+ UFUNCTION (BlueprintPure, Category = " Rive|Data Binding " )
7979 bool ContainsLists (FRiveList InList) const ;
80- UFUNCTION (BlueprintCallable)
80+ UFUNCTION (BlueprintCallable, Category = " Rive|Data Binding " )
8181 bool SetBoolValue (const FString& PropertyName, bool InValue);
82- UFUNCTION (BlueprintCallable)
82+ UFUNCTION (BlueprintCallable, Category = " Rive|Data Binding " )
8383 bool SetColorValue (const FString& PropertyName, FLinearColor InColor);
84- UFUNCTION (BlueprintCallable)
84+ UFUNCTION (BlueprintCallable, Category = " Rive|Data Binding " )
8585 bool SetStringValue (const FString& PropertyName, const FString& InString);
86- UFUNCTION (BlueprintCallable)
86+ UFUNCTION (BlueprintCallable, Category = " Rive|Data Binding " )
8787 bool SetEnumValue (const FString& PropertyName, const FString& InEnumValue);
88- UFUNCTION (BlueprintCallable)
88+ UFUNCTION (BlueprintCallable, Category = " Rive|Data Binding " )
8989 bool SetNumberValue (const FString& PropertyName, float InNumber);
90- UFUNCTION (BlueprintCallable)
90+ UFUNCTION (BlueprintCallable, Category = " Rive|Data Binding " )
9191 bool SetImageValue (const FString& PropertyName, UTexture* InImage);
92- UFUNCTION (BlueprintCallable)
92+ UFUNCTION (BlueprintCallable, Category = " Rive|Data Binding " )
9393 bool SetArtboardValue (const FString& PropertyName,
9494 URiveArtboard* InArtboard);
95- UFUNCTION (BlueprintCallable)
95+ UFUNCTION (BlueprintCallable, Category = " Rive|Data Binding " )
9696 bool SetViewModelValue (const FString& PropertyName,
9797 URiveViewModel* InViewModel);
98- UFUNCTION (BlueprintCallable)
98+ UFUNCTION (BlueprintCallable, Category = " Rive|Data Binding " )
9999 bool AppendToList (const FString& ListName, URiveViewModel* Value);
100- UFUNCTION (BlueprintCallable)
100+ UFUNCTION (BlueprintCallable, Category = " Rive|Data Binding " )
101101 bool InsertToList (const FString& ListName,
102102 int32 Index,
103103 URiveViewModel* Value);
104104
105- UFUNCTION (BlueprintCallable)
105+ UFUNCTION (BlueprintCallable, Category = " Rive|Data Binding " )
106106 bool RemoveFromList (const FString& ListName, URiveViewModel* Value);
107107
108- UFUNCTION (BlueprintCallable)
108+ UFUNCTION (BlueprintCallable, Category = " Rive|Data Binding " )
109109 bool RemoveFromListAtIndex (const FString& ListName, int32 Index);
110110
111111 UFUNCTION (BlueprintCallable,
@@ -125,25 +125,25 @@ class RIVE_API URiveViewModel : public UObject, public INotifyFieldValueChanged
125125 FFieldValueChangedDynamicDelegate Delegate);
126126
127127 UFUNCTION (BlueprintCallable,
128- Category = " Lists" ,
128+ Category = " Rive|Data Binding| Lists" ,
129129 meta = (DisplayName = " Append View Model At End Of List" ,
130130 ScriptName = " AppendToList" ))
131131 void K2_AppendToList (FRiveList List, URiveViewModel* Value);
132132
133133 UFUNCTION (BlueprintCallable,
134- Category = " Lists" ,
134+ Category = " Rive|Data Binding| Lists" ,
135135 meta = (DisplayName = " Insert View Model Into List" ,
136136 ScriptName = " InsertToList" ))
137137 void K2_InsertToList (FRiveList List, int32 Index, URiveViewModel* Value);
138138
139139 UFUNCTION (BlueprintCallable,
140- Category = " Lists" ,
140+ Category = " Rive|Data Binding| Lists" ,
141141 meta = (DisplayName = " Remove View Model From List" ,
142142 ScriptName = " RemoveFromList" ))
143143 void K2_RemoveFromList (FRiveList List, URiveViewModel* Value);
144144
145145 UFUNCTION (BlueprintCallable,
146- Category = " Lists" ,
146+ Category = " Rive|Data Binding| Lists" ,
147147 meta = (DisplayName = " Remove View Model From List At Index" ,
148148 ScriptName = " RemoveFromListAtIndex" ))
149149 void K2_RemoveFromListAtIndex (FRiveList List, int32 Index);
0 commit comments