main method

bool main(
  1. dynamic func,
  2. ClipParam childParam,
  3. ParamInteger step,
  4. ParamInteger err,
  5. ParamInteger ret,
)

Implementation

bool main( dynamic func, ClipParam childParam, ParamInteger step, ParamInteger err, ParamInteger ret ){
	if( func is ClipFuncData ){
		return _procMainCache[step.val()]( this, func, childParam, step, err, ret );
	}
	return _procMain[step.val()]( this, func, childParam, step, err, ret );
}