‪Black Ops 3 Source Code Explorer  0.1
‪An script explorer for Black Ops 3 by ZeRoY
animation_selector_table.gsc
Go to the documentation of this file.
1 #namespace AnimationSelectorTable;
2 
3 function ‪RegisterAnimationSelectorTableEvaluator( functionName, functionPtr )
4 {
5  if ( !IsDefined( level._astevaluatorscriptfunctions ) )
6  {
7  level._astevaluatorscriptfunctions = [];
8  }
9 
10  functionName = ToLower( functionName );
11 
12  Assert( IsDefined( functionName ) && IsDefined( functionPtr ) );
13  Assert( !IsDefined( level._astevaluatorscriptfunctions[functionName] ) );
14 
15  level._astevaluatorscriptfunctions[functionName] = functionPtr;
16 }
‪RegisterAnimationSelectorTableEvaluator
‪function RegisterAnimationSelectorTableEvaluator(functionName, functionPtr)
Definition: animation_selector_table.gsc:3