We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4e7461 commit 854e47aCopy full SHA for 854e47a
1 file changed
README.md
@@ -129,13 +129,14 @@ Custom conditions can be crafted with the following API.
129
```c#
130
using CleverCrow.Fluid.Dialogues;
131
using CleverCrow.Fluid.Dialogues.Conditions;
132
+using CleverCrow.Fluid.Dialogues.Nodes;
133
134
public class CustomCondition : ConditionDataBase {
135
public override void OnInit (IDialogueController dialogue) {
136
// Triggered on first time setup
137
}
138
- public override bool OnGetIsValid () {
139
+ public override bool OnGetIsValid (INode parent) {
140
// Place node condition logic here
141
return true;
142
0 commit comments