Removes properties from the file if they are not referenced by a Scene. Commonly helpful for cleaning up after other operations, e.g. allowing a node to be detached and any unused meshes, materials, or other resources to be removed automatically.
Example:
document.getRoot().listMaterials(); // → [Material, Material] await document.transform(prune()); document.getRoot().listMaterials(); // → [Material]
No options are currently implemented for this function.
Made by Don McCurdy. Documentation built with greendoc and published under Creative Commons Attribution 3.0.
Removes properties from the file if they are not referenced by a Scene. Commonly helpful for cleaning up after other operations, e.g. allowing a node to be detached and any unused meshes, materials, or other resources to be removed automatically.
Example:
No options are currently implemented for this function.