@spiffcommerce/preview 2.1.34 → 2.1.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/types.d.ts +5 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -167,6 +167,11 @@ export type ThreeDPreviewService = {
|
|
|
167
167
|
* Given a list of material names, highlights the associated meshes in the scene.
|
|
168
168
|
*/
|
|
169
169
|
setHighlights(materials: readonly MaterialHandle[], color?: readonly [number, number, number]): void;
|
|
170
|
+
/**
|
|
171
|
+
* Sets the rendering pipeline configuration for the scene.
|
|
172
|
+
* @param renderingPipelineConfig The configuration to apply. Existing values will not be overwritten if not provided.
|
|
173
|
+
*/
|
|
174
|
+
setRenderingPipelineConfig(renderingPipelineConfig: RenderingPipelineConfiguration): void;
|
|
170
175
|
};
|
|
171
176
|
/**
|
|
172
177
|
* Represents a service capable of managing and returning contexts that
|
package/package.json
CHANGED