Exemple #1
0
 /**
  * Callback when opening a node (called by BaseNode).
  * @method _openNode
  * @param {Object} node The node that called this method.
  * @protected
  **/
 public void _openNode(BaseNode node)
 {
     // TODO: call debug here
 }
Exemple #2
0
 /**
  * Callback when ticking a node (called by BaseNode).
  * @method _tickNode
  * @param {Object} node The node that called this method.
  * @protected
  **/
 public void _tickNode(BaseNode node)
 {
     // TODO: call debug here
 }
Exemple #3
0
 /**
  * Callback when exiting a node (called by BaseNode).
  * @method _exitNode
  * @param {Object} node The node that called this method.
  * @protected
  **/
 public void _exitNode(BaseNode node)
 {
     // TODO: call debug here
 }