Action
Action is the base class for all action nodes. Thus, if you want to create new custom action nodes, you need to inherit from this class. For example, take a look at the Runner action:
var Runner = b3.Class(b3.Action, {
name: 'Runner',
tick: function(tick) {
return b3.RUNNING;
}
});
Methods
initialize
()
Initialization method.
Properties
category
String
Node category. Default to ACTION.
