‪Black Ops 3 Source Code Explorer  0.1
‪An script explorer for Black Ops 3 by ZeRoY
behave.gsc
Go to the documentation of this file.
1 // EMPTY ANIMSCRIPT AS WE DO NOT NEED AI TO RUN ANYTHING HERE
2 
3 function ‪main()
4 {
5 
6 }
7 
8 function ‪end_script()
9 {
10  // This callback will be called when AI will change states from AIS_BEHAVE to AIS_SCRIPTED
11  // i.e when it will go from behavior state to animscripted state
12 
13  if( IsDefined( self.___ArchetypeOnAnimscriptedCallback ) )
14  [[self.___ArchetypeOnAnimscriptedCallback]]( self );
15 }
‪main
‪function main()
Definition: behave.gsc:3
‪end_script
‪function end_script()
Definition: behave.gsc:8