Jamie Villeneuve
Articles
-
Validator Test Results View
The Validator Test Results view can be used to compare results from different test runs to the reference results. The view is located in the center of the perspective at the bottom. Here is how it...
-
gre.SCRIPT
The argument passed to Storyboard if an entry script was specified with -olua,script=[file]
-
sbio_destroy_channel
int sbio_destroy_channel( sbio_channel_handle_t *handle); Destroys a Storyboard IO channel. Parameters sbio_channel_handle_t A pointer to an sbio_channel_handle_t for the chann...
-
gre_io_grow_buffer
void gre_io_grow_buffer( gre_io_t* handle, gre_io_serialized_data_t * buffer ) This function attempts to expand the internal capacity of the Storyboard...
-
canvas.fill
canvas.fill(color) Flood fill the entire canvas with a specific color. Parameters: color An RGB color value as an integer value. Example: //Flood fill the canvas with a red background ...
-
sb.animationCreateTween
gre.animationCreateTween(name, tweenCallback) Create a new animation tweening (interpolation) function that can be used by both JavaScript and Animation Timeline animations. The name of the tweeni...
-
Recording Tests Using Validator
When the record new test button is selected from the test view. The test recorder will launch your application with recording enabled. This will be reflected by Storyboard Engine by showing a red...
-
sbio_rem_event_callback
int sbio_rem_event_callback( sbio_channel_handle_t *handle, sbio_event_callback_t callback_function, void *user_data); Removes a callback from a receive channel Parameter...
-
canvas.fillArc
canvas.fill_arc(x, y, radius_x, radius_y, start, end, rotation, color) Draw a filled arc defined by the center position (x,y), with x radius radius_x, y radius radius_y, start and end angles (star...
-
sb.animationDestroy
sb.animationDestroy(id) Destroy the animation associated with id. Parameters: id The animation to destroy Example: function create_animation(context) { var data = {}; // s...