‪Black Ops 3 Source Code Explorer  0.1
‪An script explorer for Black Ops 3 by ZeRoY
behavior_tree.gsh
Go to the documentation of this file.
1 
2 // return status for BehaviorTreeNodes tick functions - BHTN_STATUS, order is important, BHTN_RUNNING needs to be highest
3 
4 #define BHTN_INVALID 0
5 #define BHTN_TERMINATE 1
6 #define BHTN_TERMINATED 2
7 #define BHTN_FAILURE 3
8 #define BHTN_SUCCESS 4
9 #define BHTN_RUNNING 5
10 
11 #define BHTN_UPDATE_FREQUENCY 0.05
12 
13 #define BHTN_ACTION_START "bhtn_action_start"
14 #define BHTN_ACTION_UPDATE "bhtn_action_update"
15 #define BHTN_ACTION_TERMINATE "bhtn_action_terminate"
16 
17