proto3 initial commit

This commit is contained in:
Segey Lapin
2020-04-13 12:45:25 +03:00
parent 69410badf6
commit 1084b6d5c3
1588 changed files with 368852 additions and 23 deletions

View File

@@ -0,0 +1,12 @@
extends BTBase
class_name BTParallel
func tick(tick: Tick) -> int:
var _result := OK #if we have no children, assume success
for child in get_children():
var x_result = child._execute(tick)
assert(typeof(x_result) == TYPE_INT)
_result = x_result
return OK