We can remove the necessity for the consumer to call render() after updating public props. This way the lib can decide what type of update is needed.
Outline
Whenever a prop is changed, we queue the change.
Every tick, the queue is read and processed and emptied.
Update types
We can remove the necessity for the consumer to call
render()after updating public props. This way the lib can decide what type of update is needed.Outline
Whenever a prop is changed, we queue the change.
Every tick, the queue is read and processed and emptied.
Update types
scene changes can be done immediately w/o requiring the model to be rerendered. Examples:
incremental parsing
full render of the model