You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Remove a specific node
scene.remove('frank');
// Remove all actors with an x-value greater than 10
scene.remove(function(a) {return a.properties.x > 10); });
// Replace a certain actor with another one
scene.replace('frank', new uv.Label({text: 'John'});
The text was updated successfully, but these errors were encountered:
E.g.
The text was updated successfully, but these errors were encountered: