Creates a new Dispersion property for use on a Material.
Disables and removes the extension from the Document.
Indicates to the client whether it is OK to load the asset when this extension is not recognized. Optional extensions are generally preferred, if there is not a good reason to require a client to completely fail when an extension isn't known.
Lists all ExtensionProperty instances associated with, or created by, this extension. Includes only instances that are attached to the Document's graph; detached instances will be excluded.
Indicates to the client whether it is OK to load the asset when this extension is not recognized. Optional extensions are generally preferred, if there is not a good reason to require a client to completely fail when an extension isn't known.
Made by Don McCurdy. Documentation built with greendoc and published under Creative Commons Attribution 3.0.
KHR_materials_dispersion defines dispersion on a glTF PBR material.
Dispersion enables configuring the strength of the angular separation of colors (chromatic aberration) transmitting through a relatively clear volume. It is an enhancement to the default
KHR_materials_volume
transmission model which assumes no dispersion.Properties:
Example
import { KHRMaterialsDispersion, Dispersion } from '@gltf-transform/extensions'; // Create an Extension attached to the Document. const dispersionExtension = document.createExtension(KHRMaterialsDispersion); // Create Dispersion property. const dispersion = dispersionExtension.createDispersion().setDispersion(1.0); // Assign to a Material. material.setExtension('KHR_materials_dispersion', dispersion);