-
Notifications
You must be signed in to change notification settings - Fork 71
/
node-config.b3-setting
408 lines (408 loc) · 8.88 KB
/
node-config.b3-setting
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
[
{
"name": "AlwaysFail",
"type": "Decorator",
"desc": "始终返回失败",
"doc": "+ 只能有一个子节点,多个仅执行第一个\n+ 不管子节点是否成功都返回`失败`"
},
{
"name": "AlwaysSuccess",
"type": "Decorator",
"desc": "始终返回成功",
"doc": "+ 只能有一个子节点,多个仅执行第一个\n+ 不管子节点是否成功都返回`成功`"
},
{
"name": "Check",
"type": "Condition",
"desc": "检查True或False",
"args": [
{
"name": "value",
"type": "code",
"desc": "值"
}
],
"doc": "+ 做简单数值公式判定,返回「成功」或「失败」"
},
{
"name": "Clear",
"type": "Action",
"desc": "清除变量",
"output": [
"清除的变量名"
]
},
{
"name": "ForEach",
"type": "Composite",
"desc": "遍历数组",
"input": [
"数组"
],
"output": [
"变量"
],
"doc": "+ 每次执行子节点前会设置当前遍历到的变量\n+ 会执行所有子节点\n+ 永远返回「成功」/「运行中」"
},
{
"name": "Inverter",
"type": "Decorator",
"desc": "反转子节点运行结果",
"doc": "+ 只能有一个子节点,多个仅执行第一个\n+ 当子节点返回「成功」时返回「失败」\n+ 当子节点返回「失败」时返回「成功」\n+ 其余返回「运行中」"
},
{
"name": "IsNull",
"type": "Condition",
"desc": "判断变量是否不存在",
"input": [
"判断的变量"
]
},
{
"name": "Listen",
"type": "Decorator",
"desc": "侦听行为树事件",
"args": [
{
"name": "builtin",
"type": "enum",
"desc": "事件",
"options": [
{
"name": "行为树被中断",
"value": "interrupted"
},
{
"name": "行为树开始执行前",
"value": "beforeRun"
},
{
"name": "行为树执行完成后",
"value": "afterRun"
},
{
"name": "行为树执行成功后",
"value": "afterRunSuccess"
},
{
"name": "行为树执行失败后",
"value": "afterRunFailure"
}
]
},
{
"name": "event",
"type": "string?",
"desc": "自定义事件"
}
],
"doc": "+ 当事件触发时,执行第一个子节点,多个仅执行第一个\n+ 如果子节点返回 「运行中」,会中断执行并清理执行栈"
},
{
"name": "Log",
"type": "Action",
"desc": "打印日志",
"args": [
{
"name": "message",
"type": "string",
"desc": "日志"
}
]
},
{
"name": "Loop",
"type": "Composite",
"desc": "循环执行",
"input": [
"循环次数?"
],
"args": [
{
"name": "count",
"type": "int",
"desc": "循环次数"
}
]
},
{
"name": "NotNull",
"type": "Condition",
"desc": "判断变量是否存在",
"input": [
"判断的变量"
]
},
{
"name": "Now",
"type": "Action",
"desc": "获取当前时间",
"output": [
"当前时间"
]
},
{
"name": "Once",
"type": "Decorator",
"desc": "只执行一次",
"doc": "+ 只能有一个子节点,多个仅执行第一个\n+ 被打断后该节点后的子节点依旧不会执行\n+ 该节点执行后永远返回「成功」"
},
{
"name": "Parallel",
"type": "Composite",
"desc": "并行执行",
"doc": "执行所有子节点并返回「成功」/「运行中」"
},
{
"name": "RepeatUntilFailure",
"type": "Decorator",
"desc": "一直尝试直到子节点返回失败",
"input": [
"最大循环次数?"
],
"args": [
{
"name": "maxLoop",
"type": "int?",
"desc": "最大循环次数"
}
],
"doc": "+ 只能有一个子节点,多个仅执行第一个\n+ 只有当子节点返回「失败」时,才返回「成功」,其它情况返回「运行中」状态\n+ 如果设定了尝试次数,超过指定次数则返回「失败」"
},
{
"name": "RepeatUntilSuccess",
"type": "Decorator",
"desc": "一直尝试直到子节点返回成功",
"input": [
"最大循环次数?"
],
"args": [
{
"name": "maxLoop",
"type": "int?",
"desc": "最大循环次数"
}
],
"doc": "+ 只能有一个子节点,多个仅执行第一个\n+ 只有当子节点返回「成功」时,才返回「成功」,其它情况返回「运行中」状态\n+ 如果设定了尝试次数,超过指定次数则返回「失败」"
},
{
"name": "Selector",
"type": "Composite",
"desc": "选择执行",
"doc": "+ 一直往下执行,有子节点返回「成功」则返回「成功」\n+ 若全部节点返回「失败」则返回「失败」\n+ 子节点是或 (OR) 的关系"
},
{
"name": "Sequence",
"type": "Composite",
"desc": "顺序执行",
"doc": "+ 一直往下执行,只有当所有子节点都返回「成功」, 才返回「成功」\n+ 子节点是与(AND)的关系"
},
{
"name": "Timeout",
"type": "Decorator",
"desc": "超时",
"args": [
{
"name": "time",
"type": "float",
"desc": "超时时间"
}
],
"doc": "+ 只能有一个子节点,多个仅执行第一个\n+ 当子节点执行超时或返回「失败」时,返回「失败」\n+ 其余情况返回子节点的执行状态\n"
},
{
"name": "Wait",
"type": "Action",
"desc": "等待",
"input": [
"等待时间?"
],
"args": [
{
"name": "time",
"type": "float",
"desc": "等待时间"
},
{
"name": "random",
"type": "float?",
"desc": "随机范围"
}
]
},
{
"name": "Attack",
"type": "Action",
"input": [
"{目标}"
],
"desc": "攻击"
},
{
"name": "Cmp",
"type": "Condition",
"icon": "icons/cmp.svg",
"doc": "+ 若值为空,返回失败\n+ 非整数类型可能会报错\n",
"input": [
"值(int)"
],
"args": [
{
"name": "value",
"desc": "值",
"type": "code?"
},
{
"name": "gt",
"desc": ">",
"type": "int?"
},
{
"name": "ge",
"desc": ">=",
"type": "int?"
},
{
"name": "eq",
"desc": "==",
"type": "int?"
},
{
"name": "le",
"desc": "<=",
"type": "int?"
},
{
"name": "lt",
"desc": "<",
"type": "int?"
}
],
"desc": "比较值大小"
},
{
"name": "FindEnemy",
"output": [
"目标单位"
],
"type": "Condition",
"doc": "+ 没找到返回失败\n",
"args": [
{
"name": "x",
"desc": "x",
"type": "int?"
},
{
"name": "y",
"desc": "y",
"type": "int?"
},
{
"name": "w",
"desc": "宽",
"type": "int?"
},
{
"name": "h",
"desc": "高",
"type": "int?"
},
{
"name": "count",
"desc": "查找上限",
"type": "string?"
}
],
"desc": "查找敌人"
},
{
"name": "GetHp",
"output": [
"生命值"
],
"type": "Action",
"desc": "获取生命值"
},
{
"name": "Idle",
"type": "Action",
"desc": "待机"
},
{
"name": "MoveToPos",
"type": "Action (Client)",
"args": [
{
"name": "x",
"desc": "x",
"type": "int"
},
{
"name": "y",
"desc": "y",
"type": "int"
}
],
"desc": "移动到坐标"
},
{
"name": "MoveToTarget",
"type": "Action (Server)",
"input": [
"{目标}"
],
"desc": "移动到目标"
},
{
"name": "TestB3",
"type": "Action",
"args": [
{
"name": "time",
"desc": "时间",
"type": "int"
},
{
"name": "random",
"desc": "随机",
"type": "float?"
},
{
"name": "open",
"desc": "打开来",
"type": "boolean"
},
{
"name": "check",
"desc": "检查",
"type": "code"
},
{
"name": "name",
"desc": "检查",
"type": "string"
},
{
"name": "status",
"desc": "状态",
"type": "enum",
"options": [
{
"name": "成功",
"value": "SUCCESS"
},
{
"name": "失败",
"value": "FAILURE"
},
{
"name": "运行中",
"value": "RUNNING"
}
]
}
],
"desc": "等待"
}
]