@fps-games/editor 0.2.0-beta.4 → 0.2.1-beta.1
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/agent-bridge/capabilities/editor-state.d.ts.map +1 -1
- package/dist/agent-bridge/capabilities/editor-state.js +12 -6
- package/dist/agent-bridge/capabilities/editor-state.js.map +1 -1
- package/dist/agent-bridge/capabilities/hierarchy.d.ts +4 -0
- package/dist/agent-bridge/capabilities/hierarchy.d.ts.map +1 -0
- package/dist/agent-bridge/capabilities/hierarchy.js +209 -0
- package/dist/agent-bridge/capabilities/hierarchy.js.map +1 -0
- package/dist/agent-bridge/capabilities/prefabs.d.ts.map +1 -1
- package/dist/agent-bridge/capabilities/prefabs.js +208 -73
- package/dist/agent-bridge/capabilities/prefabs.js.map +1 -1
- package/dist/agent-bridge/capabilities/scene-objects.d.ts +3 -4
- package/dist/agent-bridge/capabilities/scene-objects.d.ts.map +1 -1
- package/dist/agent-bridge/capabilities/scene-objects.js +24 -23
- package/dist/agent-bridge/capabilities/scene-objects.js.map +1 -1
- package/dist/agent-bridge/capabilities/shadows.d.ts.map +1 -1
- package/dist/agent-bridge/capabilities/shadows.js +829 -66
- package/dist/agent-bridge/capabilities/shadows.js.map +1 -1
- package/dist/agent-bridge/capabilities/ui-regions.d.ts.map +1 -1
- package/dist/agent-bridge/capabilities/ui-regions.js +3 -1
- package/dist/agent-bridge/capabilities/ui-regions.js.map +1 -1
- package/dist/agent-bridge/capabilities/viewport.d.ts.map +1 -1
- package/dist/agent-bridge/capabilities/viewport.js +22 -9
- package/dist/agent-bridge/capabilities/viewport.js.map +1 -1
- package/dist/agent-bridge/capability-sources.d.ts.map +1 -1
- package/dist/agent-bridge/capability-sources.js +2 -0
- package/dist/agent-bridge/capability-sources.js.map +1 -1
- package/dist/agent-bridge/register.d.ts.map +1 -1
- package/dist/agent-bridge/register.js +194 -0
- package/dist/agent-bridge/register.js.map +1 -1
- package/dist/agent-bridge/shared.d.ts +231 -11
- package/dist/agent-bridge/shared.d.ts.map +1 -1
- package/dist/agent-bridge/shared.js +162 -20
- package/dist/agent-bridge/shared.js.map +1 -1
- package/dist/agent-bridge/source-types.d.ts +17 -1
- package/dist/agent-bridge/source-types.d.ts.map +1 -1
- package/dist/agent-bridge/source-types.js.map +1 -1
- package/dist/build-info.json +57 -42
- package/dist/index.d.ts +7 -6
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -3
- package/dist/index.js.map +1 -1
- package/dist/internal/babylon-preview-engine.d.ts +3 -0
- package/dist/internal/babylon-preview-engine.d.ts.map +1 -0
- package/dist/internal/babylon-preview-engine.js +11 -0
- package/dist/internal/babylon-preview-engine.js.map +1 -0
- package/dist/internal/product-local-editor-cleanup.d.ts +5 -0
- package/dist/internal/product-local-editor-cleanup.d.ts.map +1 -0
- package/dist/internal/product-local-editor-cleanup.js +20 -0
- package/dist/internal/product-local-editor-cleanup.js.map +1 -0
- package/dist/local-editor-agent-actions.d.ts +2 -4
- package/dist/local-editor-agent-actions.d.ts.map +1 -1
- package/dist/local-editor-agent-actions.js +56 -32
- package/dist/local-editor-agent-actions.js.map +1 -1
- package/dist/local-editor-agent-context.d.ts +5 -5
- package/dist/local-editor-agent-context.d.ts.map +1 -1
- package/dist/local-editor-agent-context.js.map +1 -1
- package/dist/local-editor-harness.d.ts +340 -35
- package/dist/local-editor-harness.d.ts.map +1 -1
- package/dist/local-editor-harness.js +3834 -1321
- package/dist/local-editor-harness.js.map +1 -1
- package/dist/local-editor-marker-graph.d.ts +15 -15
- package/dist/local-editor-marker-graph.d.ts.map +1 -1
- package/dist/local-editor-marker-graph.js +3 -0
- package/dist/local-editor-marker-graph.js.map +1 -1
- package/dist/local-editor-performance-stats.d.ts +3 -2
- package/dist/local-editor-performance-stats.d.ts.map +1 -1
- package/dist/local-editor-performance-stats.js.map +1 -1
- package/dist/local-editor-prefab-stage-transaction.d.ts +19 -0
- package/dist/local-editor-prefab-stage-transaction.d.ts.map +1 -0
- package/dist/local-editor-prefab-stage-transaction.js +45 -0
- package/dist/local-editor-prefab-stage-transaction.js.map +1 -0
- package/dist/local-editor-scene-view-interaction-runtime.d.ts +3 -1
- package/dist/local-editor-scene-view-interaction-runtime.d.ts.map +1 -1
- package/dist/local-editor-scene-view-interaction-runtime.js +24 -0
- package/dist/local-editor-scene-view-interaction-runtime.js.map +1 -1
- package/dist/local-editor-tools.d.ts +18 -0
- package/dist/local-editor-tools.d.ts.map +1 -0
- package/dist/local-editor-tools.js +53 -0
- package/dist/local-editor-tools.js.map +1 -0
- package/dist/playable-babylon-rendering.d.ts +9 -0
- package/dist/playable-babylon-rendering.d.ts.map +1 -1
- package/dist/playable-babylon-rendering.js +162 -6
- package/dist/playable-babylon-rendering.js.map +1 -1
- package/dist/playable-local-editor-entry.d.ts +68 -0
- package/dist/playable-local-editor-entry.d.ts.map +1 -0
- package/dist/playable-local-editor-entry.js +424 -0
- package/dist/playable-local-editor-entry.js.map +1 -0
- package/dist/playable-local-editor-host.d.ts +51 -29
- package/dist/playable-local-editor-host.d.ts.map +1 -1
- package/dist/playable-local-editor-host.js +23 -11
- package/dist/playable-local-editor-host.js.map +1 -1
- package/dist/playable-product-local-editor.d.ts +10 -12
- package/dist/playable-product-local-editor.d.ts.map +1 -1
- package/dist/playable-product-local-editor.js +178 -85
- package/dist/playable-product-local-editor.js.map +1 -1
- package/dist/playable-product-projection-preview.d.ts +4 -1
- package/dist/playable-product-projection-preview.d.ts.map +1 -1
- package/dist/playable-product-projection-preview.js +122 -5
- package/dist/playable-product-projection-preview.js.map +1 -1
- package/dist/playable-product-rendering.d.ts +12 -0
- package/dist/playable-product-rendering.d.ts.map +1 -1
- package/dist/playable-product-rendering.js +128 -6
- package/dist/playable-product-rendering.js.map +1 -1
- package/dist/playable-product-scene-capabilities.d.ts +24 -7
- package/dist/playable-product-scene-capabilities.d.ts.map +1 -1
- package/dist/playable-product-scene-capabilities.js +172 -15
- package/dist/playable-product-scene-capabilities.js.map +1 -1
- package/dist/playable-project-mode.d.ts +17 -0
- package/dist/playable-project-mode.d.ts.map +1 -0
- package/dist/playable-project-mode.js +2 -0
- package/dist/playable-project-mode.js.map +1 -0
- package/dist/playable-runtime-babylon.d.ts +3 -6
- package/dist/playable-runtime-babylon.d.ts.map +1 -1
- package/dist/playable-runtime-babylon.js +1 -5
- package/dist/playable-runtime-babylon.js.map +1 -1
- package/dist/playable-sdk.d.ts +16 -9
- package/dist/playable-sdk.d.ts.map +1 -1
- package/dist/playable-sdk.js +6 -4
- package/dist/playable-sdk.js.map +1 -1
- package/dist/playable-standard-project.d.ts +23 -14
- package/dist/playable-standard-project.d.ts.map +1 -1
- package/dist/playable-standard-project.js +53 -19
- package/dist/playable-standard-project.js.map +1 -1
- package/dist/vite-client.d.ts +4 -0
- package/node_modules/@babel/helper-string-parser/lib/index.js +0 -1
- package/node_modules/@babel/helper-validator-identifier/lib/identifier.js +0 -1
- package/node_modules/@babel/helper-validator-identifier/lib/index.js +0 -1
- package/node_modules/@babel/helper-validator-identifier/lib/keyword.js +0 -1
- package/node_modules/@babel/parser/lib/index.js +0 -1
- package/node_modules/@babel/types/lib/asserts/assertNode.js +0 -1
- package/node_modules/@babel/types/lib/asserts/generated/index.js +0 -1
- package/node_modules/@babel/types/lib/ast-types/generated/index.js +0 -1
- package/node_modules/@babel/types/lib/builders/flow/createFlowUnionType.js +0 -1
- package/node_modules/@babel/types/lib/builders/flow/createTypeAnnotationBasedOnTypeof.js +0 -1
- package/node_modules/@babel/types/lib/builders/generated/index.js +0 -1
- package/node_modules/@babel/types/lib/builders/generated/lowercase.js +0 -1
- package/node_modules/@babel/types/lib/builders/generated/uppercase.js +0 -1
- package/node_modules/@babel/types/lib/builders/productions.js +0 -1
- package/node_modules/@babel/types/lib/builders/react/buildChildren.js +0 -1
- package/node_modules/@babel/types/lib/builders/typescript/createTSUnionType.js +0 -1
- package/node_modules/@babel/types/lib/builders/validateNode.js +0 -1
- package/node_modules/@babel/types/lib/clone/clone.js +0 -1
- package/node_modules/@babel/types/lib/clone/cloneDeep.js +0 -1
- package/node_modules/@babel/types/lib/clone/cloneDeepWithoutLoc.js +0 -1
- package/node_modules/@babel/types/lib/clone/cloneNode.js +0 -1
- package/node_modules/@babel/types/lib/clone/cloneWithoutLoc.js +0 -1
- package/node_modules/@babel/types/lib/comments/addComment.js +0 -1
- package/node_modules/@babel/types/lib/comments/addComments.js +0 -1
- package/node_modules/@babel/types/lib/comments/inheritInnerComments.js +0 -1
- package/node_modules/@babel/types/lib/comments/inheritLeadingComments.js +0 -1
- package/node_modules/@babel/types/lib/comments/inheritTrailingComments.js +0 -1
- package/node_modules/@babel/types/lib/comments/inheritsComments.js +0 -1
- package/node_modules/@babel/types/lib/comments/removeComments.js +0 -1
- package/node_modules/@babel/types/lib/constants/generated/index.js +0 -1
- package/node_modules/@babel/types/lib/constants/index.js +0 -1
- package/node_modules/@babel/types/lib/converters/ensureBlock.js +0 -1
- package/node_modules/@babel/types/lib/converters/gatherSequenceExpressions.js +0 -1
- package/node_modules/@babel/types/lib/converters/toBindingIdentifierName.js +0 -1
- package/node_modules/@babel/types/lib/converters/toBlock.js +0 -1
- package/node_modules/@babel/types/lib/converters/toComputedKey.js +0 -1
- package/node_modules/@babel/types/lib/converters/toExpression.js +0 -1
- package/node_modules/@babel/types/lib/converters/toIdentifier.js +0 -1
- package/node_modules/@babel/types/lib/converters/toKeyAlias.js +0 -1
- package/node_modules/@babel/types/lib/converters/toSequenceExpression.js +0 -1
- package/node_modules/@babel/types/lib/converters/toStatement.js +0 -1
- package/node_modules/@babel/types/lib/converters/valueToNode.js +0 -1
- package/node_modules/@babel/types/lib/definitions/core.js +0 -1
- package/node_modules/@babel/types/lib/definitions/deprecated-aliases.js +0 -1
- package/node_modules/@babel/types/lib/definitions/experimental.js +0 -1
- package/node_modules/@babel/types/lib/definitions/flow.js +0 -1
- package/node_modules/@babel/types/lib/definitions/index.js +0 -1
- package/node_modules/@babel/types/lib/definitions/jsx.js +0 -1
- package/node_modules/@babel/types/lib/definitions/misc.js +0 -1
- package/node_modules/@babel/types/lib/definitions/placeholders.js +0 -1
- package/node_modules/@babel/types/lib/definitions/typescript.js +0 -1
- package/node_modules/@babel/types/lib/definitions/utils.js +0 -1
- package/node_modules/@babel/types/lib/index.js +0 -1
- package/node_modules/@babel/types/lib/modifications/appendToMemberExpression.js +0 -1
- package/node_modules/@babel/types/lib/modifications/flow/removeTypeDuplicates.js +0 -1
- package/node_modules/@babel/types/lib/modifications/inherits.js +0 -1
- package/node_modules/@babel/types/lib/modifications/prependToMemberExpression.js +0 -1
- package/node_modules/@babel/types/lib/modifications/removeProperties.js +0 -1
- package/node_modules/@babel/types/lib/modifications/removePropertiesDeep.js +0 -1
- package/node_modules/@babel/types/lib/modifications/typescript/removeTypeDuplicates.js +0 -1
- package/node_modules/@babel/types/lib/retrievers/getAssignmentIdentifiers.js +0 -1
- package/node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js +0 -1
- package/node_modules/@babel/types/lib/retrievers/getFunctionName.js +0 -1
- package/node_modules/@babel/types/lib/retrievers/getOuterBindingIdentifiers.js +0 -1
- package/node_modules/@babel/types/lib/traverse/traverse.js +0 -1
- package/node_modules/@babel/types/lib/traverse/traverseFast.js +0 -1
- package/node_modules/@babel/types/lib/utils/deprecationWarning.js +0 -1
- package/node_modules/@babel/types/lib/utils/inherit.js +0 -1
- package/node_modules/@babel/types/lib/utils/react/cleanJSXElementLiteralChild.js +0 -1
- package/node_modules/@babel/types/lib/utils/shallowEqual.js +0 -1
- package/node_modules/@babel/types/lib/validators/buildMatchMemberExpression.js +0 -1
- package/node_modules/@babel/types/lib/validators/generated/index.js +0 -1
- package/node_modules/@babel/types/lib/validators/is.js +0 -1
- package/node_modules/@babel/types/lib/validators/isBinding.js +0 -1
- package/node_modules/@babel/types/lib/validators/isBlockScoped.js +0 -1
- package/node_modules/@babel/types/lib/validators/isImmutable.js +0 -1
- package/node_modules/@babel/types/lib/validators/isLet.js +0 -1
- package/node_modules/@babel/types/lib/validators/isNode.js +0 -1
- package/node_modules/@babel/types/lib/validators/isNodesEquivalent.js +0 -1
- package/node_modules/@babel/types/lib/validators/isPlaceholderType.js +0 -1
- package/node_modules/@babel/types/lib/validators/isReferenced.js +0 -1
- package/node_modules/@babel/types/lib/validators/isScope.js +0 -1
- package/node_modules/@babel/types/lib/validators/isSpecifierDefault.js +0 -1
- package/node_modules/@babel/types/lib/validators/isType.js +0 -1
- package/node_modules/@babel/types/lib/validators/isValidES3Identifier.js +0 -1
- package/node_modules/@babel/types/lib/validators/isValidIdentifier.js +0 -1
- package/node_modules/@babel/types/lib/validators/isVar.js +0 -1
- package/node_modules/@babel/types/lib/validators/matchesPattern.js +0 -1
- package/node_modules/@babel/types/lib/validators/react/isCompatTag.js +0 -1
- package/node_modules/@babel/types/lib/validators/react/isReactComponent.js +0 -1
- package/node_modules/@babel/types/lib/validators/validate.js +0 -1
- package/node_modules/@babylonjs/loaders/BVH/bvhFileLoader.d.ts +69 -0
- package/node_modules/@babylonjs/loaders/BVH/bvhFileLoader.js +132 -0
- package/node_modules/@babylonjs/loaders/BVH/bvhFileLoader.metadata.d.ts +8 -0
- package/node_modules/@babylonjs/loaders/BVH/bvhFileLoader.metadata.js +7 -0
- package/node_modules/@babylonjs/loaders/BVH/bvhLoader.d.ts +14 -0
- package/node_modules/@babylonjs/loaders/BVH/bvhLoader.js +328 -0
- package/node_modules/@babylonjs/loaders/BVH/bvhLoadingOptions.d.ts +9 -0
- package/node_modules/@babylonjs/loaders/BVH/bvhLoadingOptions.js +1 -0
- package/node_modules/@babylonjs/loaders/BVH/index.d.ts +2 -0
- package/node_modules/@babylonjs/loaders/BVH/index.js +3 -0
- package/node_modules/@babylonjs/loaders/OBJ/index.d.ts +4 -0
- package/node_modules/@babylonjs/loaders/OBJ/index.js +4 -0
- package/node_modules/@babylonjs/loaders/OBJ/mtlFileLoader.d.ts +41 -0
- package/node_modules/@babylonjs/loaders/OBJ/mtlFileLoader.js +230 -0
- package/node_modules/@babylonjs/loaders/OBJ/objFileLoader.d.ts +136 -0
- package/node_modules/@babylonjs/loaders/OBJ/objFileLoader.js +317 -0
- package/node_modules/@babylonjs/loaders/OBJ/objFileLoader.metadata.d.ts +4 -0
- package/node_modules/@babylonjs/loaders/OBJ/objFileLoader.metadata.js +4 -0
- package/node_modules/@babylonjs/loaders/OBJ/objLoadingOptions.d.ts +47 -0
- package/node_modules/@babylonjs/loaders/OBJ/objLoadingOptions.js +1 -0
- package/node_modules/@babylonjs/loaders/OBJ/solidParser.d.ts +175 -0
- package/node_modules/@babylonjs/loaders/OBJ/solidParser.js +903 -0
- package/node_modules/@babylonjs/loaders/SPLAT/index.d.ts +2 -0
- package/node_modules/@babylonjs/loaders/SPLAT/index.js +3 -0
- package/node_modules/@babylonjs/loaders/SPLAT/sog.d.ts +84 -0
- package/node_modules/@babylonjs/loaders/SPLAT/sog.js +294 -0
- package/node_modules/@babylonjs/loaders/SPLAT/splatDefs.d.ts +26 -0
- package/node_modules/@babylonjs/loaders/SPLAT/splatDefs.js +10 -0
- package/node_modules/@babylonjs/loaders/SPLAT/splatFileLoader.d.ts +100 -0
- package/node_modules/@babylonjs/loaders/SPLAT/splatFileLoader.js +536 -0
- package/node_modules/@babylonjs/loaders/SPLAT/splatFileLoader.metadata.d.ts +20 -0
- package/node_modules/@babylonjs/loaders/SPLAT/splatFileLoader.metadata.js +15 -0
- package/node_modules/@babylonjs/loaders/SPLAT/splatLoadingOptions.d.ts +33 -0
- package/node_modules/@babylonjs/loaders/SPLAT/splatLoadingOptions.js +1 -0
- package/node_modules/@babylonjs/loaders/SPLAT/spz.d.ts +11 -0
- package/node_modules/@babylonjs/loaders/SPLAT/spz.js +168 -0
- package/node_modules/@babylonjs/loaders/STL/index.d.ts +1 -0
- package/node_modules/@babylonjs/loaders/STL/index.js +1 -0
- package/node_modules/@babylonjs/loaders/STL/stlFileLoader.d.ts +78 -0
- package/node_modules/@babylonjs/loaders/STL/stlFileLoader.js +238 -0
- package/node_modules/@babylonjs/loaders/STL/stlFileLoader.metadata.d.ts +8 -0
- package/node_modules/@babylonjs/loaders/STL/stlFileLoader.metadata.js +7 -0
- package/node_modules/@babylonjs/loaders/bvh/license.md +21 -0
- package/node_modules/@babylonjs/loaders/dynamic.d.ts +5 -0
- package/node_modules/@babylonjs/loaders/dynamic.js +56 -0
- package/node_modules/@babylonjs/loaders/glTF/1.0/glTFBinaryExtension.d.ts +16 -0
- package/node_modules/@babylonjs/loaders/glTF/1.0/glTFBinaryExtension.js +64 -0
- package/node_modules/@babylonjs/loaders/glTF/1.0/glTFLoader.d.ts +144 -0
- package/node_modules/@babylonjs/loaders/glTF/1.0/glTFLoader.js +1841 -0
- package/node_modules/@babylonjs/loaders/glTF/1.0/glTFLoaderInterfaces.d.ts +412 -0
- package/node_modules/@babylonjs/loaders/glTF/1.0/glTFLoaderInterfaces.js +95 -0
- package/node_modules/@babylonjs/loaders/glTF/1.0/glTFLoaderUtils.d.ts +71 -0
- package/node_modules/@babylonjs/loaders/glTF/1.0/glTFLoaderUtils.js +254 -0
- package/node_modules/@babylonjs/loaders/glTF/1.0/glTFMaterialsCommonExtension.d.ts +13 -0
- package/node_modules/@babylonjs/loaders/glTF/1.0/glTFMaterialsCommonExtension.js +130 -0
- package/node_modules/@babylonjs/loaders/glTF/1.0/index.d.ts +5 -0
- package/node_modules/@babylonjs/loaders/glTF/1.0/index.js +5 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/EXT_lights_area.d.ts +41 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/EXT_lights_area.js +93 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/EXT_lights_ies.d.ts +41 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/EXT_lights_ies.js +83 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/EXT_lights_image_based.d.ts +48 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/EXT_lights_image_based.js +115 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/EXT_mesh_gpu_instancing.d.ts +39 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/EXT_mesh_gpu_instancing.js +94 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/EXT_meshopt_compression.d.ts +39 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/EXT_meshopt_compression.js +50 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/EXT_texture_avif.d.ts +34 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/EXT_texture_avif.js +38 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/EXT_texture_webp.d.ts +33 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/EXT_texture_webp.js +37 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/ExtrasAsMetadata.d.ts +53 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/ExtrasAsMetadata.js +73 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_animation_pointer.d.ts +47 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_animation_pointer.data.d.ts +1 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_animation_pointer.data.js +251 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_animation_pointer.js +77 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_draco_mesh_compression.d.ts +47 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_draco_mesh_compression.js +92 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_interactivity/declarationMapper.d.ts +355 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_interactivity/declarationMapper.js +1678 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_interactivity/flowGraphGLTFDataProvider.d.ts +33 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_interactivity/flowGraphGLTFDataProvider.js +19 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_interactivity/index.d.ts +3 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_interactivity/index.js +3 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_interactivity/interactivityGraphParser.d.ts +70 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_interactivity/interactivityGraphParser.js +438 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_interactivity.d.ts +38 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_interactivity.js +150 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_lights_punctual.d.ts +41 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_lights_punctual.js +91 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_anisotropy.d.ts +42 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_anisotropy.js +65 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_clearcoat.d.ts +43 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_clearcoat.js +79 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_coat.d.ts +49 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_coat.js +119 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_diffuse_roughness.d.ts +43 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_diffuse_roughness.js +58 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_diffuse_transmission.d.ts +43 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_diffuse_transmission.js +69 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_dispersion.d.ts +43 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_dispersion.js +56 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_emissive_strength.d.ts +42 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_emissive_strength.js +47 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_fuzz.d.ts +43 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_fuzz.js +77 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_ior.d.ts +46 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_ior.js +54 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_iridescence.d.ts +42 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_iridescence.js +68 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_pbrSpecularGlossiness.d.ts +42 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_pbrSpecularGlossiness.js +80 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_sheen.d.ts +43 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_sheen.js +73 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_specular.d.ts +42 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_specular.js +76 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_transmission.d.ts +42 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_transmission.js +303 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_unlit.d.ts +42 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_unlit.js +66 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_variants.d.ts +112 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_variants.js +262 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_volume.d.ts +43 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_volume.js +82 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_volume_scatter.d.ts +45 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_volume_scatter.js +109 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_mesh_quantization.d.ts +29 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_mesh_quantization.js +22 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_node_hoverability.d.ts +31 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_node_hoverability.js +189 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_node_selectability.d.ts +30 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_node_selectability.js +123 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_node_visibility.d.ts +30 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_node_visibility.js +66 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_texture_basisu.d.ts +33 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_texture_basisu.js +37 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_texture_transform.d.ts +37 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_texture_transform.js +58 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_xmp_json_ld.d.ts +39 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_xmp_json_ld.js +47 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/MSFT_audio_emitter.d.ts +56 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/MSFT_audio_emitter.js +228 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/MSFT_lod.d.ts +104 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/MSFT_lod.js +337 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/MSFT_minecraftMesh.d.ts +27 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/MSFT_minecraftMesh.js +39 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/MSFT_sRGBFactors.d.ts +27 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/MSFT_sRGBFactors.js +38 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/dynamic.d.ts +4 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/dynamic.js +212 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/gltfPathToObjectConverter.d.ts +45 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/gltfPathToObjectConverter.js +100 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/index.d.ts +43 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/index.js +44 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/objectModelMapping.d.ts +306 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/objectModelMapping.js +884 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/glTFLoader.d.ts +450 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/glTFLoader.js +2485 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/glTFLoaderAnimation.d.ts +42 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/glTFLoaderAnimation.js +79 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/glTFLoaderExtension.d.ts +165 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/glTFLoaderExtension.js +1 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/glTFLoaderExtensionRegistry.d.ts +25 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/glTFLoaderExtensionRegistry.js +32 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/glTFLoaderInterfaces.d.ts +262 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/glTFLoaderInterfaces.js +1 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/index.d.ts +8 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/index.js +9 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/materialLoadingAdapter.d.ts +364 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/materialLoadingAdapter.js +1 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/openpbrMaterialLoadingAdapter.d.ts +674 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/openpbrMaterialLoadingAdapter.js +1034 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/pbrMaterialLoadingAdapter.d.ts +705 -0
- package/node_modules/@babylonjs/loaders/glTF/2.0/pbrMaterialLoadingAdapter.js +1126 -0
- package/node_modules/@babylonjs/loaders/glTF/glTFFileLoader.d.ts +553 -0
- package/node_modules/@babylonjs/loaders/glTF/glTFFileLoader.js +998 -0
- package/node_modules/@babylonjs/loaders/glTF/glTFFileLoader.metadata.d.ts +15 -0
- package/node_modules/@babylonjs/loaders/glTF/glTFFileLoader.metadata.js +17 -0
- package/node_modules/@babylonjs/loaders/glTF/glTFValidation.d.ts +35 -0
- package/node_modules/@babylonjs/loaders/glTF/glTFValidation.js +131 -0
- package/node_modules/@babylonjs/loaders/glTF/index.d.ts +5 -0
- package/node_modules/@babylonjs/loaders/glTF/index.js +6 -0
- package/node_modules/@babylonjs/loaders/index.d.ts +6 -0
- package/node_modules/@babylonjs/loaders/index.js +7 -0
- package/node_modules/@babylonjs/loaders/legacy/legacy-bvhFileLoader.d.ts +1 -0
- package/node_modules/@babylonjs/loaders/legacy/legacy-bvhFileLoader.js +15 -0
- package/node_modules/@babylonjs/loaders/legacy/legacy-dynamic.d.ts +1 -0
- package/node_modules/@babylonjs/loaders/legacy/legacy-dynamic.js +13 -0
- package/node_modules/@babylonjs/loaders/legacy/legacy-glTF.d.ts +2 -0
- package/node_modules/@babylonjs/loaders/legacy/legacy-glTF.js +18 -0
- package/node_modules/@babylonjs/loaders/legacy/legacy-glTF1.d.ts +2 -0
- package/node_modules/@babylonjs/loaders/legacy/legacy-glTF1.js +15 -0
- package/node_modules/@babylonjs/loaders/legacy/legacy-glTF1FileLoader.d.ts +2 -0
- package/node_modules/@babylonjs/loaders/legacy/legacy-glTF1FileLoader.js +3 -0
- package/node_modules/@babylonjs/loaders/legacy/legacy-glTF2.d.ts +2 -0
- package/node_modules/@babylonjs/loaders/legacy/legacy-glTF2.js +34 -0
- package/node_modules/@babylonjs/loaders/legacy/legacy-glTF2FileLoader.d.ts +2 -0
- package/node_modules/@babylonjs/loaders/legacy/legacy-glTF2FileLoader.js +3 -0
- package/node_modules/@babylonjs/loaders/legacy/legacy-glTFFileLoader.d.ts +3 -0
- package/node_modules/@babylonjs/loaders/legacy/legacy-glTFFileLoader.js +4 -0
- package/node_modules/@babylonjs/loaders/legacy/legacy-objFileLoader.d.ts +1 -0
- package/node_modules/@babylonjs/loaders/legacy/legacy-objFileLoader.js +15 -0
- package/node_modules/@babylonjs/loaders/legacy/legacy-stlFileLoader.d.ts +1 -0
- package/node_modules/@babylonjs/loaders/legacy/legacy-stlFileLoader.js +15 -0
- package/node_modules/@babylonjs/loaders/legacy/legacy.d.ts +8 -0
- package/node_modules/@babylonjs/loaders/legacy/legacy.js +10 -0
- package/node_modules/@babylonjs/loaders/license.md +71 -0
- package/node_modules/@babylonjs/loaders/package.json +49 -0
- package/node_modules/@babylonjs/loaders/readme.md +23 -0
- package/node_modules/@fps-games/babylon-renderer/dist/game-world-plugin-lifecycle.d.ts +22 -0
- package/node_modules/@fps-games/babylon-renderer/dist/game-world-plugin-lifecycle.d.ts.map +1 -0
- package/node_modules/@fps-games/babylon-renderer/dist/game-world-plugin-lifecycle.js +187 -0
- package/node_modules/@fps-games/babylon-renderer/dist/game-world-plugin-lifecycle.js.map +1 -0
- package/node_modules/@fps-games/babylon-renderer/dist/index.d.ts +3 -0
- package/node_modules/@fps-games/babylon-renderer/dist/index.d.ts.map +1 -1
- package/node_modules/@fps-games/babylon-renderer/dist/index.js +3 -0
- package/node_modules/@fps-games/babylon-renderer/dist/index.js.map +1 -1
- package/node_modules/@fps-games/babylon-renderer/dist/material-owner-candidates.d.ts +19 -0
- package/node_modules/@fps-games/babylon-renderer/dist/material-owner-candidates.d.ts.map +1 -0
- package/node_modules/@fps-games/babylon-renderer/dist/material-owner-candidates.js +212 -0
- package/node_modules/@fps-games/babylon-renderer/dist/material-owner-candidates.js.map +1 -0
- package/node_modules/@fps-games/babylon-renderer/dist/plugin.d.ts +17 -2
- package/node_modules/@fps-games/babylon-renderer/dist/plugin.d.ts.map +1 -1
- package/node_modules/@fps-games/babylon-renderer/dist/plugin.js +192 -17
- package/node_modules/@fps-games/babylon-renderer/dist/plugin.js.map +1 -1
- package/node_modules/@fps-games/babylon-renderer/dist/post-process/babylon-default-pipeline.d.ts +2 -0
- package/node_modules/@fps-games/babylon-renderer/dist/post-process/babylon-default-pipeline.d.ts.map +1 -1
- package/node_modules/@fps-games/babylon-renderer/dist/post-process/babylon-default-pipeline.js +139 -3
- package/node_modules/@fps-games/babylon-renderer/dist/post-process/babylon-default-pipeline.js.map +1 -1
- package/node_modules/@fps-games/babylon-renderer/dist/post-process/types.d.ts +4 -0
- package/node_modules/@fps-games/babylon-renderer/dist/post-process/types.d.ts.map +1 -1
- package/node_modules/@fps-games/babylon-renderer/dist/post-process/types.js.map +1 -1
- package/node_modules/@fps-games/babylon-renderer/dist/shadows/dynamic-shadow-system.d.ts +1 -0
- package/node_modules/@fps-games/babylon-renderer/dist/shadows/dynamic-shadow-system.d.ts.map +1 -1
- package/node_modules/@fps-games/babylon-renderer/dist/shadows/dynamic-shadow-system.js +1 -0
- package/node_modules/@fps-games/babylon-renderer/dist/shadows/dynamic-shadow-system.js.map +1 -1
- package/node_modules/@fps-games/babylon-renderer/dist/shadows/shadow-generator-shaders.d.ts +14 -0
- package/node_modules/@fps-games/babylon-renderer/dist/shadows/shadow-generator-shaders.d.ts.map +1 -0
- package/node_modules/@fps-games/babylon-renderer/dist/shadows/shadow-generator-shaders.js +14 -0
- package/node_modules/@fps-games/babylon-renderer/dist/shadows/shadow-generator-shaders.js.map +1 -0
- package/node_modules/@fps-games/babylon-renderer/dist/shadows/shadow-map-experiment-depth-backend.d.ts +59 -0
- package/node_modules/@fps-games/babylon-renderer/dist/shadows/shadow-map-experiment-depth-backend.d.ts.map +1 -0
- package/node_modules/@fps-games/babylon-renderer/dist/shadows/shadow-map-experiment-depth-backend.js +725 -0
- package/node_modules/@fps-games/babylon-renderer/dist/shadows/shadow-map-experiment-depth-backend.js.map +1 -0
- package/node_modules/@fps-games/babylon-renderer/dist/shadows/shadow-map-experiment-system.d.ts +136 -0
- package/node_modules/@fps-games/babylon-renderer/dist/shadows/shadow-map-experiment-system.d.ts.map +1 -0
- package/node_modules/@fps-games/babylon-renderer/dist/shadows/shadow-map-experiment-system.js +2735 -0
- package/node_modules/@fps-games/babylon-renderer/dist/shadows/shadow-map-experiment-system.js.map +1 -0
- package/node_modules/@fps-games/babylon-renderer/package.json +7 -7
- package/node_modules/@fps-games/editor-babylon/dist/camera-controller.js +1 -1
- package/node_modules/@fps-games/editor-babylon/dist/camera-controller.js.map +1 -1
- package/node_modules/@fps-games/editor-babylon/dist/index.d.ts +2 -1
- package/node_modules/@fps-games/editor-babylon/dist/index.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-babylon/dist/index.js +2 -1
- package/node_modules/@fps-games/editor-babylon/dist/index.js.map +1 -1
- package/node_modules/@fps-games/editor-babylon/dist/main-camera-preview.d.ts +2 -0
- package/node_modules/@fps-games/editor-babylon/dist/main-camera-preview.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-babylon/dist/main-camera-preview.js +59 -6
- package/node_modules/@fps-games/editor-babylon/dist/main-camera-preview.js.map +1 -1
- package/node_modules/@fps-games/editor-babylon/dist/material-slot-source-resolver.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-babylon/dist/material-slot-source-resolver.js +81 -11
- package/node_modules/@fps-games/editor-babylon/dist/material-slot-source-resolver.js.map +1 -1
- package/node_modules/@fps-games/editor-babylon/dist/projection-asset-container-importer.js +2 -8
- package/node_modules/@fps-games/editor-babylon/dist/projection-asset-container-importer.js.map +1 -1
- package/node_modules/@fps-games/editor-babylon/dist/projection.d.ts +17 -5
- package/node_modules/@fps-games/editor-babylon/dist/projection.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-babylon/dist/projection.js +300 -362
- package/node_modules/@fps-games/editor-babylon/dist/projection.js.map +1 -1
- package/node_modules/@fps-games/editor-babylon/dist/scene-view-camera-controller.d.ts +4 -0
- package/node_modules/@fps-games/editor-babylon/dist/scene-view-camera-controller.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-babylon/dist/scene-view-camera-controller.js +76 -10
- package/node_modules/@fps-games/editor-babylon/dist/scene-view-camera-controller.js.map +1 -1
- package/node_modules/@fps-games/editor-babylon/dist/selection-identity-pass.d.ts +46 -0
- package/node_modules/@fps-games/editor-babylon/dist/selection-identity-pass.d.ts.map +1 -0
- package/node_modules/@fps-games/editor-babylon/dist/selection-identity-pass.js +304 -0
- package/node_modules/@fps-games/editor-babylon/dist/selection-identity-pass.js.map +1 -0
- package/node_modules/@fps-games/editor-babylon/dist/selection-presentation-controller.d.ts +85 -0
- package/node_modules/@fps-games/editor-babylon/dist/selection-presentation-controller.d.ts.map +1 -0
- package/node_modules/@fps-games/editor-babylon/dist/selection-presentation-controller.js +1600 -0
- package/node_modules/@fps-games/editor-babylon/dist/selection-presentation-controller.js.map +1 -0
- package/node_modules/@fps-games/editor-babylon/dist/shadow-preview-controller.d.ts +11 -3
- package/node_modules/@fps-games/editor-babylon/dist/shadow-preview-controller.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-babylon/dist/shadow-preview-controller.js +105 -15
- package/node_modules/@fps-games/editor-babylon/dist/shadow-preview-controller.js.map +1 -1
- package/node_modules/@fps-games/editor-babylon/dist/viewport-ground-projection.d.ts +25 -0
- package/node_modules/@fps-games/editor-babylon/dist/viewport-ground-projection.d.ts.map +1 -0
- package/node_modules/@fps-games/editor-babylon/dist/viewport-ground-projection.js +44 -0
- package/node_modules/@fps-games/editor-babylon/dist/viewport-ground-projection.js.map +1 -0
- package/node_modules/@fps-games/editor-babylon/package.json +6 -5
- package/node_modules/@fps-games/editor-browser/dist/index.d.ts +8 -11
- package/node_modules/@fps-games/editor-browser/dist/index.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-browser/dist/index.js +6 -9
- package/node_modules/@fps-games/editor-browser/dist/index.js.map +1 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-clipboard.d.ts +2 -0
- package/node_modules/@fps-games/editor-browser/dist/local-editor-clipboard.d.ts.map +1 -0
- package/node_modules/@fps-games/editor-browser/dist/local-editor-clipboard.js +36 -0
- package/node_modules/@fps-games/editor-browser/dist/local-editor-clipboard.js.map +1 -0
- package/node_modules/@fps-games/editor-browser/dist/local-editor-inspector-groups.d.ts +2 -0
- package/node_modules/@fps-games/editor-browser/dist/local-editor-inspector-groups.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-inspector-groups.js +17 -0
- package/node_modules/@fps-games/editor-browser/dist/local-editor-inspector-groups.js.map +1 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-asset-kind.d.ts +1 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-asset-kind.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-asset-kind.js +6 -0
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-asset-kind.js.map +1 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-context-menu.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-context-menu.js +157 -77
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-context-menu.js.map +1 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-dock-panel.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-dock-panel.js +27 -21
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-dock-panel.js.map +1 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-formal-surface-visibility.d.ts +19 -0
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-formal-surface-visibility.d.ts.map +1 -0
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-formal-surface-visibility.js +44 -0
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-formal-surface-visibility.js.map +1 -0
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-controller.d.ts +36 -6
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-controller.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-controller.js +829 -866
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-controller.js.map +1 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-drag-policy.d.ts +8 -7
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-drag-policy.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-drag-policy.js +1 -7
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-drag-policy.js.map +1 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-view-adapter.d.ts +7 -0
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-view-adapter.d.ts.map +1 -0
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-view-adapter.js +20 -0
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-view-adapter.js.map +1 -0
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-view.d.ts +6 -7
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-view.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-view.js +266 -114
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-view.js.map +1 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-icons.d.ts +1 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-icons.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-icons.js +5 -0
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-icons.js.map +1 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-input-router.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-input-router.js +3 -17
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-input-router.js.map +1 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-modal-dialog.d.ts +14 -0
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-modal-dialog.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-modal-dialog.js +44 -62
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-modal-dialog.js.map +1 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-panels.d.ts +10 -7
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-panels.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-panels.js +591 -639
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-panels.js.map +1 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-prefab-stage.d.ts +8 -36
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-prefab-stage.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-prefab-stage.js +25 -103
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-prefab-stage.js.map +1 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-primitives.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-primitives.js +29 -110
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-primitives.js.map +1 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-shared.d.ts +1 -3
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-shared.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-shared.js +6 -90
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-shared.js.map +1 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-shortcuts.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-shortcuts.js +9 -54
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-shortcuts.js.map +1 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-status-diagnostics.d.ts +16 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-status-diagnostics.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-status-diagnostics.js +44 -39
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-status-diagnostics.js.map +1 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-status-format.d.ts +4 -0
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-status-format.d.ts.map +1 -0
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-status-format.js +44 -0
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-status-format.js.map +1 -0
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-structured-drag-policy.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-structured-drag-policy.js +35 -44
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-structured-drag-policy.js.map +1 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-theme.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-theme.js +40 -24
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-theme.js.map +1 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-tooltip.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-tooltip.js +2 -20
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-tooltip.js.map +1 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-types.d.ts +52 -341
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-types.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-types.js.map +1 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-workbench.d.ts +4 -14
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-workbench.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-workbench.js +33 -119
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-workbench.js.map +1 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui.d.ts +5 -10
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui.js +595 -544
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui.js.map +1 -1
- package/node_modules/@fps-games/editor-browser/dist/plugin-contributions.d.ts +2 -3
- package/node_modules/@fps-games/editor-browser/dist/plugin-contributions.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-browser/dist/plugin-contributions.js +0 -180
- package/node_modules/@fps-games/editor-browser/dist/plugin-contributions.js.map +1 -1
- package/node_modules/@fps-games/editor-browser/dist/runtime-debug.d.ts +5 -0
- package/node_modules/@fps-games/editor-browser/dist/runtime-debug.d.ts.map +1 -0
- package/node_modules/@fps-games/editor-browser/dist/runtime-debug.js +5 -0
- package/node_modules/@fps-games/editor-browser/dist/runtime-debug.js.map +1 -0
- package/node_modules/@fps-games/editor-browser/package.json +15 -4
- package/node_modules/@fps-games/editor-core/dist/editor-diagnostic-store.d.ts +22 -0
- package/node_modules/@fps-games/editor-core/dist/editor-diagnostic-store.d.ts.map +1 -0
- package/node_modules/@fps-games/editor-core/dist/editor-diagnostic-store.js +226 -0
- package/node_modules/@fps-games/editor-core/dist/editor-diagnostic-store.js.map +1 -0
- package/node_modules/@fps-games/editor-core/dist/editor-plugin-host.d.ts +6 -1
- package/node_modules/@fps-games/editor-core/dist/editor-plugin-host.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-core/dist/editor-plugin-host.js +94 -2
- package/node_modules/@fps-games/editor-core/dist/editor-plugin-host.js.map +1 -1
- package/node_modules/@fps-games/editor-core/dist/editor-session.d.ts +24 -2
- package/node_modules/@fps-games/editor-core/dist/editor-session.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-core/dist/editor-session.js +70 -10
- package/node_modules/@fps-games/editor-core/dist/editor-session.js.map +1 -1
- package/node_modules/@fps-games/editor-core/dist/editor-tools.d.ts +112 -0
- package/node_modules/@fps-games/editor-core/dist/editor-tools.d.ts.map +1 -0
- package/node_modules/@fps-games/editor-core/dist/editor-tools.js +613 -0
- package/node_modules/@fps-games/editor-core/dist/editor-tools.js.map +1 -0
- package/node_modules/@fps-games/editor-core/dist/inspector.d.ts +46 -0
- package/node_modules/@fps-games/editor-core/dist/inspector.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-core/dist/inspector.js +62 -0
- package/node_modules/@fps-games/editor-core/dist/inspector.js.map +1 -1
- package/node_modules/@fps-games/editor-core/dist/scene-graph.d.ts +1 -0
- package/node_modules/@fps-games/editor-core/dist/scene-graph.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-core/dist/scene-graph.js.map +1 -1
- package/node_modules/@fps-games/editor-core/package.json +14 -6
- package/node_modules/@fps-games/editor-forge-play/package.json +2 -2
- package/node_modules/@fps-games/editor-playable-sdk/dist/asset-database/metadata.js +14 -3
- package/node_modules/@fps-games/editor-playable-sdk/dist/asset-database/metadata.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/asset-database/node.d.ts +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/asset-database/node.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/asset-database/node.js +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/asset-database/node.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/asset-database/registry.d.ts +14 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/asset-database/registry.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/asset-database/registry.js +49 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/asset-database/registry.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/asset-library/catalog.js +58 -2
- package/node_modules/@fps-games/editor-playable-sdk/dist/asset-library/catalog.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/asset-library/document.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/asset-library/document.js +48 -6
- package/node_modules/@fps-games/editor-playable-sdk/dist/asset-library/document.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/document/helpers.d.ts +28 -3
- package/node_modules/@fps-games/editor-playable-sdk/dist/document/helpers.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/document/helpers.js +314 -6
- package/node_modules/@fps-games/editor-playable-sdk/dist/document/helpers.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/document/index.d.ts +2 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/document/index.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/document/index.js +2 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/document/index.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/document/prefab-instance-identity.d.ts +11 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/document/prefab-instance-identity.d.ts.map +1 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/document/prefab-instance-identity.js +27 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/document/prefab-instance-identity.js.map +1 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/document/prefab-marker.d.ts +5 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/document/prefab-marker.d.ts.map +1 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/document/prefab-marker.js +285 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/document/prefab-marker.js.map +1 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/document/types.d.ts +7 -3
- package/node_modules/@fps-games/editor-playable-sdk/dist/document/types.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/document/types.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/index.d.ts +3 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/index.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/index.js +6 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/index.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/inspector/document-sections.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/inspector/document-sections.js +23 -81
- package/node_modules/@fps-games/editor-playable-sdk/dist/inspector/document-sections.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/editor-entry-manifest.d.ts +41 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/editor-entry-manifest.d.ts.map +1 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/editor-entry-manifest.js +93 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/editor-entry-manifest.js.map +1 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/editor-entry-module.d.ts +29 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/editor-entry-module.d.ts.map +1 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/editor-entry-module.js +77 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/editor-entry-module.js.map +1 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/editor-entry-performance.d.ts +51 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/editor-entry-performance.d.ts.map +1 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/editor-entry-performance.js +105 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/editor-entry-performance.js.map +1 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/editor-entry.d.ts +60 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/editor-entry.d.ts.map +1 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/editor-entry.js +287 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/editor-entry.js.map +1 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/forge-play-types.d.ts +6 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/forge-play-types.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/forge-play-types.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/forge-play.d.ts +1 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/forge-play.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/forge-play.js +53 -17
- package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/forge-play.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/host-controller.d.ts +16 -8
- package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/host-controller.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/host-controller.js +10 -6
- package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/host-controller.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/index.d.ts +5 -3
- package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/index.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/index.js +2 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/index.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/lifecycle.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/lifecycle.js +134 -66
- package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/lifecycle.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/project-asset-commands.d.ts +11 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/project-asset-commands.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/project-asset-commands.js +21 -14
- package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/project-asset-commands.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/types.d.ts +17 -9
- package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/types.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/types.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/mutation/field-patch.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/mutation/field-patch.js +20 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/mutation/field-patch.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/mutation/reducer.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/mutation/reducer.js +49 -10
- package/node_modules/@fps-games/editor-playable-sdk/dist/mutation/reducer.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/package-resolution/aliases.d.ts +2 -2
- package/node_modules/@fps-games/editor-playable-sdk/dist/package-resolution/aliases.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/package-resolution/aliases.js +18 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/package-resolution/aliases.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/prefab-stage/action-patches.d.ts +7 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/prefab-stage/action-patches.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/prefab-stage/action-patches.js +130 -20
- package/node_modules/@fps-games/editor-playable-sdk/dist/prefab-stage/action-patches.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/prefab-stage/assets.d.ts +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/prefab-stage/assets.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/prefab-stage/assets.js +12 -3
- package/node_modules/@fps-games/editor-playable-sdk/dist/prefab-stage/assets.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/prefab-stage/derived-markers.d.ts +11 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/prefab-stage/derived-markers.d.ts.map +1 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/prefab-stage/derived-markers.js +136 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/prefab-stage/derived-markers.js.map +1 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/prefab-stage/index.d.ts +1 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/prefab-stage/index.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/prefab-stage/index.js +1 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/prefab-stage/index.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/prefab-stage/projection.d.ts +36 -51
- package/node_modules/@fps-games/editor-playable-sdk/dist/prefab-stage/projection.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/prefab-stage/projection.js +40 -65
- package/node_modules/@fps-games/editor-playable-sdk/dist/prefab-stage/projection.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/prefab-stage/stage-inspector.d.ts +5 -2
- package/node_modules/@fps-games/editor-playable-sdk/dist/prefab-stage/stage-inspector.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/prefab-stage/stage-inspector.js +207 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/prefab-stage/stage-inspector.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/product/index.d.ts +1 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/product/index.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/product/index.js +3 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/product/index.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/product/project-host-services.d.ts +18 -7
- package/node_modules/@fps-games/editor-playable-sdk/dist/product/project-host-services.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/product/project-host-services.js +110 -18
- package/node_modules/@fps-games/editor-playable-sdk/dist/product/project-host-services.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/product/scene-source.d.ts +5 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/product/scene-source.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/product/scene-source.js +6 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/product/scene-source.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/product/standard-scene-assembly.d.ts +5 -2
- package/node_modules/@fps-games/editor-playable-sdk/dist/product/standard-scene-assembly.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/product/standard-scene-assembly.js +22 -2
- package/node_modules/@fps-games/editor-playable-sdk/dist/product/standard-scene-assembly.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/rendering-profile/panel.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/rendering-profile/panel.js +144 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/rendering-profile/panel.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/rendering-profile/types.d.ts +16 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/rendering-profile/types.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/rendering-profile/types.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/runtime-preview/nodes.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/runtime-preview/nodes.js +1 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/runtime-preview/nodes.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/runtime-preview/types.d.ts +2 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/runtime-preview/types.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/runtime-preview/types.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/scene-compiler/compiler.d.ts +2 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/scene-compiler/compiler.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/scene-compiler/compiler.js +241 -13
- package/node_modules/@fps-games/editor-playable-sdk/dist/scene-compiler/compiler.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/scene-compiler/index.d.ts +1 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/scene-compiler/index.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/scene-compiler/index.js +1 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/scene-compiler/index.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/scene-compiler/shadow-map-experiment-migration.d.ts +31 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/scene-compiler/shadow-map-experiment-migration.d.ts.map +1 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/scene-compiler/shadow-map-experiment-migration.js +170 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/scene-compiler/shadow-map-experiment-migration.js.map +1 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/scene-compiler/types.d.ts +153 -13
- package/node_modules/@fps-games/editor-playable-sdk/dist/scene-compiler/types.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/scene-compiler/types.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/scene-compiler/validation.d.ts +17 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/scene-compiler/validation.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/scene-compiler/validation.js +1295 -3
- package/node_modules/@fps-games/editor-playable-sdk/dist/scene-compiler/validation.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/scene-source/client.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/scene-source/client.js +14 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/scene-source/client.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/scene-source/driver.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/scene-source/driver.js +57 -34
- package/node_modules/@fps-games/editor-playable-sdk/dist/scene-source/driver.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/scene-source/protocol.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/scene-source/protocol.js +4 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/scene-source/protocol.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/scene-source/types.d.ts +4 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/scene-source/types.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/scene-source/types.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/serialized-property/inspector.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/serialized-property/inspector.js +20 -198
- package/node_modules/@fps-games/editor-playable-sdk/dist/serialized-property/inspector.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/session/hierarchy-facade.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/session/hierarchy-facade.js +5 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/session/hierarchy-facade.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/session/patches.d.ts +5 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/session/patches.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/session/patches.js +144 -8
- package/node_modules/@fps-games/editor-playable-sdk/dist/session/patches.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/session/reducer-core.d.ts +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/session/reducer-core.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/session/reducer-core.js +30 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/session/reducer-core.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/session/types.d.ts +6 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/session/types.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/session/types.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/upgrade-doctor/inspectors.js +31 -3
- package/node_modules/@fps-games/editor-playable-sdk/dist/upgrade-doctor/inspectors.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/vite/editor-scene-workflow.d.ts +5 -2
- package/node_modules/@fps-games/editor-playable-sdk/dist/vite/editor-scene-workflow.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/vite/editor-scene-workflow.js +40 -4
- package/node_modules/@fps-games/editor-playable-sdk/dist/vite/editor-scene-workflow.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/vite/plugin.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/vite/plugin.js +116 -3
- package/node_modules/@fps-games/editor-playable-sdk/dist/vite/plugin.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/vite/product-adapter.d.ts +2 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/vite/product-adapter.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/vite/product-adapter.js +1 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/vite/product-adapter.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/vite/product-asset-authoring.d.ts +17 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/vite/product-asset-authoring.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/vite/product-asset-authoring.js +50 -2
- package/node_modules/@fps-games/editor-playable-sdk/dist/vite/product-asset-authoring.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/vite/product-authoring-api.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/vite/product-authoring-api.js +7 -5
- package/node_modules/@fps-games/editor-playable-sdk/dist/vite/product-authoring-api.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/vite/product-scene-authoring.d.ts +5 -6
- package/node_modules/@fps-games/editor-playable-sdk/dist/vite/product-scene-authoring.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/vite/product-scene-authoring.js +31 -17
- package/node_modules/@fps-games/editor-playable-sdk/dist/vite/product-scene-authoring.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/vite/types.d.ts +6 -0
- package/node_modules/@fps-games/editor-playable-sdk/dist/vite/types.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/dist/vite/types.js.map +1 -1
- package/node_modules/@fps-games/editor-playable-sdk/package.json +6 -6
- package/node_modules/@fps-games/editor-protocol/dist/agent-bridge.d.ts +417 -2
- package/node_modules/@fps-games/editor-protocol/dist/agent-bridge.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-protocol/dist/agent-bridge.js +692 -2
- package/node_modules/@fps-games/editor-protocol/dist/agent-bridge.js.map +1 -1
- package/node_modules/@fps-games/editor-protocol/dist/editor-diagnostics.d.ts +55 -0
- package/node_modules/@fps-games/editor-protocol/dist/editor-diagnostics.d.ts.map +1 -0
- package/node_modules/@fps-games/editor-protocol/dist/editor-diagnostics.js +2 -0
- package/node_modules/@fps-games/editor-protocol/dist/editor-diagnostics.js.map +1 -0
- package/node_modules/@fps-games/editor-protocol/dist/index.d.ts +3 -18
- package/node_modules/@fps-games/editor-protocol/dist/index.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-protocol/dist/index.js +1 -0
- package/node_modules/@fps-games/editor-protocol/dist/index.js.map +1 -1
- package/node_modules/@fps-games/editor-protocol/package.json +2 -2
- package/node_modules/@fps-games/editor-tooling/dist/package-metadata-node.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-tooling/dist/package-metadata-node.js +5 -0
- package/node_modules/@fps-games/editor-tooling/dist/package-metadata-node.js.map +1 -1
- package/node_modules/@fps-games/editor-tooling/dist/vite.d.ts.map +1 -1
- package/node_modules/@fps-games/editor-tooling/dist/vite.js +151 -5
- package/node_modules/@fps-games/editor-tooling/dist/vite.js.map +1 -1
- package/node_modules/@fps-games/editor-tooling/package.json +3 -3
- package/node_modules/@fps-games/editor-ui/dist/editor-ui-controls.d.ts +107 -0
- package/node_modules/@fps-games/editor-ui/dist/editor-ui-controls.d.ts.map +1 -0
- package/node_modules/@fps-games/editor-ui/dist/editor-ui-controls.js +770 -0
- package/node_modules/@fps-games/editor-ui/dist/editor-ui-controls.js.map +1 -0
- package/node_modules/@fps-games/editor-ui/dist/editor-ui-layer-host.d.ts +21 -0
- package/node_modules/@fps-games/editor-ui/dist/editor-ui-layer-host.d.ts.map +1 -0
- package/node_modules/@fps-games/editor-ui/dist/editor-ui-layer-host.js +172 -0
- package/node_modules/@fps-games/editor-ui/dist/editor-ui-layer-host.js.map +1 -0
- package/node_modules/@fps-games/editor-ui/dist/editor-ui-shell.d.ts +14 -0
- package/node_modules/@fps-games/editor-ui/dist/editor-ui-shell.d.ts.map +1 -0
- package/node_modules/@fps-games/editor-ui/dist/editor-ui-shell.js +32 -0
- package/node_modules/@fps-games/editor-ui/dist/editor-ui-shell.js.map +1 -0
- package/node_modules/@fps-games/editor-ui/dist/editor-ui-theme.d.ts +3 -0
- package/node_modules/@fps-games/editor-ui/dist/editor-ui-theme.d.ts.map +1 -0
- package/node_modules/@fps-games/editor-ui/dist/editor-ui-theme.js +653 -0
- package/node_modules/@fps-games/editor-ui/dist/editor-ui-theme.js.map +1 -0
- package/node_modules/@fps-games/editor-ui/dist/gallery.d.ts +3 -0
- package/node_modules/@fps-games/editor-ui/dist/gallery.d.ts.map +1 -0
- package/node_modules/@fps-games/editor-ui/dist/gallery.js +3 -0
- package/node_modules/@fps-games/editor-ui/dist/gallery.js.map +1 -0
- package/node_modules/@fps-games/editor-ui/dist/index.d.ts +5 -0
- package/node_modules/@fps-games/editor-ui/dist/index.d.ts.map +1 -0
- package/node_modules/@fps-games/editor-ui/dist/index.js +5 -0
- package/node_modules/@fps-games/editor-ui/dist/index.js.map +1 -0
- package/node_modules/@fps-games/editor-ui/dist/inspector-property-gallery-model.d.ts +7 -0
- package/node_modules/@fps-games/editor-ui/dist/inspector-property-gallery-model.d.ts.map +1 -0
- package/node_modules/@fps-games/editor-ui/dist/inspector-property-gallery-model.js +29 -0
- package/node_modules/@fps-games/editor-ui/dist/inspector-property-gallery-model.js.map +1 -0
- package/node_modules/@fps-games/editor-ui/dist/inspector-property-gallery-styles.d.ts +2 -0
- package/node_modules/@fps-games/editor-ui/dist/inspector-property-gallery-styles.d.ts.map +1 -0
- package/node_modules/@fps-games/editor-ui/dist/inspector-property-gallery-styles.js +95 -0
- package/node_modules/@fps-games/editor-ui/dist/inspector-property-gallery-styles.js.map +1 -0
- package/node_modules/@fps-games/editor-ui/dist/inspector-property-gallery.d.ts +28 -0
- package/node_modules/@fps-games/editor-ui/dist/inspector-property-gallery.d.ts.map +1 -0
- package/node_modules/@fps-games/editor-ui/dist/inspector-property-gallery.js +387 -0
- package/node_modules/@fps-games/editor-ui/dist/inspector-property-gallery.js.map +1 -0
- package/node_modules/@fps-games/editor-ui/package.json +23 -0
- package/node_modules/@fps-games/playable-assets/package.json +1 -1
- package/node_modules/@fps-games/playable-contracts/dist/index.d.ts +1 -0
- package/node_modules/@fps-games/playable-contracts/dist/index.d.ts.map +1 -1
- package/node_modules/@fps-games/playable-contracts/dist/index.js +1 -0
- package/node_modules/@fps-games/playable-contracts/dist/index.js.map +1 -1
- package/node_modules/@fps-games/playable-contracts/dist/material-owner.d.ts +116 -0
- package/node_modules/@fps-games/playable-contracts/dist/material-owner.d.ts.map +1 -0
- package/node_modules/@fps-games/playable-contracts/dist/material-owner.js +403 -0
- package/node_modules/@fps-games/playable-contracts/dist/material-owner.js.map +1 -0
- package/node_modules/@fps-games/playable-contracts/package.json +1 -1
- package/node_modules/@fps-games/playable-rendering/dist/index.d.ts +3 -0
- package/node_modules/@fps-games/playable-rendering/dist/index.d.ts.map +1 -1
- package/node_modules/@fps-games/playable-rendering/dist/index.js +3 -0
- package/node_modules/@fps-games/playable-rendering/dist/index.js.map +1 -1
- package/node_modules/@fps-games/playable-rendering/dist/rendering-profile-validation.js +5 -25
- package/node_modules/@fps-games/playable-rendering/dist/rendering-profile-validation.js.map +1 -1
- package/node_modules/@fps-games/playable-rendering/dist/runtime.d.ts +3 -0
- package/node_modules/@fps-games/playable-rendering/dist/runtime.d.ts.map +1 -1
- package/node_modules/@fps-games/playable-rendering/dist/runtime.js +3 -0
- package/node_modules/@fps-games/playable-rendering/dist/runtime.js.map +1 -1
- package/node_modules/@fps-games/playable-rendering/dist/shadow-map-experiment-depth.d.ts +61 -0
- package/node_modules/@fps-games/playable-rendering/dist/shadow-map-experiment-depth.d.ts.map +1 -0
- package/node_modules/@fps-games/playable-rendering/dist/shadow-map-experiment-depth.js +176 -0
- package/node_modules/@fps-games/playable-rendering/dist/shadow-map-experiment-depth.js.map +1 -0
- package/node_modules/@fps-games/playable-rendering/dist/shadow-map-experiment-lifecycle.d.ts +84 -0
- package/node_modules/@fps-games/playable-rendering/dist/shadow-map-experiment-lifecycle.d.ts.map +1 -0
- package/node_modules/@fps-games/playable-rendering/dist/shadow-map-experiment-lifecycle.js +362 -0
- package/node_modules/@fps-games/playable-rendering/dist/shadow-map-experiment-lifecycle.js.map +1 -0
- package/node_modules/@fps-games/playable-rendering/dist/shadow-map-experiment.d.ts +167 -0
- package/node_modules/@fps-games/playable-rendering/dist/shadow-map-experiment.d.ts.map +1 -0
- package/node_modules/@fps-games/playable-rendering/dist/shadow-map-experiment.js +484 -0
- package/node_modules/@fps-games/playable-rendering/dist/shadow-map-experiment.js.map +1 -0
- package/node_modules/@fps-games/playable-rendering/package.json +2 -2
- package/node_modules/@fps-games/playable-runtime/dist/compiled-scene-data.d.ts +5 -0
- package/node_modules/@fps-games/playable-runtime/dist/compiled-scene-data.d.ts.map +1 -1
- package/node_modules/@fps-games/playable-runtime/dist/compiled-scene-data.js +1 -0
- package/node_modules/@fps-games/playable-runtime/dist/compiled-scene-data.js.map +1 -1
- package/node_modules/@fps-games/playable-runtime/package.json +12 -12
- package/node_modules/@fps-games/playable-runtime-data/package.json +4 -4
- package/node_modules/@fps-games/playable-scene/package.json +2 -2
- package/node_modules/@fps-games/plugin-api/package.json +1 -1
- package/node_modules/@fps-games/plugin-assets/dist/version.d.ts +1 -1
- package/node_modules/@fps-games/plugin-assets/dist/version.js +1 -1
- package/node_modules/@fps-games/plugin-assets/dist/version.js.map +1 -1
- package/node_modules/@fps-games/plugin-assets/package.json +5 -5
- package/node_modules/@fps-games/plugin-hierarchy/dist/editor.d.ts +6 -0
- package/node_modules/@fps-games/plugin-hierarchy/dist/editor.d.ts.map +1 -0
- package/node_modules/@fps-games/plugin-hierarchy/dist/editor.js +16 -0
- package/node_modules/@fps-games/plugin-hierarchy/dist/editor.js.map +1 -0
- package/node_modules/@fps-games/plugin-hierarchy/dist/integration.d.ts +7 -0
- package/node_modules/@fps-games/plugin-hierarchy/dist/integration.d.ts.map +1 -0
- package/node_modules/@fps-games/plugin-hierarchy/dist/integration.js +47 -0
- package/node_modules/@fps-games/plugin-hierarchy/dist/integration.js.map +1 -0
- package/node_modules/@fps-games/plugin-hierarchy/dist/kernel.d.ts +306 -0
- package/node_modules/@fps-games/plugin-hierarchy/dist/kernel.d.ts.map +1 -0
- package/node_modules/@fps-games/plugin-hierarchy/dist/kernel.js +1237 -0
- package/node_modules/@fps-games/plugin-hierarchy/dist/kernel.js.map +1 -0
- package/node_modules/@fps-games/plugin-hierarchy/dist/reference.d.ts +8 -0
- package/node_modules/@fps-games/plugin-hierarchy/dist/reference.d.ts.map +1 -0
- package/node_modules/@fps-games/plugin-hierarchy/dist/reference.js +32 -0
- package/node_modules/@fps-games/plugin-hierarchy/dist/reference.js.map +1 -0
- package/node_modules/@fps-games/plugin-hierarchy/dist/version.d.ts +2 -0
- package/node_modules/@fps-games/plugin-hierarchy/dist/version.d.ts.map +1 -0
- package/node_modules/@fps-games/plugin-hierarchy/dist/version.js +2 -0
- package/node_modules/@fps-games/plugin-hierarchy/dist/version.js.map +1 -0
- package/node_modules/@fps-games/plugin-hierarchy/package.json +57 -0
- package/node_modules/@fps-games/plugin-host/package.json +2 -2
- package/node_modules/@fps-games/plugin-markers/dist/version.d.ts +1 -1
- package/node_modules/@fps-games/plugin-markers/dist/version.js +1 -1
- package/node_modules/@fps-games/plugin-markers/dist/version.js.map +1 -1
- package/node_modules/@fps-games/plugin-markers/package.json +5 -5
- package/node_modules/@fps-games/plugin-materials/dist/version.d.ts +1 -1
- package/node_modules/@fps-games/plugin-materials/dist/version.js +1 -1
- package/node_modules/@fps-games/plugin-materials/dist/version.js.map +1 -1
- package/node_modules/@fps-games/plugin-materials/package.json +5 -5
- package/node_modules/@fps-games/plugin-rendering/dist/version.d.ts +1 -1
- package/node_modules/@fps-games/plugin-rendering/dist/version.js +1 -1
- package/node_modules/@fps-games/plugin-rendering/dist/version.js.map +1 -1
- package/node_modules/@fps-games/plugin-rendering/package.json +5 -5
- package/node_modules/@fps-games/plugin-scene/dist/version.d.ts +1 -1
- package/node_modules/@fps-games/plugin-scene/dist/version.js +1 -1
- package/node_modules/@fps-games/plugin-scene/dist/version.js.map +1 -1
- package/node_modules/@fps-games/plugin-scene/package.json +5 -5
- package/node_modules/@fps-games/plugin-shadow-map-experiment/dist/reference.d.ts +8 -0
- package/node_modules/@fps-games/plugin-shadow-map-experiment/dist/reference.d.ts.map +1 -0
- package/node_modules/@fps-games/plugin-shadow-map-experiment/dist/reference.js +35 -0
- package/node_modules/@fps-games/plugin-shadow-map-experiment/dist/reference.js.map +1 -0
- package/node_modules/@fps-games/plugin-shadow-map-experiment/dist/runtime.d.ts +11 -0
- package/node_modules/@fps-games/plugin-shadow-map-experiment/dist/runtime.d.ts.map +1 -0
- package/node_modules/@fps-games/plugin-shadow-map-experiment/dist/runtime.js +14 -0
- package/node_modules/@fps-games/plugin-shadow-map-experiment/dist/runtime.js.map +1 -0
- package/node_modules/@fps-games/plugin-shadow-map-experiment/dist/version.d.ts +2 -0
- package/node_modules/@fps-games/plugin-shadow-map-experiment/dist/version.d.ts.map +1 -0
- package/node_modules/@fps-games/plugin-shadow-map-experiment/dist/version.js +2 -0
- package/node_modules/@fps-games/plugin-shadow-map-experiment/dist/version.js.map +1 -0
- package/node_modules/@fps-games/plugin-shadow-map-experiment/package.json +53 -0
- package/node_modules/@fps-games/plugin-shadows/dist/version.d.ts +1 -1
- package/node_modules/@fps-games/plugin-shadows/dist/version.js +1 -1
- package/node_modules/@fps-games/plugin-shadows/dist/version.js.map +1 -1
- package/node_modules/@fps-games/plugin-shadows/package.json +7 -7
- package/node_modules/@playcanvas/observer/LICENSE +19 -0
- package/node_modules/@playcanvas/observer/README.md +72 -0
- package/node_modules/@playcanvas/observer/dist/index.cjs +2033 -0
- package/node_modules/@playcanvas/observer/dist/index.js +2039 -0
- package/node_modules/@playcanvas/observer/dist/index.mjs +2026 -0
- package/node_modules/@playcanvas/observer/package.json +78 -0
- package/node_modules/@playcanvas/observer/types/event-handle.d.ts +41 -0
- package/node_modules/@playcanvas/observer/types/events.d.ts +162 -0
- package/node_modules/@playcanvas/observer/types/history.d.ts +123 -0
- package/node_modules/@playcanvas/observer/types/index.d.ts +15 -0
- package/node_modules/@playcanvas/observer/types/observer-history.d.ts +32 -0
- package/node_modules/@playcanvas/observer/types/observer-list.d.ts +39 -0
- package/node_modules/@playcanvas/observer/types/observer.d.ts +157 -0
- package/node_modules/@playcanvas/observer/types/utils.d.ts +33 -0
- package/node_modules/@playcanvas/pcui/LICENSE +19 -0
- package/node_modules/@playcanvas/pcui/README.md +164 -0
- package/node_modules/@playcanvas/pcui/dist/module/node_modules/playcanvas/build/playcanvas/src/core/math/constants.mjs +6 -0
- package/node_modules/@playcanvas/pcui/dist/module/node_modules/playcanvas/build/playcanvas/src/core/math/curve-evaluator.mjs +119 -0
- package/node_modules/@playcanvas/pcui/dist/module/node_modules/playcanvas/build/playcanvas/src/core/math/curve-set.mjs +82 -0
- package/node_modules/@playcanvas/pcui/dist/module/node_modules/playcanvas/build/playcanvas/src/core/math/curve.mjs +92 -0
- package/node_modules/@playcanvas/pcui/dist/module/node_modules/playcanvas/build/playcanvas/src/core/math/math.mjs +105 -0
- package/node_modules/@playcanvas/pcui/dist/module/src/Math/color-value.mjs +77 -0
- package/node_modules/@playcanvas/pcui/dist/module/src/binding/BindingBase/index.mjs +215 -0
- package/node_modules/@playcanvas/pcui/dist/module/src/binding/BindingElementToObservers/index.mjs +297 -0
- package/node_modules/@playcanvas/pcui/dist/module/src/binding/BindingObserversToElement/index.mjs +110 -0
- package/node_modules/@playcanvas/pcui/dist/module/src/binding/BindingTwoWay/index.mjs +113 -0
- package/node_modules/@playcanvas/pcui/dist/module/src/class.mjs +19 -0
- package/node_modules/@playcanvas/pcui/dist/module/src/components/ArrayInput/index.mjs +498 -0
- package/node_modules/@playcanvas/pcui/dist/module/src/components/BooleanInput/index.mjs +122 -0
- package/node_modules/@playcanvas/pcui/dist/module/src/components/Button/index.mjs +119 -0
- package/node_modules/@playcanvas/pcui/dist/module/src/components/Canvas/index.mjs +104 -0
- package/node_modules/@playcanvas/pcui/dist/module/src/components/Code/index.mjs +43 -0
- package/node_modules/@playcanvas/pcui/dist/module/src/components/ColorPicker/index.mjs +619 -0
- package/node_modules/@playcanvas/pcui/dist/module/src/components/Container/index.mjs +642 -0
- package/node_modules/@playcanvas/pcui/dist/module/src/components/Divider/index.mjs +20 -0
- package/node_modules/@playcanvas/pcui/dist/module/src/components/Element/index.mjs +829 -0
- package/node_modules/@playcanvas/pcui/dist/module/src/components/GradientPicker/index.mjs +1136 -0
- package/node_modules/@playcanvas/pcui/dist/module/src/components/GridView/index.mjs +448 -0
- package/node_modules/@playcanvas/pcui/dist/module/src/components/GridViewItem/index.mjs +152 -0
- package/node_modules/@playcanvas/pcui/dist/module/src/components/InfoBox/index.mjs +90 -0
- package/node_modules/@playcanvas/pcui/dist/module/src/components/InputElement/index.mjs +186 -0
- package/node_modules/@playcanvas/pcui/dist/module/src/components/Label/index.mjs +124 -0
- package/node_modules/@playcanvas/pcui/dist/module/src/components/LabelGroup/index.mjs +74 -0
- package/node_modules/@playcanvas/pcui/dist/module/src/components/Menu/index.mjs +174 -0
- package/node_modules/@playcanvas/pcui/dist/module/src/components/MenuItem/index.mjs +223 -0
- package/node_modules/@playcanvas/pcui/dist/module/src/components/NumericInput/index.mjs +400 -0
- package/node_modules/@playcanvas/pcui/dist/module/src/components/Overlay/index.mjs +108 -0
- package/node_modules/@playcanvas/pcui/dist/module/src/components/Panel/index.mjs +400 -0
- package/node_modules/@playcanvas/pcui/dist/module/src/components/Progress/index.mjs +45 -0
- package/node_modules/@playcanvas/pcui/dist/module/src/components/RadioButton/index.mjs +113 -0
- package/node_modules/@playcanvas/pcui/dist/module/src/components/SelectInput/index.mjs +1085 -0
- package/node_modules/@playcanvas/pcui/dist/module/src/components/SliderInput/index.mjs +333 -0
- package/node_modules/@playcanvas/pcui/dist/module/src/components/Spinner/index.mjs +34 -0
- package/node_modules/@playcanvas/pcui/dist/module/src/components/TextAreaInput/index.mjs +50 -0
- package/node_modules/@playcanvas/pcui/dist/module/src/components/TextInput/index.mjs +98 -0
- package/node_modules/@playcanvas/pcui/dist/module/src/components/TreeView/index.mjs +1131 -0
- package/node_modules/@playcanvas/pcui/dist/module/src/components/TreeViewItem/index.mjs +500 -0
- package/node_modules/@playcanvas/pcui/dist/module/src/components/VectorInput/index.mjs +366 -0
- package/node_modules/@playcanvas/pcui/dist/module/src/helpers/search.mjs +194 -0
- package/node_modules/@playcanvas/pcui/dist/module/src/helpers/utils.mjs +43 -0
- package/node_modules/@playcanvas/pcui/dist/module/src/index.mjs +56 -0
- package/node_modules/@playcanvas/pcui/dist/pcui-theme-green.scss +2798 -0
- package/node_modules/@playcanvas/pcui/dist/pcui-theme-grey.scss +2798 -0
- package/node_modules/@playcanvas/pcui/package.json +150 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/node_modules/playcanvas/build/playcanvas/src/core/math/constants.mjs +6 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/node_modules/playcanvas/build/playcanvas/src/core/math/curve-evaluator.mjs +119 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/node_modules/playcanvas/build/playcanvas/src/core/math/curve-set.mjs +82 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/node_modules/playcanvas/build/playcanvas/src/core/math/curve.mjs +92 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/node_modules/playcanvas/build/playcanvas/src/core/math/math.mjs +105 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/Math/color-value.mjs +77 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/binding/BindingBase/index.mjs +215 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/binding/BindingElementToObservers/index.mjs +297 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/binding/BindingObserversToElement/index.mjs +110 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/binding/BindingTwoWay/index.mjs +113 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/class.mjs +19 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/ArrayInput/component.mjs +11 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/ArrayInput/index.mjs +498 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/BooleanInput/component.mjs +11 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/BooleanInput/index.mjs +122 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/Button/component.mjs +16 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/Button/index.mjs +119 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/Canvas/component.mjs +16 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/Canvas/index.mjs +104 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/Code/component.mjs +11 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/Code/index.mjs +43 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/ColorPicker/component.mjs +16 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/ColorPicker/index.mjs +619 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/Container/component.mjs +36 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/Container/index.mjs +642 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/Divider/component.mjs +11 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/Divider/index.mjs +20 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/Element/component.mjs +107 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/Element/index.mjs +829 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/GradientPicker/component.mjs +16 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/GradientPicker/index.mjs +1136 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/GridView/component.mjs +38 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/GridView/index.mjs +448 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/GridViewItem/component.mjs +11 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/GridViewItem/index.mjs +152 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/InfoBox/component.mjs +16 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/InfoBox/index.mjs +90 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/InputElement/index.mjs +186 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/Label/component.mjs +16 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/Label/index.mjs +124 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/LabelGroup/component.mjs +42 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/LabelGroup/index.mjs +74 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/Menu/component.mjs +23 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/Menu/index.mjs +174 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/MenuItem/index.mjs +223 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/NumericInput/component.mjs +11 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/NumericInput/index.mjs +400 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/Overlay/component.mjs +11 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/Overlay/index.mjs +108 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/Panel/component.mjs +32 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/Panel/index.mjs +400 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/Progress/component.mjs +11 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/Progress/index.mjs +45 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/RadioButton/component.mjs +11 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/RadioButton/index.mjs +113 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/SelectInput/component.mjs +21 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/SelectInput/index.mjs +1085 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/SliderInput/component.mjs +12 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/SliderInput/index.mjs +333 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/Spinner/component.mjs +16 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/Spinner/index.mjs +34 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/TextAreaInput/component.mjs +11 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/TextAreaInput/index.mjs +50 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/TextInput/component.mjs +23 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/TextInput/index.mjs +98 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/TreeView/component.mjs +52 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/TreeView/index.mjs +1131 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/TreeViewItem/component.mjs +33 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/TreeViewItem/index.mjs +500 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/VectorInput/component.mjs +11 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/components/VectorInput/index.mjs +366 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/helpers/search.mjs +194 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/helpers/utils.mjs +43 -0
- package/node_modules/@playcanvas/pcui/react/dist/module/src/index.mjs +39 -0
- package/node_modules/@playcanvas/pcui/react/package.json +18 -0
- package/node_modules/@playcanvas/pcui/react/types/Math/color-value.d.ts +3 -0
- package/node_modules/@playcanvas/pcui/react/types/binding/BindingBase/index.d.ts +178 -0
- package/node_modules/@playcanvas/pcui/react/types/binding/BindingElementToObservers/index.d.ts +24 -0
- package/node_modules/@playcanvas/pcui/react/types/binding/BindingObserversToElement/index.d.ts +40 -0
- package/node_modules/@playcanvas/pcui/react/types/binding/BindingTwoWay/index.d.ts +54 -0
- package/node_modules/@playcanvas/pcui/react/types/binding/index.d.ts +5 -0
- package/node_modules/@playcanvas/pcui/react/types/class.d.ts +17 -0
- package/node_modules/@playcanvas/pcui/react/types/components/ArrayInput/component.d.ts +9 -0
- package/node_modules/@playcanvas/pcui/react/types/components/ArrayInput/index.d.ts +140 -0
- package/node_modules/@playcanvas/pcui/react/types/components/BooleanInput/component.d.ts +9 -0
- package/node_modules/@playcanvas/pcui/react/types/components/BooleanInput/index.d.ts +41 -0
- package/node_modules/@playcanvas/pcui/react/types/components/Button/component.d.ts +11 -0
- package/node_modules/@playcanvas/pcui/react/types/components/Button/index.d.ts +75 -0
- package/node_modules/@playcanvas/pcui/react/types/components/Canvas/component.d.ts +11 -0
- package/node_modules/@playcanvas/pcui/react/types/components/Canvas/index.d.ts +61 -0
- package/node_modules/@playcanvas/pcui/react/types/components/Code/component.d.ts +9 -0
- package/node_modules/@playcanvas/pcui/react/types/components/Code/index.d.ts +33 -0
- package/node_modules/@playcanvas/pcui/react/types/components/ColorPicker/component.d.ts +11 -0
- package/node_modules/@playcanvas/pcui/react/types/components/ColorPicker/index.d.ts +99 -0
- package/node_modules/@playcanvas/pcui/react/types/components/Container/component.d.ts +15 -0
- package/node_modules/@playcanvas/pcui/react/types/components/Container/index.d.ts +292 -0
- package/node_modules/@playcanvas/pcui/react/types/components/Divider/component.d.ts +10 -0
- package/node_modules/@playcanvas/pcui/react/types/components/Divider/index.d.ts +13 -0
- package/node_modules/@playcanvas/pcui/react/types/components/Element/component.d.ts +23 -0
- package/node_modules/@playcanvas/pcui/react/types/components/Element/index.d.ts +671 -0
- package/node_modules/@playcanvas/pcui/react/types/components/GradientPicker/component.d.ts +11 -0
- package/node_modules/@playcanvas/pcui/react/types/components/GradientPicker/index.d.ts +152 -0
- package/node_modules/@playcanvas/pcui/react/types/components/GridView/component.d.ts +14 -0
- package/node_modules/@playcanvas/pcui/react/types/components/GridView/index.d.ts +103 -0
- package/node_modules/@playcanvas/pcui/react/types/components/GridViewItem/component.d.ts +9 -0
- package/node_modules/@playcanvas/pcui/react/types/components/GridViewItem/index.d.ts +82 -0
- package/node_modules/@playcanvas/pcui/react/types/components/InfoBox/component.d.ts +11 -0
- package/node_modules/@playcanvas/pcui/react/types/components/InfoBox/index.d.ts +71 -0
- package/node_modules/@playcanvas/pcui/react/types/components/InputElement/index.d.ts +84 -0
- package/node_modules/@playcanvas/pcui/react/types/components/Label/component.d.ts +11 -0
- package/node_modules/@playcanvas/pcui/react/types/components/Label/index.d.ts +85 -0
- package/node_modules/@playcanvas/pcui/react/types/components/LabelGroup/component.d.ts +10 -0
- package/node_modules/@playcanvas/pcui/react/types/components/LabelGroup/index.d.ts +62 -0
- package/node_modules/@playcanvas/pcui/react/types/components/Menu/component.d.ts +14 -0
- package/node_modules/@playcanvas/pcui/react/types/components/Menu/index.d.ts +70 -0
- package/node_modules/@playcanvas/pcui/react/types/components/MenuItem/index.d.ts +139 -0
- package/node_modules/@playcanvas/pcui/react/types/components/NumericInput/component.d.ts +9 -0
- package/node_modules/@playcanvas/pcui/react/types/components/NumericInput/index.d.ts +173 -0
- package/node_modules/@playcanvas/pcui/react/types/components/Overlay/component.d.ts +9 -0
- package/node_modules/@playcanvas/pcui/react/types/components/Overlay/index.d.ts +53 -0
- package/node_modules/@playcanvas/pcui/react/types/components/Panel/component.d.ts +16 -0
- package/node_modules/@playcanvas/pcui/react/types/components/Panel/index.d.ts +178 -0
- package/node_modules/@playcanvas/pcui/react/types/components/Progress/component.d.ts +9 -0
- package/node_modules/@playcanvas/pcui/react/types/components/Progress/index.d.ts +33 -0
- package/node_modules/@playcanvas/pcui/react/types/components/RadioButton/component.d.ts +9 -0
- package/node_modules/@playcanvas/pcui/react/types/components/RadioButton/index.d.ts +33 -0
- package/node_modules/@playcanvas/pcui/react/types/components/SelectInput/component.d.ts +12 -0
- package/node_modules/@playcanvas/pcui/react/types/components/SelectInput/index.d.ts +278 -0
- package/node_modules/@playcanvas/pcui/react/types/components/SliderInput/component.d.ts +10 -0
- package/node_modules/@playcanvas/pcui/react/types/components/SliderInput/index.d.ts +133 -0
- package/node_modules/@playcanvas/pcui/react/types/components/Spinner/component.d.ts +11 -0
- package/node_modules/@playcanvas/pcui/react/types/components/Spinner/index.d.ts +27 -0
- package/node_modules/@playcanvas/pcui/react/types/components/TextAreaInput/component.d.ts +9 -0
- package/node_modules/@playcanvas/pcui/react/types/components/TextAreaInput/index.d.ts +24 -0
- package/node_modules/@playcanvas/pcui/react/types/components/TextInput/component.d.ts +12 -0
- package/node_modules/@playcanvas/pcui/react/types/components/TextInput/index.d.ts +40 -0
- package/node_modules/@playcanvas/pcui/react/types/components/TreeView/component.d.ts +17 -0
- package/node_modules/@playcanvas/pcui/react/types/components/TreeView/index.d.ts +359 -0
- package/node_modules/@playcanvas/pcui/react/types/components/TreeViewItem/component.d.ts +13 -0
- package/node_modules/@playcanvas/pcui/react/types/components/TreeViewItem/index.d.ts +224 -0
- package/node_modules/@playcanvas/pcui/react/types/components/VectorInput/component.d.ts +9 -0
- package/node_modules/@playcanvas/pcui/react/types/components/VectorInput/index.d.ts +176 -0
- package/node_modules/@playcanvas/pcui/react/types/components/components.d.ts +30 -0
- package/node_modules/@playcanvas/pcui/react/types/components/index.d.ts +32 -0
- package/node_modules/@playcanvas/pcui/react/types/helpers/search.d.ts +31 -0
- package/node_modules/@playcanvas/pcui/react/types/helpers/utils.d.ts +2 -0
- package/node_modules/@playcanvas/pcui/react/types/index.d.ts +4 -0
- package/node_modules/@playcanvas/pcui/styles/dist/index.mjs +11 -0
- package/node_modules/@playcanvas/pcui/styles/package.json +17 -0
- package/node_modules/@playcanvas/pcui/types/Math/color-value.d.ts +3 -0
- package/node_modules/@playcanvas/pcui/types/binding/BindingBase/index.d.ts +178 -0
- package/node_modules/@playcanvas/pcui/types/binding/BindingElementToObservers/index.d.ts +24 -0
- package/node_modules/@playcanvas/pcui/types/binding/BindingObserversToElement/index.d.ts +40 -0
- package/node_modules/@playcanvas/pcui/types/binding/BindingTwoWay/index.d.ts +54 -0
- package/node_modules/@playcanvas/pcui/types/binding/index.d.ts +5 -0
- package/node_modules/@playcanvas/pcui/types/class.d.ts +17 -0
- package/node_modules/@playcanvas/pcui/types/components/ArrayInput/index.d.ts +140 -0
- package/node_modules/@playcanvas/pcui/types/components/BooleanInput/index.d.ts +41 -0
- package/node_modules/@playcanvas/pcui/types/components/Button/index.d.ts +75 -0
- package/node_modules/@playcanvas/pcui/types/components/Canvas/index.d.ts +61 -0
- package/node_modules/@playcanvas/pcui/types/components/Code/index.d.ts +33 -0
- package/node_modules/@playcanvas/pcui/types/components/ColorPicker/index.d.ts +99 -0
- package/node_modules/@playcanvas/pcui/types/components/Container/index.d.ts +292 -0
- package/node_modules/@playcanvas/pcui/types/components/Divider/index.d.ts +13 -0
- package/node_modules/@playcanvas/pcui/types/components/Element/index.d.ts +671 -0
- package/node_modules/@playcanvas/pcui/types/components/GradientPicker/index.d.ts +152 -0
- package/node_modules/@playcanvas/pcui/types/components/GridView/index.d.ts +103 -0
- package/node_modules/@playcanvas/pcui/types/components/GridViewItem/index.d.ts +82 -0
- package/node_modules/@playcanvas/pcui/types/components/InfoBox/index.d.ts +71 -0
- package/node_modules/@playcanvas/pcui/types/components/InputElement/index.d.ts +84 -0
- package/node_modules/@playcanvas/pcui/types/components/Label/index.d.ts +85 -0
- package/node_modules/@playcanvas/pcui/types/components/LabelGroup/index.d.ts +62 -0
- package/node_modules/@playcanvas/pcui/types/components/Menu/index.d.ts +70 -0
- package/node_modules/@playcanvas/pcui/types/components/MenuItem/index.d.ts +139 -0
- package/node_modules/@playcanvas/pcui/types/components/NumericInput/index.d.ts +173 -0
- package/node_modules/@playcanvas/pcui/types/components/Overlay/index.d.ts +53 -0
- package/node_modules/@playcanvas/pcui/types/components/Panel/index.d.ts +178 -0
- package/node_modules/@playcanvas/pcui/types/components/Progress/index.d.ts +33 -0
- package/node_modules/@playcanvas/pcui/types/components/RadioButton/index.d.ts +33 -0
- package/node_modules/@playcanvas/pcui/types/components/SelectInput/index.d.ts +278 -0
- package/node_modules/@playcanvas/pcui/types/components/SliderInput/index.d.ts +133 -0
- package/node_modules/@playcanvas/pcui/types/components/Spinner/index.d.ts +27 -0
- package/node_modules/@playcanvas/pcui/types/components/TextAreaInput/index.d.ts +24 -0
- package/node_modules/@playcanvas/pcui/types/components/TextInput/index.d.ts +40 -0
- package/node_modules/@playcanvas/pcui/types/components/TreeView/index.d.ts +359 -0
- package/node_modules/@playcanvas/pcui/types/components/TreeViewItem/index.d.ts +224 -0
- package/node_modules/@playcanvas/pcui/types/components/VectorInput/index.d.ts +176 -0
- package/node_modules/@playcanvas/pcui/types/components/index.d.ts +32 -0
- package/node_modules/@playcanvas/pcui/types/helpers/search.d.ts +31 -0
- package/node_modules/@playcanvas/pcui/types/helpers/utils.d.ts +2 -0
- package/node_modules/@playcanvas/pcui/types/index.d.ts +20 -0
- package/node_modules/babylonjs-gltf2interface/babylon.glTF2Interface.d.ts +1655 -0
- package/node_modules/babylonjs-gltf2interface/license.md +71 -0
- package/node_modules/babylonjs-gltf2interface/package.json +26 -0
- package/package.json +31 -19
- package/dist/editor-plugin-hierarchy-command.d.ts +0 -19
- package/dist/editor-plugin-hierarchy-command.d.ts.map +0 -1
- package/dist/editor-plugin-hierarchy-command.js +0 -119
- package/dist/editor-plugin-hierarchy-command.js.map +0 -1
- package/node_modules/@babel/helper-string-parser/lib/index.js.map +0 -1
- package/node_modules/@babel/helper-validator-identifier/lib/identifier.js.map +0 -1
- package/node_modules/@babel/helper-validator-identifier/lib/index.js.map +0 -1
- package/node_modules/@babel/helper-validator-identifier/lib/keyword.js.map +0 -1
- package/node_modules/@babel/parser/lib/index.js.map +0 -1
- package/node_modules/@babel/types/lib/asserts/assertNode.js.map +0 -1
- package/node_modules/@babel/types/lib/asserts/generated/index.js.map +0 -1
- package/node_modules/@babel/types/lib/ast-types/generated/index.js.map +0 -1
- package/node_modules/@babel/types/lib/builders/flow/createFlowUnionType.js.map +0 -1
- package/node_modules/@babel/types/lib/builders/flow/createTypeAnnotationBasedOnTypeof.js.map +0 -1
- package/node_modules/@babel/types/lib/builders/generated/index.js.map +0 -1
- package/node_modules/@babel/types/lib/builders/generated/lowercase.js.map +0 -1
- package/node_modules/@babel/types/lib/builders/generated/uppercase.js.map +0 -1
- package/node_modules/@babel/types/lib/builders/productions.js.map +0 -1
- package/node_modules/@babel/types/lib/builders/react/buildChildren.js.map +0 -1
- package/node_modules/@babel/types/lib/builders/typescript/createTSUnionType.js.map +0 -1
- package/node_modules/@babel/types/lib/builders/validateNode.js.map +0 -1
- package/node_modules/@babel/types/lib/clone/clone.js.map +0 -1
- package/node_modules/@babel/types/lib/clone/cloneDeep.js.map +0 -1
- package/node_modules/@babel/types/lib/clone/cloneDeepWithoutLoc.js.map +0 -1
- package/node_modules/@babel/types/lib/clone/cloneNode.js.map +0 -1
- package/node_modules/@babel/types/lib/clone/cloneWithoutLoc.js.map +0 -1
- package/node_modules/@babel/types/lib/comments/addComment.js.map +0 -1
- package/node_modules/@babel/types/lib/comments/addComments.js.map +0 -1
- package/node_modules/@babel/types/lib/comments/inheritInnerComments.js.map +0 -1
- package/node_modules/@babel/types/lib/comments/inheritLeadingComments.js.map +0 -1
- package/node_modules/@babel/types/lib/comments/inheritTrailingComments.js.map +0 -1
- package/node_modules/@babel/types/lib/comments/inheritsComments.js.map +0 -1
- package/node_modules/@babel/types/lib/comments/removeComments.js.map +0 -1
- package/node_modules/@babel/types/lib/constants/generated/index.js.map +0 -1
- package/node_modules/@babel/types/lib/constants/index.js.map +0 -1
- package/node_modules/@babel/types/lib/converters/ensureBlock.js.map +0 -1
- package/node_modules/@babel/types/lib/converters/gatherSequenceExpressions.js.map +0 -1
- package/node_modules/@babel/types/lib/converters/toBindingIdentifierName.js.map +0 -1
- package/node_modules/@babel/types/lib/converters/toBlock.js.map +0 -1
- package/node_modules/@babel/types/lib/converters/toComputedKey.js.map +0 -1
- package/node_modules/@babel/types/lib/converters/toExpression.js.map +0 -1
- package/node_modules/@babel/types/lib/converters/toIdentifier.js.map +0 -1
- package/node_modules/@babel/types/lib/converters/toKeyAlias.js.map +0 -1
- package/node_modules/@babel/types/lib/converters/toSequenceExpression.js.map +0 -1
- package/node_modules/@babel/types/lib/converters/toStatement.js.map +0 -1
- package/node_modules/@babel/types/lib/converters/valueToNode.js.map +0 -1
- package/node_modules/@babel/types/lib/definitions/core.js.map +0 -1
- package/node_modules/@babel/types/lib/definitions/deprecated-aliases.js.map +0 -1
- package/node_modules/@babel/types/lib/definitions/experimental.js.map +0 -1
- package/node_modules/@babel/types/lib/definitions/flow.js.map +0 -1
- package/node_modules/@babel/types/lib/definitions/index.js.map +0 -1
- package/node_modules/@babel/types/lib/definitions/jsx.js.map +0 -1
- package/node_modules/@babel/types/lib/definitions/misc.js.map +0 -1
- package/node_modules/@babel/types/lib/definitions/placeholders.js.map +0 -1
- package/node_modules/@babel/types/lib/definitions/typescript.js.map +0 -1
- package/node_modules/@babel/types/lib/definitions/utils.js.map +0 -1
- package/node_modules/@babel/types/lib/index.js.map +0 -1
- package/node_modules/@babel/types/lib/modifications/appendToMemberExpression.js.map +0 -1
- package/node_modules/@babel/types/lib/modifications/flow/removeTypeDuplicates.js.map +0 -1
- package/node_modules/@babel/types/lib/modifications/inherits.js.map +0 -1
- package/node_modules/@babel/types/lib/modifications/prependToMemberExpression.js.map +0 -1
- package/node_modules/@babel/types/lib/modifications/removeProperties.js.map +0 -1
- package/node_modules/@babel/types/lib/modifications/removePropertiesDeep.js.map +0 -1
- package/node_modules/@babel/types/lib/modifications/typescript/removeTypeDuplicates.js.map +0 -1
- package/node_modules/@babel/types/lib/retrievers/getAssignmentIdentifiers.js.map +0 -1
- package/node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js.map +0 -1
- package/node_modules/@babel/types/lib/retrievers/getFunctionName.js.map +0 -1
- package/node_modules/@babel/types/lib/retrievers/getOuterBindingIdentifiers.js.map +0 -1
- package/node_modules/@babel/types/lib/traverse/traverse.js.map +0 -1
- package/node_modules/@babel/types/lib/traverse/traverseFast.js.map +0 -1
- package/node_modules/@babel/types/lib/utils/deprecationWarning.js.map +0 -1
- package/node_modules/@babel/types/lib/utils/inherit.js.map +0 -1
- package/node_modules/@babel/types/lib/utils/react/cleanJSXElementLiteralChild.js.map +0 -1
- package/node_modules/@babel/types/lib/utils/shallowEqual.js.map +0 -1
- package/node_modules/@babel/types/lib/validators/buildMatchMemberExpression.js.map +0 -1
- package/node_modules/@babel/types/lib/validators/generated/index.js.map +0 -1
- package/node_modules/@babel/types/lib/validators/is.js.map +0 -1
- package/node_modules/@babel/types/lib/validators/isBinding.js.map +0 -1
- package/node_modules/@babel/types/lib/validators/isBlockScoped.js.map +0 -1
- package/node_modules/@babel/types/lib/validators/isImmutable.js.map +0 -1
- package/node_modules/@babel/types/lib/validators/isLet.js.map +0 -1
- package/node_modules/@babel/types/lib/validators/isNode.js.map +0 -1
- package/node_modules/@babel/types/lib/validators/isNodesEquivalent.js.map +0 -1
- package/node_modules/@babel/types/lib/validators/isPlaceholderType.js.map +0 -1
- package/node_modules/@babel/types/lib/validators/isReferenced.js.map +0 -1
- package/node_modules/@babel/types/lib/validators/isScope.js.map +0 -1
- package/node_modules/@babel/types/lib/validators/isSpecifierDefault.js.map +0 -1
- package/node_modules/@babel/types/lib/validators/isType.js.map +0 -1
- package/node_modules/@babel/types/lib/validators/isValidES3Identifier.js.map +0 -1
- package/node_modules/@babel/types/lib/validators/isValidIdentifier.js.map +0 -1
- package/node_modules/@babel/types/lib/validators/isVar.js.map +0 -1
- package/node_modules/@babel/types/lib/validators/matchesPattern.js.map +0 -1
- package/node_modules/@babel/types/lib/validators/react/isCompatTag.js.map +0 -1
- package/node_modules/@babel/types/lib/validators/react/isReactComponent.js.map +0 -1
- package/node_modules/@babel/types/lib/validators/validate.js.map +0 -1
- package/node_modules/@fps-games/editor-babylon/dist/prefab-comparison-preview-controller.d.ts +0 -37
- package/node_modules/@fps-games/editor-babylon/dist/prefab-comparison-preview-controller.d.ts.map +0 -1
- package/node_modules/@fps-games/editor-babylon/dist/prefab-comparison-preview-controller.js +0 -451
- package/node_modules/@fps-games/editor-babylon/dist/prefab-comparison-preview-controller.js.map +0 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-actions.d.ts +0 -49
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-actions.d.ts.map +0 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-actions.js +0 -627
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-actions.js.map +0 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-attach-dialog.d.ts +0 -52
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-attach-dialog.d.ts.map +0 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-attach-dialog.js +0 -450
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-attach-dialog.js.map +0 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-command-adapter.d.ts +0 -21
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-command-adapter.d.ts.map +0 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-command-adapter.js +0 -75
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-command-adapter.js.map +0 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-projection.d.ts +0 -7
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-projection.d.ts.map +0 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-projection.js +0 -186
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-projection.js.map +0 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-scope.d.ts +0 -5
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-scope.d.ts.map +0 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-scope.js +0 -98
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-scope.js.map +0 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-tree.d.ts +0 -63
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-tree.d.ts.map +0 -1
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-tree.js +0 -301
- package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-tree.js.map +0 -1
|
@@ -3,6 +3,9 @@ export * from './shadow-quality.js';
|
|
|
3
3
|
export * from './shadow-settings.js';
|
|
4
4
|
export * from './shadow-validation.js';
|
|
5
5
|
export * from './shadow-runtime.js';
|
|
6
|
+
export * from './shadow-map-experiment.js';
|
|
7
|
+
export * from './shadow-map-experiment-lifecycle.js';
|
|
8
|
+
export * from './shadow-map-experiment-depth.js';
|
|
6
9
|
export * from './rendering-profile-types.js';
|
|
7
10
|
export * from './rendering-profile.js';
|
|
8
11
|
export * from './rendering-profile-authoring.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC;AAClC,cAAc,qBAAqB,CAAC;AACpC,cAAc,sBAAsB,CAAC;AACrC,cAAc,wBAAwB,CAAC;AACvC,cAAc,qBAAqB,CAAC;AACpC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,wBAAwB,CAAC;AACvC,cAAc,kCAAkC,CAAC;AACjD,cAAc,mCAAmC,CAAC","sourcesContent":["export * from './shadow-types.js';\nexport * from './shadow-quality.js';\nexport * from './shadow-settings.js';\nexport * from './shadow-validation.js';\nexport * from './shadow-runtime.js';\nexport * from './rendering-profile-types.js';\nexport * from './rendering-profile.js';\nexport * from './rendering-profile-authoring.js';\nexport * from './rendering-profile-validation.js';\n"]}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC;AAClC,cAAc,qBAAqB,CAAC;AACpC,cAAc,sBAAsB,CAAC;AACrC,cAAc,wBAAwB,CAAC;AACvC,cAAc,qBAAqB,CAAC;AACpC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,sCAAsC,CAAC;AACrD,cAAc,kCAAkC,CAAC;AACjD,cAAc,8BAA8B,CAAC;AAC7C,cAAc,wBAAwB,CAAC;AACvC,cAAc,kCAAkC,CAAC;AACjD,cAAc,mCAAmC,CAAC","sourcesContent":["export * from './shadow-types.js';\nexport * from './shadow-quality.js';\nexport * from './shadow-settings.js';\nexport * from './shadow-validation.js';\nexport * from './shadow-runtime.js';\nexport * from './shadow-map-experiment.js';\nexport * from './shadow-map-experiment-lifecycle.js';\nexport * from './shadow-map-experiment-depth.js';\nexport * from './rendering-profile-types.js';\nexport * from './rendering-profile.js';\nexport * from './rendering-profile-authoring.js';\nexport * from './rendering-profile-validation.js';\n"]}
|
|
@@ -91,11 +91,13 @@ function assertGlobalVolume(value, path) {
|
|
|
91
91
|
if (value === undefined)
|
|
92
92
|
return;
|
|
93
93
|
const volume = requireRecord(value, path);
|
|
94
|
-
|
|
95
|
-
|
|
94
|
+
for (const retired of ['samples', 'camera', 'lights']) {
|
|
95
|
+
if (retired in volume)
|
|
96
|
+
throw schemaError('schema.deprecatedField', `${path}.${retired}`);
|
|
97
|
+
}
|
|
96
98
|
assertKnownFields(volume, [
|
|
97
99
|
'enabled', 'hdr', 'environment', 'imageProcessing', 'toneMapping', 'antialiasing',
|
|
98
|
-
'postProcessing', '
|
|
100
|
+
'postProcessing', 'rendering', 'textures',
|
|
99
101
|
], path);
|
|
100
102
|
assertOptionalBoolean(volume, 'enabled', path);
|
|
101
103
|
assertOptionalBoolean(volume, 'hdr', path);
|
|
@@ -153,21 +155,6 @@ function assertGlobalVolumeExtensions(value, path) {
|
|
|
153
155
|
if (value === undefined)
|
|
154
156
|
return;
|
|
155
157
|
const volume = requireRecord(value, path);
|
|
156
|
-
const lights = optionalRecord(volume.lights, `${path}.lights`);
|
|
157
|
-
if (lights) {
|
|
158
|
-
assertKnownFields(lights, ['hemispheric', 'directional'], `${path}.lights`);
|
|
159
|
-
for (const key of ['hemispheric', 'directional']) {
|
|
160
|
-
const light = optionalRecord(lights[key], `${path}.lights.${key}`);
|
|
161
|
-
if (!light)
|
|
162
|
-
continue;
|
|
163
|
-
assertKnownFields(light, key === 'hemispheric' ? ['intensity', 'skyLightColor'] : ['intensity', 'direction'], `${path}.lights.${key}`);
|
|
164
|
-
assertOptionalFiniteNumber(light, 'intensity', `${path}.lights.${key}`);
|
|
165
|
-
if (key === 'hemispheric')
|
|
166
|
-
assertColor(light.skyLightColor, `${path}.lights.${key}.skyLightColor`, true);
|
|
167
|
-
if (key === 'directional')
|
|
168
|
-
assertVec3(light.direction, `${path}.lights.${key}.direction`);
|
|
169
|
-
}
|
|
170
|
-
}
|
|
171
158
|
const rendering = optionalRecord(volume.rendering, `${path}.rendering`);
|
|
172
159
|
if (rendering) {
|
|
173
160
|
assertKnownFields(rendering, ['maxDpr', 'hardwareScalingLevel'], `${path}.rendering`);
|
|
@@ -182,13 +169,6 @@ function assertGlobalVolumeExtensions(value, path) {
|
|
|
182
169
|
throw schemaError('schema.invalidValue', `${path}.textures.samplingMode`);
|
|
183
170
|
}
|
|
184
171
|
}
|
|
185
|
-
const camera = optionalRecord(volume.camera, `${path}.camera`);
|
|
186
|
-
if (camera) {
|
|
187
|
-
assertKnownFields(camera, ['fov', 'radius', 'target'], `${path}.camera`);
|
|
188
|
-
assertOptionalFiniteNumber(camera, 'fov', `${path}.camera`);
|
|
189
|
-
assertNullableFiniteNumber(camera, 'radius', `${path}.camera`);
|
|
190
|
-
assertVec3(camera.target, `${path}.camera.target`);
|
|
191
|
-
}
|
|
192
172
|
}
|
|
193
173
|
function assertMaterials(value, path) {
|
|
194
174
|
if (value === undefined)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"rendering-profile-validation.js","sourceRoot":"","sources":["../src/rendering-profile-validation.ts"],"names":[],"mappings":"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","sourcesContent":["const RETIRED_TOP_LEVEL_FIELDS = ['useBlobShadow', 'blobSettings'] as const;\nconst RETIRED_STATIC_BAKE_FIELDS = ['resolution', 'maxSize'] as const;\nconst RESOLVED_SHADOW_MODES = new Set(['none', 'blob', 'static', 'planar', 'dynamic']);\n\nexport function assertEditorSceneRenderingProfileContract(value: unknown): void {\n const profile = readRecord(value);\n if (!profile) throw schemaError('schema.invalidType', '$');\n for (const field of RETIRED_TOP_LEVEL_FIELDS) {\n if (Object.prototype.hasOwnProperty.call(profile, field)) {\n throw schemaError('schema.deprecatedField', `$.${field}`);\n }\n }\n assertKnownFields(profile, ['globalVolume', 'materials', 'renderingGroups', 'shadowMeshes', 'shadows'], '$');\n assertGlobalVolumeExtensions(profile.globalVolume, '$.globalVolume');\n assertMaterials(profile.materials, '$.materials');\n assertRenderingGroups(profile.renderingGroups, '$.renderingGroups');\n assertGlobalVolume(profile.globalVolume, '$.globalVolume');\n assertStringListGroup(profile.shadowMeshes, '$.shadowMeshes');\n if (!Object.prototype.hasOwnProperty.call(profile, 'shadows')) return;\n const shadows = readRecord(profile.shadows);\n if (!shadows) throw schemaError('schema.invalidType', '$.shadows');\n for (const field of RETIRED_TOP_LEVEL_FIELDS) {\n if (Object.prototype.hasOwnProperty.call(shadows, field)) {\n throw schemaError('schema.deprecatedField', `$.shadows.${field}`);\n }\n }\n assertKnownFields(shadows, [\n 'defaultMode', 'enabled', 'useCsm', 'settings', 'blob', 'staticProjected',\n 'planar', 'shadowRange', 'shadowOrtho', 'csm',\n ], '$.shadows');\n if ('defaultMode' in shadows && !RESOLVED_SHADOW_MODES.has(String(shadows.defaultMode))) {\n throw schemaError('schema.invalidValue', '$.shadows.defaultMode');\n }\n assertOptionalBoolean(shadows, 'enabled', '$.shadows');\n assertOptionalBoolean(shadows, 'useCsm', '$.shadows');\n const settings = readRecord(shadows.settings);\n if (Object.prototype.hasOwnProperty.call(shadows, 'settings') && !settings) throw schemaError('schema.invalidType', '$.shadows.settings');\n if (settings) {\n assertKnownFields(settings, [\n 'mapSize', 'darkness', 'blurKernel', 'bias', 'normalBias',\n 'shadowMinZ', 'shadowMaxZ', 'useBlurExponentialShadowMap', 'shadowColor',\n ], '$.shadows.settings');\n for (const field of ['mapSize', 'darkness', 'blurKernel', 'bias', 'normalBias', 'shadowMinZ', 'shadowMaxZ']) {\n assertOptionalFiniteNumber(settings, field, '$.shadows.settings');\n }\n assertOptionalBoolean(settings, 'useBlurExponentialShadowMap', '$.shadows.settings');\n assertColor(settings.shadowColor, '$.shadows.settings.shadowColor', false);\n }\n assertBlob(shadows.blob, '$.shadows.blob');\n assertStaticProjected(shadows.staticProjected, '$.shadows.staticProjected');\n assertPlanar(shadows.planar, '$.shadows.planar');\n assertNumberObject(shadows.shadowRange, '$.shadows.shadowRange', ['minZ', 'maxZ']);\n assertNumberObject(shadows.shadowOrtho, '$.shadows.shadowOrtho', ['left', 'right', 'top', 'bottom']);\n assertCsm(shadows.csm, '$.shadows.csm');\n}\n\nfunction assertRenderingGroups(value: unknown, path: string): void {\n if (value === undefined) return;\n const groups = readRecord(value);\n if (!groups || !Array.isArray(groups.slots)) throw schemaError('schema.invalidType', path);\n assertKnownFields(groups, ['slots'], path);\n groups.slots.forEach((rawSlot, index) => {\n const slotPath = `${path}.slots[${index}]`;\n const slot = readRecord(rawSlot);\n if (!slot) throw schemaError('schema.invalidType', slotPath);\n assertKnownFields(slot, ['renderingGroupId', 'name', 'alphaIndexPresets'], slotPath);\n if (![0, 1, 2, 3].includes(slot.renderingGroupId as number)) throw schemaError('schema.invalidValue', `${slotPath}.renderingGroupId`);\n if (typeof slot.name !== 'string' || !slot.name.trim()) throw schemaError('schema.invalidValue', `${slotPath}.name`);\n if (!Array.isArray(slot.alphaIndexPresets)) throw schemaError('schema.invalidType', `${slotPath}.alphaIndexPresets`);\n slot.alphaIndexPresets.forEach((rawPreset, presetIndex) => {\n const presetPath = `${slotPath}.alphaIndexPresets[${presetIndex}]`;\n const preset = readRecord(rawPreset);\n if (!preset) throw schemaError('schema.invalidType', presetPath);\n assertKnownFields(preset, ['name', 'alphaIndex'], presetPath);\n if (typeof preset.name !== 'string' || !preset.name.trim()) throw schemaError('schema.invalidValue', `${presetPath}.name`);\n assertRequiredFiniteNumber(preset, 'alphaIndex', presetPath);\n });\n });\n}\n\nfunction assertGlobalVolume(value: unknown, path: string): void {\n if (value === undefined) return;\n const volume = requireRecord(value, path);\n if ('samples' in volume) throw schemaError('schema.deprecatedField', `${path}.samples`);\n assertKnownFields(volume, [\n 'enabled', 'hdr', 'environment', 'imageProcessing', 'toneMapping', 'antialiasing',\n 'postProcessing', 'lights', 'rendering', 'textures', 'camera',\n ], path);\n assertOptionalBoolean(volume, 'enabled', path);\n assertOptionalBoolean(volume, 'hdr', path);\n if (volume.environment !== undefined) {\n const environment = requireRecord(volume.environment, `${path}.environment`);\n for (const retired of ['textureAssetId', 'textureUrl', 'intensity']) {\n if (retired in environment) throw schemaError('schema.deprecatedField', `${path}.environment.${retired}`);\n }\n assertKnownFields(environment, ['texture', 'iblIntensity', 'rotationY', 'useCocosIBL'], `${path}.environment`);\n if (environment.texture !== undefined && environment.texture !== null) {\n const texture = requireRecord(environment.texture, `${path}.environment.texture`);\n for (const key of Object.keys(texture)) {\n if (key !== 'textureAssetId' && key !== 'url') throw schemaError('schema.deprecatedField', `${path}.environment.texture.${key}`);\n }\n for (const key of ['textureAssetId', 'url']) {\n if (key in texture && texture[key] != null && (typeof texture[key] !== 'string' || !texture[key].trim())) {\n throw schemaError('schema.invalidValue', `${path}.environment.texture.${key}`);\n }\n }\n }\n assertOptionalFiniteNumber(environment, 'iblIntensity', `${path}.environment`);\n assertOptionalFiniteNumber(environment, 'rotationY', `${path}.environment`);\n assertOptionalBoolean(environment, 'useCocosIBL', `${path}.environment`);\n }\n assertNumberObject(volume.imageProcessing, `${path}.imageProcessing`, ['exposure', 'contrast']);\n if (volume.toneMapping !== undefined) {\n const toneMapping = requireRecord(volume.toneMapping, `${path}.toneMapping`);\n assertKnownFields(toneMapping, ['enabled', 'type'], `${path}.toneMapping`);\n assertOptionalBoolean(toneMapping, 'enabled', `${path}.toneMapping`);\n if ('type' in toneMapping && !['standard', 'aces', 'khr-pbr-neutral'].includes(String(toneMapping.type))) {\n throw schemaError('schema.invalidValue', `${path}.toneMapping.type`);\n }\n }\n if (volume.antialiasing !== undefined) {\n const antialiasing = requireRecord(volume.antialiasing, `${path}.antialiasing`);\n assertKnownFields(antialiasing, ['samples'], `${path}.antialiasing`);\n if ('samples' in antialiasing && ![1, 2, 4, 8].includes(antialiasing.samples as number)) {\n throw schemaError('schema.invalidValue', `${path}.antialiasing.samples`);\n }\n }\n const postProcessing = optionalRecord(volume.postProcessing, `${path}.postProcessing`);\n if (postProcessing) assertKnownFields(postProcessing, ['bloom'], `${path}.postProcessing`);\n const bloom = postProcessing ? optionalRecord(postProcessing.bloom, `${path}.postProcessing.bloom`) : null;\n if (bloom) {\n assertKnownFields(bloom, ['enabled', 'threshold', 'weight', 'kernel', 'scale'], `${path}.postProcessing.bloom`);\n assertOptionalBoolean(bloom, 'enabled', `${path}.postProcessing.bloom`);\n for (const field of ['threshold', 'weight', 'kernel', 'scale']) assertOptionalFiniteNumber(bloom, field, `${path}.postProcessing.bloom`);\n }\n}\n\nfunction assertGlobalVolumeExtensions(value: unknown, path: string): void {\n if (value === undefined) return;\n const volume = requireRecord(value, path);\n const lights = optionalRecord(volume.lights, `${path}.lights`);\n if (lights) {\n assertKnownFields(lights, ['hemispheric', 'directional'], `${path}.lights`);\n for (const key of ['hemispheric', 'directional']) {\n const light = optionalRecord(lights[key], `${path}.lights.${key}`);\n if (!light) continue;\n assertKnownFields(light, key === 'hemispheric' ? ['intensity', 'skyLightColor'] : ['intensity', 'direction'], `${path}.lights.${key}`);\n assertOptionalFiniteNumber(light, 'intensity', `${path}.lights.${key}`);\n if (key === 'hemispheric') assertColor(light.skyLightColor, `${path}.lights.${key}.skyLightColor`, true);\n if (key === 'directional') assertVec3(light.direction, `${path}.lights.${key}.direction`);\n }\n }\n const rendering = optionalRecord(volume.rendering, `${path}.rendering`);\n if (rendering) {\n assertKnownFields(rendering, ['maxDpr', 'hardwareScalingLevel'], `${path}.rendering`);\n assertOptionalFiniteNumber(rendering, 'maxDpr', `${path}.rendering`);\n assertNullableFiniteNumber(rendering, 'hardwareScalingLevel', `${path}.rendering`);\n }\n const textures = optionalRecord(volume.textures, `${path}.textures`);\n if (textures) {\n assertKnownFields(textures, ['anisotropicFilteringLevel', 'samplingMode'], `${path}.textures`);\n assertOptionalFiniteNumber(textures, 'anisotropicFilteringLevel', `${path}.textures`);\n if ('samplingMode' in textures && (typeof textures.samplingMode !== 'string' || !textures.samplingMode.trim())) {\n throw schemaError('schema.invalidValue', `${path}.textures.samplingMode`);\n }\n }\n const camera = optionalRecord(volume.camera, `${path}.camera`);\n if (camera) {\n assertKnownFields(camera, ['fov', 'radius', 'target'], `${path}.camera`);\n assertOptionalFiniteNumber(camera, 'fov', `${path}.camera`);\n assertNullableFiniteNumber(camera, 'radius', `${path}.camera`);\n assertVec3(camera.target, `${path}.camera.target`);\n }\n}\n\nfunction assertMaterials(value: unknown, path: string): void {\n if (value === undefined) return;\n const materials = requireRecord(value, path);\n assertKnownFields(materials, ['sceneMaterials', 'plantMaterials'], path);\n for (const key of ['sceneMaterials', 'plantMaterials']) {\n if (key in materials) requireRecord(materials[key], `${path}.${key}`);\n }\n}\n\nfunction assertNullableFiniteNumber(record: Record<string, unknown>, field: string, path: string): void {\n if (!(field in record) || record[field] == null) return;\n assertOptionalFiniteNumber(record, field, path);\n}\n\nfunction assertBlob(value: unknown, path: string): void {\n if (value === undefined) return;\n const blob = requireRecord(value, path);\n assertKnownFields(blob, ['enabled', 'plane', 'appearance', 'size'], path);\n assertOptionalBoolean(blob, 'enabled', path);\n assertNumberObject(blob.plane, `${path}.plane`, ['height', 'yOffset']);\n const appearance = optionalRecord(blob.appearance, `${path}.appearance`);\n if (appearance) {\n assertKnownFields(appearance, ['color', 'edgeSoftness'], `${path}.appearance`);\n assertColor(appearance.color, `${path}.appearance.color`, true);\n assertOptionalFiniteNumber(appearance, 'edgeSoftness', `${path}.appearance`);\n }\n assertNumberObject(blob.size, `${path}.size`, ['sizeMultiplier', 'minSize', 'maxSize']);\n}\n\nfunction assertStaticProjected(value: unknown, path: string): void {\n if (value === undefined) return;\n const profile = requireRecord(value, path);\n assertKnownFields(profile, ['enabled', 'plane', 'appearance', 'bake'], path);\n assertOptionalBoolean(profile, 'enabled', path);\n assertNumberObject(profile.plane, `${path}.plane`, ['height', 'yOffset']);\n const appearance = optionalRecord(profile.appearance, `${path}.appearance`);\n if (appearance) {\n assertKnownFields(appearance, ['color'], `${path}.appearance`);\n assertColor(appearance.color, `${path}.appearance.color`, true);\n }\n if (profile.bake === undefined) return;\n const bake = requireRecord(profile.bake, `${path}.bake`);\n for (const field of RETIRED_STATIC_BAKE_FIELDS) {\n if (field in bake) throw schemaError('schema.deprecatedField', `${path}.bake.${field}`);\n }\n assertKnownFields(bake, [\n 'padding', 'blur', 'texelsPerMeter', 'atlasSize', 'maxAtlasPages',\n 'sdfRadiusPx', 'spatialChunkSize', 'targetChunkCount',\n ], `${path}.bake`);\n for (const field of ['padding', 'blur', 'texelsPerMeter', 'atlasSize', 'maxAtlasPages', 'sdfRadiusPx', 'spatialChunkSize', 'targetChunkCount']) {\n assertOptionalFiniteNumber(bake, field, `${path}.bake`);\n }\n}\n\nfunction assertPlanar(value: unknown, path: string): void {\n if (value === undefined) return;\n const planar = requireRecord(value, path);\n assertKnownFields(planar, ['enabled', 'plane', 'appearance', 'projection', 'stencil', 'casters', 'receivers'], path);\n assertOptionalBoolean(planar, 'enabled', path);\n const plane = optionalRecord(planar.plane, `${path}.plane`);\n if (plane) {\n assertKnownFields(plane, ['normal', 'height', 'bias', 'heightMode'], `${path}.plane`);\n assertVec3(plane.normal, `${path}.plane.normal`);\n for (const field of ['height', 'bias']) assertOptionalFiniteNumber(plane, field, `${path}.plane`);\n if ('heightMode' in plane && !['fixed', 'receiver'].includes(String(plane.heightMode))) throw schemaError('schema.invalidValue', `${path}.plane.heightMode`);\n }\n const appearance = optionalRecord(planar.appearance, `${path}.appearance`);\n if (appearance) {\n assertKnownFields(appearance, ['color'], `${path}.appearance`);\n assertColor(appearance.color, `${path}.appearance.color`, true);\n }\n assertNumberObject(planar.projection, `${path}.projection`, ['footprintScale']);\n const stencil = optionalRecord(planar.stencil, `${path}.stencil`);\n if (stencil) {\n assertKnownFields(stencil, ['enabled', 'receiverRenderingGroup', 'shadowRenderingGroup'], `${path}.stencil`);\n assertOptionalBoolean(stencil, 'enabled', `${path}.stencil`);\n for (const field of ['receiverRenderingGroup', 'shadowRenderingGroup']) assertOptionalFiniteNumber(stencil, field, `${path}.stencil`);\n }\n const casters = optionalRecord(planar.casters, `${path}.casters`);\n if (casters) {\n assertKnownFields(casters, ['autoDetectAll', 'includePatterns', 'excludePatterns', 'rootBoundaryPatterns', 'minVolume'], `${path}.casters`);\n assertOptionalBoolean(casters, 'autoDetectAll', `${path}.casters`);\n for (const field of ['includePatterns', 'excludePatterns', 'rootBoundaryPatterns']) assertStringList(casters[field], `${path}.casters.${field}`);\n assertOptionalFiniteNumber(casters, 'minVolume', `${path}.casters`);\n }\n const receivers = optionalRecord(planar.receivers, `${path}.receivers`);\n if (receivers) {\n assertKnownFields(receivers, ['patterns'], `${path}.receivers`);\n assertStringList(receivers.patterns, `${path}.receivers.patterns`);\n }\n}\n\nfunction assertCsm(value: unknown, path: string): void {\n if (value === undefined) return;\n const csm = requireRecord(value, path);\n assertKnownFields(csm, ['numCascades', 'lambda', 'cascadeBlendPercentage', 'stabilizeCascades'], path);\n for (const field of ['numCascades', 'lambda', 'cascadeBlendPercentage']) assertOptionalFiniteNumber(csm, field, path);\n assertOptionalBoolean(csm, 'stabilizeCascades', path);\n}\n\nfunction assertStringListGroup(value: unknown, path: string): void {\n if (value === undefined) return;\n const record = requireRecord(value, path);\n assertKnownFields(record, ['shadowReceivers', 'shadowCasters', 'excludeFromShadow'], path);\n for (const field of ['shadowReceivers', 'shadowCasters', 'excludeFromShadow']) assertStringList(record[field], `${path}.${field}`);\n}\n\nfunction assertNumberObject(value: unknown, path: string, fields: readonly string[]): void {\n if (value === undefined) return;\n const record = requireRecord(value, path);\n assertKnownFields(record, fields, path);\n for (const field of fields) assertOptionalFiniteNumber(record, field, path);\n}\n\nfunction assertColor(value: unknown, path: string, alpha: boolean): void {\n if (value === undefined) return;\n const color = requireRecord(value, path);\n const fields = alpha ? ['r', 'g', 'b', 'a'] : ['r', 'g', 'b'];\n assertKnownFields(color, fields, path);\n for (const field of fields) assertRequiredFiniteNumber(color, field, path);\n}\n\nfunction assertVec3(value: unknown, path: string): void {\n if (value === undefined) return;\n const vector = requireRecord(value, path);\n assertKnownFields(vector, ['x', 'y', 'z'], path);\n for (const field of ['x', 'y', 'z']) assertRequiredFiniteNumber(vector, field, path);\n}\n\nfunction assertStringList(value: unknown, path: string): void {\n if (value === undefined) return;\n if (!Array.isArray(value) || value.some(entry => typeof entry !== 'string')) throw schemaError('schema.invalidType', path);\n}\n\nfunction assertRequiredFiniteNumber(record: Record<string, unknown>, field: string, path: string): void {\n if (!(field in record)) throw schemaError('schema.invalidValue', `${path}.${field}`);\n assertOptionalFiniteNumber(record, field, path);\n}\n\nfunction optionalRecord(value: unknown, path: string): Record<string, unknown> | null {\n if (value === undefined) return null;\n return requireRecord(value, path);\n}\n\nfunction requireRecord(value: unknown, path: string): Record<string, unknown> {\n const record = readRecord(value);\n if (!record) throw schemaError('schema.invalidType', path);\n return record;\n}\n\nfunction assertOptionalBoolean(record: Record<string, unknown>, field: string, path: string): void {\n if (field in record && typeof record[field] !== 'boolean') throw schemaError('schema.invalidValue', `${path}.${field}`);\n}\n\nfunction assertOptionalFiniteNumber(record: Record<string, unknown>, field: string, path: string): void {\n if (!(field in record)) return;\n const value = record[field];\n if (typeof value !== 'number' || !Number.isFinite(value)) throw schemaError('schema.invalidValue', `${path}.${field}`);\n}\n\nfunction assertKnownFields(record: Record<string, unknown>, fields: readonly string[], path: string): void {\n const allowed = new Set(fields);\n for (const key of Object.keys(record)) {\n if (!allowed.has(key)) throw schemaError('schema.unknownField', `${path}.${key}`);\n }\n}\n\nfunction schemaError(code: string, path: string): Error {\n const error = new Error(`${code}: ${path}`);\n Object.assign(error, { code, path });\n return error;\n}\n\nfunction readRecord(value: unknown): Record<string, unknown> | null {\n return value && typeof value === 'object' && !Array.isArray(value)\n ? value as Record<string, unknown>\n : null;\n}\n"]}
|
|
1
|
+
{"version":3,"file":"rendering-profile-validation.js","sourceRoot":"","sources":["../src/rendering-profile-validation.ts"],"names":[],"mappings":"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","sourcesContent":["const RETIRED_TOP_LEVEL_FIELDS = ['useBlobShadow', 'blobSettings'] as const;\nconst RETIRED_STATIC_BAKE_FIELDS = ['resolution', 'maxSize'] as const;\nconst RESOLVED_SHADOW_MODES = new Set(['none', 'blob', 'static', 'planar', 'dynamic']);\n\nexport function assertEditorSceneRenderingProfileContract(value: unknown): void {\n const profile = readRecord(value);\n if (!profile) throw schemaError('schema.invalidType', '$');\n for (const field of RETIRED_TOP_LEVEL_FIELDS) {\n if (Object.prototype.hasOwnProperty.call(profile, field)) {\n throw schemaError('schema.deprecatedField', `$.${field}`);\n }\n }\n assertKnownFields(profile, ['globalVolume', 'materials', 'renderingGroups', 'shadowMeshes', 'shadows'], '$');\n assertGlobalVolumeExtensions(profile.globalVolume, '$.globalVolume');\n assertMaterials(profile.materials, '$.materials');\n assertRenderingGroups(profile.renderingGroups, '$.renderingGroups');\n assertGlobalVolume(profile.globalVolume, '$.globalVolume');\n assertStringListGroup(profile.shadowMeshes, '$.shadowMeshes');\n if (!Object.prototype.hasOwnProperty.call(profile, 'shadows')) return;\n const shadows = readRecord(profile.shadows);\n if (!shadows) throw schemaError('schema.invalidType', '$.shadows');\n for (const field of RETIRED_TOP_LEVEL_FIELDS) {\n if (Object.prototype.hasOwnProperty.call(shadows, field)) {\n throw schemaError('schema.deprecatedField', `$.shadows.${field}`);\n }\n }\n assertKnownFields(shadows, [\n 'defaultMode', 'enabled', 'useCsm', 'settings', 'blob', 'staticProjected',\n 'planar', 'shadowRange', 'shadowOrtho', 'csm',\n ], '$.shadows');\n if ('defaultMode' in shadows && !RESOLVED_SHADOW_MODES.has(String(shadows.defaultMode))) {\n throw schemaError('schema.invalidValue', '$.shadows.defaultMode');\n }\n assertOptionalBoolean(shadows, 'enabled', '$.shadows');\n assertOptionalBoolean(shadows, 'useCsm', '$.shadows');\n const settings = readRecord(shadows.settings);\n if (Object.prototype.hasOwnProperty.call(shadows, 'settings') && !settings) throw schemaError('schema.invalidType', '$.shadows.settings');\n if (settings) {\n assertKnownFields(settings, [\n 'mapSize', 'darkness', 'blurKernel', 'bias', 'normalBias',\n 'shadowMinZ', 'shadowMaxZ', 'useBlurExponentialShadowMap', 'shadowColor',\n ], '$.shadows.settings');\n for (const field of ['mapSize', 'darkness', 'blurKernel', 'bias', 'normalBias', 'shadowMinZ', 'shadowMaxZ']) {\n assertOptionalFiniteNumber(settings, field, '$.shadows.settings');\n }\n assertOptionalBoolean(settings, 'useBlurExponentialShadowMap', '$.shadows.settings');\n assertColor(settings.shadowColor, '$.shadows.settings.shadowColor', false);\n }\n assertBlob(shadows.blob, '$.shadows.blob');\n assertStaticProjected(shadows.staticProjected, '$.shadows.staticProjected');\n assertPlanar(shadows.planar, '$.shadows.planar');\n assertNumberObject(shadows.shadowRange, '$.shadows.shadowRange', ['minZ', 'maxZ']);\n assertNumberObject(shadows.shadowOrtho, '$.shadows.shadowOrtho', ['left', 'right', 'top', 'bottom']);\n assertCsm(shadows.csm, '$.shadows.csm');\n}\n\nfunction assertRenderingGroups(value: unknown, path: string): void {\n if (value === undefined) return;\n const groups = readRecord(value);\n if (!groups || !Array.isArray(groups.slots)) throw schemaError('schema.invalidType', path);\n assertKnownFields(groups, ['slots'], path);\n groups.slots.forEach((rawSlot, index) => {\n const slotPath = `${path}.slots[${index}]`;\n const slot = readRecord(rawSlot);\n if (!slot) throw schemaError('schema.invalidType', slotPath);\n assertKnownFields(slot, ['renderingGroupId', 'name', 'alphaIndexPresets'], slotPath);\n if (![0, 1, 2, 3].includes(slot.renderingGroupId as number)) throw schemaError('schema.invalidValue', `${slotPath}.renderingGroupId`);\n if (typeof slot.name !== 'string' || !slot.name.trim()) throw schemaError('schema.invalidValue', `${slotPath}.name`);\n if (!Array.isArray(slot.alphaIndexPresets)) throw schemaError('schema.invalidType', `${slotPath}.alphaIndexPresets`);\n slot.alphaIndexPresets.forEach((rawPreset, presetIndex) => {\n const presetPath = `${slotPath}.alphaIndexPresets[${presetIndex}]`;\n const preset = readRecord(rawPreset);\n if (!preset) throw schemaError('schema.invalidType', presetPath);\n assertKnownFields(preset, ['name', 'alphaIndex'], presetPath);\n if (typeof preset.name !== 'string' || !preset.name.trim()) throw schemaError('schema.invalidValue', `${presetPath}.name`);\n assertRequiredFiniteNumber(preset, 'alphaIndex', presetPath);\n });\n });\n}\n\nfunction assertGlobalVolume(value: unknown, path: string): void {\n if (value === undefined) return;\n const volume = requireRecord(value, path);\n for (const retired of ['samples', 'camera', 'lights']) {\n if (retired in volume) throw schemaError('schema.deprecatedField', `${path}.${retired}`);\n }\n assertKnownFields(volume, [\n 'enabled', 'hdr', 'environment', 'imageProcessing', 'toneMapping', 'antialiasing',\n 'postProcessing', 'rendering', 'textures',\n ], path);\n assertOptionalBoolean(volume, 'enabled', path);\n assertOptionalBoolean(volume, 'hdr', path);\n if (volume.environment !== undefined) {\n const environment = requireRecord(volume.environment, `${path}.environment`);\n for (const retired of ['textureAssetId', 'textureUrl', 'intensity']) {\n if (retired in environment) throw schemaError('schema.deprecatedField', `${path}.environment.${retired}`);\n }\n assertKnownFields(environment, ['texture', 'iblIntensity', 'rotationY', 'useCocosIBL'], `${path}.environment`);\n if (environment.texture !== undefined && environment.texture !== null) {\n const texture = requireRecord(environment.texture, `${path}.environment.texture`);\n for (const key of Object.keys(texture)) {\n if (key !== 'textureAssetId' && key !== 'url') throw schemaError('schema.deprecatedField', `${path}.environment.texture.${key}`);\n }\n for (const key of ['textureAssetId', 'url']) {\n if (key in texture && texture[key] != null && (typeof texture[key] !== 'string' || !texture[key].trim())) {\n throw schemaError('schema.invalidValue', `${path}.environment.texture.${key}`);\n }\n }\n }\n assertOptionalFiniteNumber(environment, 'iblIntensity', `${path}.environment`);\n assertOptionalFiniteNumber(environment, 'rotationY', `${path}.environment`);\n assertOptionalBoolean(environment, 'useCocosIBL', `${path}.environment`);\n }\n assertNumberObject(volume.imageProcessing, `${path}.imageProcessing`, ['exposure', 'contrast']);\n if (volume.toneMapping !== undefined) {\n const toneMapping = requireRecord(volume.toneMapping, `${path}.toneMapping`);\n assertKnownFields(toneMapping, ['enabled', 'type'], `${path}.toneMapping`);\n assertOptionalBoolean(toneMapping, 'enabled', `${path}.toneMapping`);\n if ('type' in toneMapping && !['standard', 'aces', 'khr-pbr-neutral'].includes(String(toneMapping.type))) {\n throw schemaError('schema.invalidValue', `${path}.toneMapping.type`);\n }\n }\n if (volume.antialiasing !== undefined) {\n const antialiasing = requireRecord(volume.antialiasing, `${path}.antialiasing`);\n assertKnownFields(antialiasing, ['samples'], `${path}.antialiasing`);\n if ('samples' in antialiasing && ![1, 2, 4, 8].includes(antialiasing.samples as number)) {\n throw schemaError('schema.invalidValue', `${path}.antialiasing.samples`);\n }\n }\n const postProcessing = optionalRecord(volume.postProcessing, `${path}.postProcessing`);\n if (postProcessing) assertKnownFields(postProcessing, ['bloom'], `${path}.postProcessing`);\n const bloom = postProcessing ? optionalRecord(postProcessing.bloom, `${path}.postProcessing.bloom`) : null;\n if (bloom) {\n assertKnownFields(bloom, ['enabled', 'threshold', 'weight', 'kernel', 'scale'], `${path}.postProcessing.bloom`);\n assertOptionalBoolean(bloom, 'enabled', `${path}.postProcessing.bloom`);\n for (const field of ['threshold', 'weight', 'kernel', 'scale']) assertOptionalFiniteNumber(bloom, field, `${path}.postProcessing.bloom`);\n }\n}\n\nfunction assertGlobalVolumeExtensions(value: unknown, path: string): void {\n if (value === undefined) return;\n const volume = requireRecord(value, path);\n const rendering = optionalRecord(volume.rendering, `${path}.rendering`);\n if (rendering) {\n assertKnownFields(rendering, ['maxDpr', 'hardwareScalingLevel'], `${path}.rendering`);\n assertOptionalFiniteNumber(rendering, 'maxDpr', `${path}.rendering`);\n assertNullableFiniteNumber(rendering, 'hardwareScalingLevel', `${path}.rendering`);\n }\n const textures = optionalRecord(volume.textures, `${path}.textures`);\n if (textures) {\n assertKnownFields(textures, ['anisotropicFilteringLevel', 'samplingMode'], `${path}.textures`);\n assertOptionalFiniteNumber(textures, 'anisotropicFilteringLevel', `${path}.textures`);\n if ('samplingMode' in textures && (typeof textures.samplingMode !== 'string' || !textures.samplingMode.trim())) {\n throw schemaError('schema.invalidValue', `${path}.textures.samplingMode`);\n }\n }\n}\n\nfunction assertMaterials(value: unknown, path: string): void {\n if (value === undefined) return;\n const materials = requireRecord(value, path);\n assertKnownFields(materials, ['sceneMaterials', 'plantMaterials'], path);\n for (const key of ['sceneMaterials', 'plantMaterials']) {\n if (key in materials) requireRecord(materials[key], `${path}.${key}`);\n }\n}\n\nfunction assertNullableFiniteNumber(record: Record<string, unknown>, field: string, path: string): void {\n if (!(field in record) || record[field] == null) return;\n assertOptionalFiniteNumber(record, field, path);\n}\n\nfunction assertBlob(value: unknown, path: string): void {\n if (value === undefined) return;\n const blob = requireRecord(value, path);\n assertKnownFields(blob, ['enabled', 'plane', 'appearance', 'size'], path);\n assertOptionalBoolean(blob, 'enabled', path);\n assertNumberObject(blob.plane, `${path}.plane`, ['height', 'yOffset']);\n const appearance = optionalRecord(blob.appearance, `${path}.appearance`);\n if (appearance) {\n assertKnownFields(appearance, ['color', 'edgeSoftness'], `${path}.appearance`);\n assertColor(appearance.color, `${path}.appearance.color`, true);\n assertOptionalFiniteNumber(appearance, 'edgeSoftness', `${path}.appearance`);\n }\n assertNumberObject(blob.size, `${path}.size`, ['sizeMultiplier', 'minSize', 'maxSize']);\n}\n\nfunction assertStaticProjected(value: unknown, path: string): void {\n if (value === undefined) return;\n const profile = requireRecord(value, path);\n assertKnownFields(profile, ['enabled', 'plane', 'appearance', 'bake'], path);\n assertOptionalBoolean(profile, 'enabled', path);\n assertNumberObject(profile.plane, `${path}.plane`, ['height', 'yOffset']);\n const appearance = optionalRecord(profile.appearance, `${path}.appearance`);\n if (appearance) {\n assertKnownFields(appearance, ['color'], `${path}.appearance`);\n assertColor(appearance.color, `${path}.appearance.color`, true);\n }\n if (profile.bake === undefined) return;\n const bake = requireRecord(profile.bake, `${path}.bake`);\n for (const field of RETIRED_STATIC_BAKE_FIELDS) {\n if (field in bake) throw schemaError('schema.deprecatedField', `${path}.bake.${field}`);\n }\n assertKnownFields(bake, [\n 'padding', 'blur', 'texelsPerMeter', 'atlasSize', 'maxAtlasPages',\n 'sdfRadiusPx', 'spatialChunkSize', 'targetChunkCount',\n ], `${path}.bake`);\n for (const field of ['padding', 'blur', 'texelsPerMeter', 'atlasSize', 'maxAtlasPages', 'sdfRadiusPx', 'spatialChunkSize', 'targetChunkCount']) {\n assertOptionalFiniteNumber(bake, field, `${path}.bake`);\n }\n}\n\nfunction assertPlanar(value: unknown, path: string): void {\n if (value === undefined) return;\n const planar = requireRecord(value, path);\n assertKnownFields(planar, ['enabled', 'plane', 'appearance', 'projection', 'stencil', 'casters', 'receivers'], path);\n assertOptionalBoolean(planar, 'enabled', path);\n const plane = optionalRecord(planar.plane, `${path}.plane`);\n if (plane) {\n assertKnownFields(plane, ['normal', 'height', 'bias', 'heightMode'], `${path}.plane`);\n assertVec3(plane.normal, `${path}.plane.normal`);\n for (const field of ['height', 'bias']) assertOptionalFiniteNumber(plane, field, `${path}.plane`);\n if ('heightMode' in plane && !['fixed', 'receiver'].includes(String(plane.heightMode))) throw schemaError('schema.invalidValue', `${path}.plane.heightMode`);\n }\n const appearance = optionalRecord(planar.appearance, `${path}.appearance`);\n if (appearance) {\n assertKnownFields(appearance, ['color'], `${path}.appearance`);\n assertColor(appearance.color, `${path}.appearance.color`, true);\n }\n assertNumberObject(planar.projection, `${path}.projection`, ['footprintScale']);\n const stencil = optionalRecord(planar.stencil, `${path}.stencil`);\n if (stencil) {\n assertKnownFields(stencil, ['enabled', 'receiverRenderingGroup', 'shadowRenderingGroup'], `${path}.stencil`);\n assertOptionalBoolean(stencil, 'enabled', `${path}.stencil`);\n for (const field of ['receiverRenderingGroup', 'shadowRenderingGroup']) assertOptionalFiniteNumber(stencil, field, `${path}.stencil`);\n }\n const casters = optionalRecord(planar.casters, `${path}.casters`);\n if (casters) {\n assertKnownFields(casters, ['autoDetectAll', 'includePatterns', 'excludePatterns', 'rootBoundaryPatterns', 'minVolume'], `${path}.casters`);\n assertOptionalBoolean(casters, 'autoDetectAll', `${path}.casters`);\n for (const field of ['includePatterns', 'excludePatterns', 'rootBoundaryPatterns']) assertStringList(casters[field], `${path}.casters.${field}`);\n assertOptionalFiniteNumber(casters, 'minVolume', `${path}.casters`);\n }\n const receivers = optionalRecord(planar.receivers, `${path}.receivers`);\n if (receivers) {\n assertKnownFields(receivers, ['patterns'], `${path}.receivers`);\n assertStringList(receivers.patterns, `${path}.receivers.patterns`);\n }\n}\n\nfunction assertCsm(value: unknown, path: string): void {\n if (value === undefined) return;\n const csm = requireRecord(value, path);\n assertKnownFields(csm, ['numCascades', 'lambda', 'cascadeBlendPercentage', 'stabilizeCascades'], path);\n for (const field of ['numCascades', 'lambda', 'cascadeBlendPercentage']) assertOptionalFiniteNumber(csm, field, path);\n assertOptionalBoolean(csm, 'stabilizeCascades', path);\n}\n\nfunction assertStringListGroup(value: unknown, path: string): void {\n if (value === undefined) return;\n const record = requireRecord(value, path);\n assertKnownFields(record, ['shadowReceivers', 'shadowCasters', 'excludeFromShadow'], path);\n for (const field of ['shadowReceivers', 'shadowCasters', 'excludeFromShadow']) assertStringList(record[field], `${path}.${field}`);\n}\n\nfunction assertNumberObject(value: unknown, path: string, fields: readonly string[]): void {\n if (value === undefined) return;\n const record = requireRecord(value, path);\n assertKnownFields(record, fields, path);\n for (const field of fields) assertOptionalFiniteNumber(record, field, path);\n}\n\nfunction assertColor(value: unknown, path: string, alpha: boolean): void {\n if (value === undefined) return;\n const color = requireRecord(value, path);\n const fields = alpha ? ['r', 'g', 'b', 'a'] : ['r', 'g', 'b'];\n assertKnownFields(color, fields, path);\n for (const field of fields) assertRequiredFiniteNumber(color, field, path);\n}\n\nfunction assertVec3(value: unknown, path: string): void {\n if (value === undefined) return;\n const vector = requireRecord(value, path);\n assertKnownFields(vector, ['x', 'y', 'z'], path);\n for (const field of ['x', 'y', 'z']) assertRequiredFiniteNumber(vector, field, path);\n}\n\nfunction assertStringList(value: unknown, path: string): void {\n if (value === undefined) return;\n if (!Array.isArray(value) || value.some(entry => typeof entry !== 'string')) throw schemaError('schema.invalidType', path);\n}\n\nfunction assertRequiredFiniteNumber(record: Record<string, unknown>, field: string, path: string): void {\n if (!(field in record)) throw schemaError('schema.invalidValue', `${path}.${field}`);\n assertOptionalFiniteNumber(record, field, path);\n}\n\nfunction optionalRecord(value: unknown, path: string): Record<string, unknown> | null {\n if (value === undefined) return null;\n return requireRecord(value, path);\n}\n\nfunction requireRecord(value: unknown, path: string): Record<string, unknown> {\n const record = readRecord(value);\n if (!record) throw schemaError('schema.invalidType', path);\n return record;\n}\n\nfunction assertOptionalBoolean(record: Record<string, unknown>, field: string, path: string): void {\n if (field in record && typeof record[field] !== 'boolean') throw schemaError('schema.invalidValue', `${path}.${field}`);\n}\n\nfunction assertOptionalFiniteNumber(record: Record<string, unknown>, field: string, path: string): void {\n if (!(field in record)) return;\n const value = record[field];\n if (typeof value !== 'number' || !Number.isFinite(value)) throw schemaError('schema.invalidValue', `${path}.${field}`);\n}\n\nfunction assertKnownFields(record: Record<string, unknown>, fields: readonly string[], path: string): void {\n const allowed = new Set(fields);\n for (const key of Object.keys(record)) {\n if (!allowed.has(key)) throw schemaError('schema.unknownField', `${path}.${key}`);\n }\n}\n\nfunction schemaError(code: string, path: string): Error {\n const error = new Error(`${code}: ${path}`);\n Object.assign(error, { code, path });\n return error;\n}\n\nfunction readRecord(value: unknown): Record<string, unknown> | null {\n return value && typeof value === 'object' && !Array.isArray(value)\n ? value as Record<string, unknown>\n : null;\n}\n"]}
|
|
@@ -3,6 +3,9 @@ export { EDITOR_SHADOW_DEFAULT_QUALITY, EDITOR_SHADOW_QUALITY_PRESETS, resolveEd
|
|
|
3
3
|
export { isEditorShadowCastMode, isEditorShadowLightMode, isEditorShadowMode, isEditorShadowQuality, isEditorShadowReceiveMode, readEditorShadowResolvedMode, readEditorShadowResolvedQuality, readEditorShadowSettings, readEditorShadowSettingsResult, } from './shadow-settings.js';
|
|
4
4
|
export { assertEditorShadowResolvedPlanContract, assertEditorShadowSettingsContract, } from './shadow-validation.js';
|
|
5
5
|
export * from './shadow-runtime.js';
|
|
6
|
+
export * from './shadow-map-experiment.js';
|
|
7
|
+
export * from './shadow-map-experiment-lifecycle.js';
|
|
8
|
+
export * from './shadow-map-experiment-depth.js';
|
|
6
9
|
export type { EditorSceneBlobShadowPreviewSettings, EditorSceneBlobShadowPreviewSettingsInput, EditorSceneBlobShadowProfile, EditorSceneEnvironmentProfile, EditorScenePlanarShadowPreviewSettings, EditorScenePlanarShadowPreviewSettingsInput, EditorScenePlanarShadowProfile, EditorScenePostProcessProfile, EditorScenePostProcessSamples, EditorScenePostProcessToneMappingType, EditorSceneRenderingColorRgb, EditorSceneRenderingColorRgba, EditorSceneRenderingGroupId, EditorSceneRenderingGroupSlot, EditorSceneRenderingGroupsProfile, EditorSceneRenderingProfile, EditorSceneRenderingProfileSummary, EditorSceneRenderingTextureRef, EditorSceneRenderingVec3, EditorSceneResolvedShadowMode, EditorSceneStaticProjectedShadowPreviewSettings, EditorSceneStaticProjectedShadowPreviewSettingsInput, EditorSceneStaticProjectedShadowProfile, } from './rendering-profile-types.js';
|
|
7
10
|
export { EDITOR_SCENE_DEFAULT_BLOB_SHADOW_EXCLUDE_PATTERNS, EDITOR_SCENE_DEFAULT_PLANAR_SHADOW_EXCLUDE_PATTERNS, EDITOR_SCENE_DEFAULT_PLANAR_SHADOW_RECEIVER_PATTERNS, EDITOR_SCENE_DEFAULT_RENDERING_GROUPS, EDITOR_SCENE_DEFAULT_STATIC_PROJECTED_SHADOW_EXCLUDE_PATTERNS, EDITOR_SCENE_RENDERING_GROUP_IDS, createEditorSceneBlobShadowPreviewSettings, createEditorScenePlanarShadowPreviewSettings, createEditorSceneStaticProjectedShadowPreviewSettings, normalizeEditorSceneRenderingProfile, summarizeEditorSceneRenderingProfile, } from './rendering-profile.js';
|
|
8
11
|
export { assertEditorSceneRenderingProfileContract } from './rendering-profile-validation.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"runtime.d.ts","sourceRoot":"","sources":["../src/runtime.ts"],"names":[],"mappings":"AAAA,YAAY,EACV,oBAAoB,EACpB,sBAAsB,EACtB,0BAA0B,EAC1B,8BAA8B,EAC9B,qBAAqB,EACrB,yBAAyB,EACzB,gBAAgB,EAChB,kBAAkB,EAClB,uBAAuB,EACvB,mBAAmB,EACnB,uBAAuB,EACvB,6BAA6B,EAC7B,wBAAwB,EACxB,0BAA0B,EAC1B,wBAAwB,EACxB,2BAA2B,EAC3B,oBAAoB,EACpB,yBAAyB,GAC1B,MAAM,mBAAmB,CAAC;AAC3B,OAAO,EACL,6BAA6B,EAC7B,6BAA6B,EAC7B,yBAAyB,GAC1B,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EACL,sBAAsB,EACtB,uBAAuB,EACvB,kBAAkB,EAClB,qBAAqB,EACrB,yBAAyB,EACzB,4BAA4B,EAC5B,+BAA+B,EAC/B,wBAAwB,EACxB,8BAA8B,GAC/B,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EACL,sCAAsC,EACtC,kCAAkC,GACnC,MAAM,wBAAwB,CAAC;AAChC,cAAc,qBAAqB,CAAC;AACpC,YAAY,EACV,oCAAoC,EACpC,yCAAyC,EACzC,4BAA4B,EAC5B,6BAA6B,EAC7B,sCAAsC,EACtC,2CAA2C,EAC3C,8BAA8B,EAC9B,6BAA6B,EAC7B,6BAA6B,EAC7B,qCAAqC,EACrC,4BAA4B,EAC5B,6BAA6B,EAC7B,2BAA2B,EAC3B,6BAA6B,EAC7B,iCAAiC,EACjC,2BAA2B,EAC3B,kCAAkC,EAClC,8BAA8B,EAC9B,wBAAwB,EACxB,6BAA6B,EAC7B,+CAA+C,EAC/C,oDAAoD,EACpD,uCAAuC,GACxC,MAAM,8BAA8B,CAAC;AACtC,OAAO,EACL,iDAAiD,EACjD,mDAAmD,EACnD,oDAAoD,EACpD,qCAAqC,EACrC,6DAA6D,EAC7D,gCAAgC,EAChC,0CAA0C,EAC1C,4CAA4C,EAC5C,qDAAqD,EACrD,oCAAoC,EACpC,oCAAoC,GACrC,MAAM,wBAAwB,CAAC;AAChC,OAAO,EAAE,yCAAyC,EAAE,MAAM,mCAAmC,CAAC"}
|
|
1
|
+
{"version":3,"file":"runtime.d.ts","sourceRoot":"","sources":["../src/runtime.ts"],"names":[],"mappings":"AAAA,YAAY,EACV,oBAAoB,EACpB,sBAAsB,EACtB,0BAA0B,EAC1B,8BAA8B,EAC9B,qBAAqB,EACrB,yBAAyB,EACzB,gBAAgB,EAChB,kBAAkB,EAClB,uBAAuB,EACvB,mBAAmB,EACnB,uBAAuB,EACvB,6BAA6B,EAC7B,wBAAwB,EACxB,0BAA0B,EAC1B,wBAAwB,EACxB,2BAA2B,EAC3B,oBAAoB,EACpB,yBAAyB,GAC1B,MAAM,mBAAmB,CAAC;AAC3B,OAAO,EACL,6BAA6B,EAC7B,6BAA6B,EAC7B,yBAAyB,GAC1B,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EACL,sBAAsB,EACtB,uBAAuB,EACvB,kBAAkB,EAClB,qBAAqB,EACrB,yBAAyB,EACzB,4BAA4B,EAC5B,+BAA+B,EAC/B,wBAAwB,EACxB,8BAA8B,GAC/B,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EACL,sCAAsC,EACtC,kCAAkC,GACnC,MAAM,wBAAwB,CAAC;AAChC,cAAc,qBAAqB,CAAC;AACpC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,sCAAsC,CAAC;AACrD,cAAc,kCAAkC,CAAC;AACjD,YAAY,EACV,oCAAoC,EACpC,yCAAyC,EACzC,4BAA4B,EAC5B,6BAA6B,EAC7B,sCAAsC,EACtC,2CAA2C,EAC3C,8BAA8B,EAC9B,6BAA6B,EAC7B,6BAA6B,EAC7B,qCAAqC,EACrC,4BAA4B,EAC5B,6BAA6B,EAC7B,2BAA2B,EAC3B,6BAA6B,EAC7B,iCAAiC,EACjC,2BAA2B,EAC3B,kCAAkC,EAClC,8BAA8B,EAC9B,wBAAwB,EACxB,6BAA6B,EAC7B,+CAA+C,EAC/C,oDAAoD,EACpD,uCAAuC,GACxC,MAAM,8BAA8B,CAAC;AACtC,OAAO,EACL,iDAAiD,EACjD,mDAAmD,EACnD,oDAAoD,EACpD,qCAAqC,EACrC,6DAA6D,EAC7D,gCAAgC,EAChC,0CAA0C,EAC1C,4CAA4C,EAC5C,qDAAqD,EACrD,oCAAoC,EACpC,oCAAoC,GACrC,MAAM,wBAAwB,CAAC;AAChC,OAAO,EAAE,yCAAyC,EAAE,MAAM,mCAAmC,CAAC"}
|
|
@@ -2,6 +2,9 @@ export { EDITOR_SHADOW_DEFAULT_QUALITY, EDITOR_SHADOW_QUALITY_PRESETS, resolveEd
|
|
|
2
2
|
export { isEditorShadowCastMode, isEditorShadowLightMode, isEditorShadowMode, isEditorShadowQuality, isEditorShadowReceiveMode, readEditorShadowResolvedMode, readEditorShadowResolvedQuality, readEditorShadowSettings, readEditorShadowSettingsResult, } from './shadow-settings.js';
|
|
3
3
|
export { assertEditorShadowResolvedPlanContract, assertEditorShadowSettingsContract, } from './shadow-validation.js';
|
|
4
4
|
export * from './shadow-runtime.js';
|
|
5
|
+
export * from './shadow-map-experiment.js';
|
|
6
|
+
export * from './shadow-map-experiment-lifecycle.js';
|
|
7
|
+
export * from './shadow-map-experiment-depth.js';
|
|
5
8
|
export { EDITOR_SCENE_DEFAULT_BLOB_SHADOW_EXCLUDE_PATTERNS, EDITOR_SCENE_DEFAULT_PLANAR_SHADOW_EXCLUDE_PATTERNS, EDITOR_SCENE_DEFAULT_PLANAR_SHADOW_RECEIVER_PATTERNS, EDITOR_SCENE_DEFAULT_RENDERING_GROUPS, EDITOR_SCENE_DEFAULT_STATIC_PROJECTED_SHADOW_EXCLUDE_PATTERNS, EDITOR_SCENE_RENDERING_GROUP_IDS, createEditorSceneBlobShadowPreviewSettings, createEditorScenePlanarShadowPreviewSettings, createEditorSceneStaticProjectedShadowPreviewSettings, normalizeEditorSceneRenderingProfile, summarizeEditorSceneRenderingProfile, } from './rendering-profile.js';
|
|
6
9
|
export { assertEditorSceneRenderingProfileContract } from './rendering-profile-validation.js';
|
|
7
10
|
//# sourceMappingURL=runtime.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"runtime.js","sourceRoot":"","sources":["../src/runtime.ts"],"names":[],"mappings":"AAoBA,OAAO,EACL,6BAA6B,EAC7B,6BAA6B,EAC7B,yBAAyB,GAC1B,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EACL,sBAAsB,EACtB,uBAAuB,EACvB,kBAAkB,EAClB,qBAAqB,EACrB,yBAAyB,EACzB,4BAA4B,EAC5B,+BAA+B,EAC/B,wBAAwB,EACxB,8BAA8B,GAC/B,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EACL,sCAAsC,EACtC,kCAAkC,GACnC,MAAM,wBAAwB,CAAC;AAChC,cAAc,qBAAqB,CAAC;
|
|
1
|
+
{"version":3,"file":"runtime.js","sourceRoot":"","sources":["../src/runtime.ts"],"names":[],"mappings":"AAoBA,OAAO,EACL,6BAA6B,EAC7B,6BAA6B,EAC7B,yBAAyB,GAC1B,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EACL,sBAAsB,EACtB,uBAAuB,EACvB,kBAAkB,EAClB,qBAAqB,EACrB,yBAAyB,EACzB,4BAA4B,EAC5B,+BAA+B,EAC/B,wBAAwB,EACxB,8BAA8B,GAC/B,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EACL,sCAAsC,EACtC,kCAAkC,GACnC,MAAM,wBAAwB,CAAC;AAChC,cAAc,qBAAqB,CAAC;AACpC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,sCAAsC,CAAC;AACrD,cAAc,kCAAkC,CAAC;AA0BjD,OAAO,EACL,iDAAiD,EACjD,mDAAmD,EACnD,oDAAoD,EACpD,qCAAqC,EACrC,6DAA6D,EAC7D,gCAAgC,EAChC,0CAA0C,EAC1C,4CAA4C,EAC5C,qDAAqD,EACrD,oCAAoC,EACpC,oCAAoC,GACrC,MAAM,wBAAwB,CAAC;AAChC,OAAO,EAAE,yCAAyC,EAAE,MAAM,mCAAmC,CAAC","sourcesContent":["export type {\n EditorShadowCastMode,\n EditorShadowDiagnostic,\n EditorShadowDiagnosticCode,\n EditorShadowDiagnosticSeverity,\n EditorShadowLightMode,\n EditorShadowLightSettings,\n EditorShadowMode,\n EditorShadowParams,\n EditorShadowPlanBackend,\n EditorShadowQuality,\n EditorShadowReceiveMode,\n EditorShadowReceiverCandidate,\n EditorShadowResolvedMode,\n EditorShadowResolvedParams,\n EditorShadowResolvedPlan,\n EditorShadowResolvedQuality,\n EditorShadowSettings,\n EditorShadowStaticBinding,\n} from './shadow-types.js';\nexport {\n EDITOR_SHADOW_DEFAULT_QUALITY,\n EDITOR_SHADOW_QUALITY_PRESETS,\n resolveEditorShadowParams,\n} from './shadow-quality.js';\nexport {\n isEditorShadowCastMode,\n isEditorShadowLightMode,\n isEditorShadowMode,\n isEditorShadowQuality,\n isEditorShadowReceiveMode,\n readEditorShadowResolvedMode,\n readEditorShadowResolvedQuality,\n readEditorShadowSettings,\n readEditorShadowSettingsResult,\n} from './shadow-settings.js';\nexport {\n assertEditorShadowResolvedPlanContract,\n assertEditorShadowSettingsContract,\n} from './shadow-validation.js';\nexport * from './shadow-runtime.js';\nexport * from './shadow-map-experiment.js';\nexport * from './shadow-map-experiment-lifecycle.js';\nexport * from './shadow-map-experiment-depth.js';\nexport type {\n EditorSceneBlobShadowPreviewSettings,\n EditorSceneBlobShadowPreviewSettingsInput,\n EditorSceneBlobShadowProfile,\n EditorSceneEnvironmentProfile,\n EditorScenePlanarShadowPreviewSettings,\n EditorScenePlanarShadowPreviewSettingsInput,\n EditorScenePlanarShadowProfile,\n EditorScenePostProcessProfile,\n EditorScenePostProcessSamples,\n EditorScenePostProcessToneMappingType,\n EditorSceneRenderingColorRgb,\n EditorSceneRenderingColorRgba,\n EditorSceneRenderingGroupId,\n EditorSceneRenderingGroupSlot,\n EditorSceneRenderingGroupsProfile,\n EditorSceneRenderingProfile,\n EditorSceneRenderingProfileSummary,\n EditorSceneRenderingTextureRef,\n EditorSceneRenderingVec3,\n EditorSceneResolvedShadowMode,\n EditorSceneStaticProjectedShadowPreviewSettings,\n EditorSceneStaticProjectedShadowPreviewSettingsInput,\n EditorSceneStaticProjectedShadowProfile,\n} from './rendering-profile-types.js';\nexport {\n EDITOR_SCENE_DEFAULT_BLOB_SHADOW_EXCLUDE_PATTERNS,\n EDITOR_SCENE_DEFAULT_PLANAR_SHADOW_EXCLUDE_PATTERNS,\n EDITOR_SCENE_DEFAULT_PLANAR_SHADOW_RECEIVER_PATTERNS,\n EDITOR_SCENE_DEFAULT_RENDERING_GROUPS,\n EDITOR_SCENE_DEFAULT_STATIC_PROJECTED_SHADOW_EXCLUDE_PATTERNS,\n EDITOR_SCENE_RENDERING_GROUP_IDS,\n createEditorSceneBlobShadowPreviewSettings,\n createEditorScenePlanarShadowPreviewSettings,\n createEditorSceneStaticProjectedShadowPreviewSettings,\n normalizeEditorSceneRenderingProfile,\n summarizeEditorSceneRenderingProfile,\n} from './rendering-profile.js';\nexport { assertEditorSceneRenderingProfileContract } from './rendering-profile-validation.js';\n"]}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import type { ShadowMapExperimentDirtyReason, ShadowMapExperimentUpdateClass } from './shadow-map-experiment.js';
|
|
2
|
+
export type ShadowMapExperimentDepthLayer = 'static' | 'dynamic';
|
|
3
|
+
export interface ShadowMapExperimentDepthLayerDecision {
|
|
4
|
+
readonly shouldRefresh: boolean;
|
|
5
|
+
readonly reasons: readonly ShadowMapExperimentDirtyReason[];
|
|
6
|
+
}
|
|
7
|
+
export interface ShadowMapExperimentDepthRefreshDecision {
|
|
8
|
+
readonly static: ShadowMapExperimentDepthLayerDecision;
|
|
9
|
+
readonly dynamic: ShadowMapExperimentDepthLayerDecision;
|
|
10
|
+
readonly composite: ShadowMapExperimentDepthLayerDecision;
|
|
11
|
+
}
|
|
12
|
+
export interface ShadowMapExperimentDepthRefreshSnapshot {
|
|
13
|
+
readonly pendingStaticReasons: readonly ShadowMapExperimentDirtyReason[];
|
|
14
|
+
readonly pendingDynamicReasons: readonly ShadowMapExperimentDirtyReason[];
|
|
15
|
+
}
|
|
16
|
+
export interface ShadowMapExperimentDepthRefreshScheduler {
|
|
17
|
+
markDirty(layer: ShadowMapExperimentDepthLayer, reason: ShadowMapExperimentDirtyReason): void;
|
|
18
|
+
markAllDirty(reason: ShadowMapExperimentDirtyReason): void;
|
|
19
|
+
consumeFrameDecision(): ShadowMapExperimentDepthRefreshDecision;
|
|
20
|
+
snapshot(): ShadowMapExperimentDepthRefreshSnapshot;
|
|
21
|
+
dispose(): void;
|
|
22
|
+
}
|
|
23
|
+
export interface ShadowMapExperimentBounds3 {
|
|
24
|
+
readonly min: readonly [number, number, number];
|
|
25
|
+
readonly max: readonly [number, number, number];
|
|
26
|
+
}
|
|
27
|
+
export interface ShadowMapExperimentInfluenceCoverageInput {
|
|
28
|
+
readonly cameraId: string;
|
|
29
|
+
readonly projectionSignature: string;
|
|
30
|
+
readonly visibleBounds: ShadowMapExperimentBounds3 | null;
|
|
31
|
+
}
|
|
32
|
+
export interface ShadowMapExperimentInfluenceCoverageDecision {
|
|
33
|
+
readonly rebuilt: boolean;
|
|
34
|
+
readonly conservative: boolean;
|
|
35
|
+
readonly revision: number;
|
|
36
|
+
readonly coverage: ShadowMapExperimentBounds3 | null;
|
|
37
|
+
}
|
|
38
|
+
export interface ShadowMapExperimentInfluenceCullingSnapshot {
|
|
39
|
+
readonly guardBandRatio: number;
|
|
40
|
+
readonly coverageRevision: number;
|
|
41
|
+
readonly cameraId: string | null;
|
|
42
|
+
readonly projectionSignature: string | null;
|
|
43
|
+
readonly coverage: ShadowMapExperimentBounds3 | null;
|
|
44
|
+
readonly conservative: boolean;
|
|
45
|
+
readonly rebuildCount: number;
|
|
46
|
+
}
|
|
47
|
+
export interface ShadowMapExperimentInfluenceCullingState {
|
|
48
|
+
configure(guardBandRatio: number): void;
|
|
49
|
+
updateCoverage(input: ShadowMapExperimentInfluenceCoverageInput): ShadowMapExperimentInfluenceCoverageDecision;
|
|
50
|
+
shouldRetainCaster(input: {
|
|
51
|
+
readonly casterBounds: ShadowMapExperimentBounds3 | null;
|
|
52
|
+
readonly lightDirection: readonly [number, number, number] | null;
|
|
53
|
+
readonly projectionDistance: number;
|
|
54
|
+
}): boolean;
|
|
55
|
+
snapshot(): ShadowMapExperimentInfluenceCullingSnapshot;
|
|
56
|
+
dispose(): void;
|
|
57
|
+
}
|
|
58
|
+
export declare function shadowMapExperimentDepthLayerForUpdateClass(updateClass: ShadowMapExperimentUpdateClass): ShadowMapExperimentDepthLayer;
|
|
59
|
+
export declare function createShadowMapExperimentDepthRefreshScheduler(): ShadowMapExperimentDepthRefreshScheduler;
|
|
60
|
+
export declare function createShadowMapExperimentInfluenceCullingState(guardBandRatio?: number): ShadowMapExperimentInfluenceCullingState;
|
|
61
|
+
//# sourceMappingURL=shadow-map-experiment-depth.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"shadow-map-experiment-depth.d.ts","sourceRoot":"","sources":["../src/shadow-map-experiment-depth.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,176 @@
|
|
|
1
|
+
export function shadowMapExperimentDepthLayerForUpdateClass(updateClass) {
|
|
2
|
+
return updateClass === 'static' ? 'static' : 'dynamic';
|
|
3
|
+
}
|
|
4
|
+
export function createShadowMapExperimentDepthRefreshScheduler() {
|
|
5
|
+
let disposed = false;
|
|
6
|
+
const pendingStatic = new Set();
|
|
7
|
+
const pendingDynamic = new Set();
|
|
8
|
+
const assertUsable = () => {
|
|
9
|
+
if (disposed)
|
|
10
|
+
throw new Error('Shadow Map experiment depth refresh scheduler is disposed.');
|
|
11
|
+
};
|
|
12
|
+
return {
|
|
13
|
+
markDirty(layer, reason) {
|
|
14
|
+
assertUsable();
|
|
15
|
+
(layer === 'static' ? pendingStatic : pendingDynamic).add(reason);
|
|
16
|
+
},
|
|
17
|
+
markAllDirty(reason) {
|
|
18
|
+
assertUsable();
|
|
19
|
+
pendingStatic.add(reason);
|
|
20
|
+
pendingDynamic.add(reason);
|
|
21
|
+
},
|
|
22
|
+
consumeFrameDecision() {
|
|
23
|
+
assertUsable();
|
|
24
|
+
const staticReasons = Object.freeze([...pendingStatic]);
|
|
25
|
+
const dynamicReasons = Object.freeze([...pendingDynamic]);
|
|
26
|
+
pendingStatic.clear();
|
|
27
|
+
pendingDynamic.clear();
|
|
28
|
+
const compositeReasons = Object.freeze([...new Set([...staticReasons, ...dynamicReasons])]);
|
|
29
|
+
return Object.freeze({
|
|
30
|
+
static: Object.freeze({ shouldRefresh: staticReasons.length > 0, reasons: staticReasons }),
|
|
31
|
+
dynamic: Object.freeze({ shouldRefresh: dynamicReasons.length > 0, reasons: dynamicReasons }),
|
|
32
|
+
composite: Object.freeze({ shouldRefresh: compositeReasons.length > 0, reasons: compositeReasons }),
|
|
33
|
+
});
|
|
34
|
+
},
|
|
35
|
+
snapshot() {
|
|
36
|
+
return Object.freeze({
|
|
37
|
+
pendingStaticReasons: Object.freeze([...pendingStatic]),
|
|
38
|
+
pendingDynamicReasons: Object.freeze([...pendingDynamic]),
|
|
39
|
+
});
|
|
40
|
+
},
|
|
41
|
+
dispose() {
|
|
42
|
+
if (disposed)
|
|
43
|
+
return;
|
|
44
|
+
disposed = true;
|
|
45
|
+
pendingStatic.clear();
|
|
46
|
+
pendingDynamic.clear();
|
|
47
|
+
},
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
export function createShadowMapExperimentInfluenceCullingState(guardBandRatio = 0.25) {
|
|
51
|
+
if (!Number.isFinite(guardBandRatio) || guardBandRatio < 0) {
|
|
52
|
+
throw new Error('shadowMapExperiment.influenceGuardBandInvalid');
|
|
53
|
+
}
|
|
54
|
+
let disposed = false;
|
|
55
|
+
let currentGuardBandRatio = guardBandRatio;
|
|
56
|
+
let cameraId = null;
|
|
57
|
+
let projectionSignature = null;
|
|
58
|
+
let coverage = null;
|
|
59
|
+
let hasCoverageInput = false;
|
|
60
|
+
let normalizedCoverageAvailable = false;
|
|
61
|
+
let conservative = true;
|
|
62
|
+
let coverageRevision = 0;
|
|
63
|
+
let rebuildCount = 0;
|
|
64
|
+
const assertUsable = () => {
|
|
65
|
+
if (disposed)
|
|
66
|
+
throw new Error('Shadow Map experiment influence culling state is disposed.');
|
|
67
|
+
};
|
|
68
|
+
return {
|
|
69
|
+
configure(nextGuardBandRatio) {
|
|
70
|
+
assertUsable();
|
|
71
|
+
if (!Number.isFinite(nextGuardBandRatio) || nextGuardBandRatio < 0) {
|
|
72
|
+
throw new Error('shadowMapExperiment.influenceGuardBandInvalid');
|
|
73
|
+
}
|
|
74
|
+
currentGuardBandRatio = nextGuardBandRatio;
|
|
75
|
+
cameraId = null;
|
|
76
|
+
projectionSignature = null;
|
|
77
|
+
coverage = null;
|
|
78
|
+
hasCoverageInput = false;
|
|
79
|
+
normalizedCoverageAvailable = false;
|
|
80
|
+
conservative = true;
|
|
81
|
+
},
|
|
82
|
+
updateCoverage(input) {
|
|
83
|
+
assertUsable();
|
|
84
|
+
const visibleBounds = normalizeBounds(input.visibleBounds);
|
|
85
|
+
const identityChanged = cameraId !== input.cameraId || projectionSignature !== input.projectionSignature;
|
|
86
|
+
const availabilityChanged = hasCoverageInput && normalizedCoverageAvailable !== (visibleBounds !== null);
|
|
87
|
+
const remainsCovered = !identityChanged && !availabilityChanged && hasCoverageInput
|
|
88
|
+
&& (visibleBounds === null || (coverage !== null && containsBounds(coverage, visibleBounds)));
|
|
89
|
+
if (remainsCovered) {
|
|
90
|
+
return Object.freeze({ rebuilt: false, conservative, revision: coverageRevision, coverage });
|
|
91
|
+
}
|
|
92
|
+
cameraId = input.cameraId;
|
|
93
|
+
projectionSignature = input.projectionSignature;
|
|
94
|
+
hasCoverageInput = true;
|
|
95
|
+
normalizedCoverageAvailable = visibleBounds !== null;
|
|
96
|
+
coverage = visibleBounds ? expandBounds(visibleBounds, currentGuardBandRatio) : null;
|
|
97
|
+
conservative = coverage === null;
|
|
98
|
+
coverageRevision += 1;
|
|
99
|
+
rebuildCount += 1;
|
|
100
|
+
return Object.freeze({ rebuilt: true, conservative, revision: coverageRevision, coverage });
|
|
101
|
+
},
|
|
102
|
+
shouldRetainCaster(input) {
|
|
103
|
+
assertUsable();
|
|
104
|
+
const casterBounds = normalizeBounds(input.casterBounds);
|
|
105
|
+
const direction = normalizeDirection(input.lightDirection);
|
|
106
|
+
if (!coverage || !casterBounds || !direction || !Number.isFinite(input.projectionDistance) || input.projectionDistance < 0) {
|
|
107
|
+
return true;
|
|
108
|
+
}
|
|
109
|
+
const projectedBounds = extrudeBounds(casterBounds, direction, input.projectionDistance);
|
|
110
|
+
return intersectsBounds(projectedBounds, coverage);
|
|
111
|
+
},
|
|
112
|
+
snapshot() {
|
|
113
|
+
return Object.freeze({
|
|
114
|
+
guardBandRatio: currentGuardBandRatio,
|
|
115
|
+
coverageRevision,
|
|
116
|
+
cameraId,
|
|
117
|
+
projectionSignature,
|
|
118
|
+
coverage,
|
|
119
|
+
conservative,
|
|
120
|
+
rebuildCount,
|
|
121
|
+
});
|
|
122
|
+
},
|
|
123
|
+
dispose() {
|
|
124
|
+
if (disposed)
|
|
125
|
+
return;
|
|
126
|
+
disposed = true;
|
|
127
|
+
cameraId = null;
|
|
128
|
+
projectionSignature = null;
|
|
129
|
+
coverage = null;
|
|
130
|
+
hasCoverageInput = false;
|
|
131
|
+
normalizedCoverageAvailable = false;
|
|
132
|
+
conservative = true;
|
|
133
|
+
},
|
|
134
|
+
};
|
|
135
|
+
}
|
|
136
|
+
function normalizeBounds(value) {
|
|
137
|
+
if (!value || value.min.length !== 3 || value.max.length !== 3)
|
|
138
|
+
return null;
|
|
139
|
+
const min = value.min.map(Number);
|
|
140
|
+
const max = value.max.map(Number);
|
|
141
|
+
if (![...min, ...max].every(Number.isFinite))
|
|
142
|
+
return null;
|
|
143
|
+
if (min.some((entry, index) => entry > max[index]))
|
|
144
|
+
return null;
|
|
145
|
+
return Object.freeze({ min: Object.freeze(min), max: Object.freeze(max) });
|
|
146
|
+
}
|
|
147
|
+
function normalizeDirection(value) {
|
|
148
|
+
if (!value || value.length !== 3 || !value.every(Number.isFinite))
|
|
149
|
+
return null;
|
|
150
|
+
const length = Math.hypot(value[0], value[1], value[2]);
|
|
151
|
+
if (length < 1e-8)
|
|
152
|
+
return null;
|
|
153
|
+
return [value[0] / length, value[1] / length, value[2] / length];
|
|
154
|
+
}
|
|
155
|
+
function expandBounds(bounds, ratio) {
|
|
156
|
+
const margin = bounds.min.map((entry, index) => (bounds.max[index] - entry) * ratio);
|
|
157
|
+
return Object.freeze({
|
|
158
|
+
min: Object.freeze(bounds.min.map((entry, index) => entry - margin[index])),
|
|
159
|
+
max: Object.freeze(bounds.max.map((entry, index) => entry + margin[index])),
|
|
160
|
+
});
|
|
161
|
+
}
|
|
162
|
+
function extrudeBounds(bounds, direction, distance) {
|
|
163
|
+
const offset = direction.map(entry => entry * distance);
|
|
164
|
+
return Object.freeze({
|
|
165
|
+
min: Object.freeze(bounds.min.map((entry, index) => Math.min(entry, entry + offset[index]))),
|
|
166
|
+
max: Object.freeze(bounds.max.map((entry, index) => Math.max(entry, entry + offset[index]))),
|
|
167
|
+
});
|
|
168
|
+
}
|
|
169
|
+
function containsBounds(outer, inner) {
|
|
170
|
+
return inner.min.every((entry, index) => entry >= outer.min[index])
|
|
171
|
+
&& inner.max.every((entry, index) => entry <= outer.max[index]);
|
|
172
|
+
}
|
|
173
|
+
function intersectsBounds(left, right) {
|
|
174
|
+
return left.min.every((entry, index) => entry <= right.max[index] && left.max[index] >= right.min[index]);
|
|
175
|
+
}
|
|
176
|
+
//# sourceMappingURL=shadow-map-experiment-depth.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"shadow-map-experiment-depth.js","sourceRoot":"","sources":["../src/shadow-map-experiment-depth.ts"],"names":[],"mappings":"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","sourcesContent":["import type {\n ShadowMapExperimentDirtyReason,\n ShadowMapExperimentUpdateClass,\n} from './shadow-map-experiment.js';\n\nexport type ShadowMapExperimentDepthLayer = 'static' | 'dynamic';\n\nexport interface ShadowMapExperimentDepthLayerDecision {\n readonly shouldRefresh: boolean;\n readonly reasons: readonly ShadowMapExperimentDirtyReason[];\n}\n\nexport interface ShadowMapExperimentDepthRefreshDecision {\n readonly static: ShadowMapExperimentDepthLayerDecision;\n readonly dynamic: ShadowMapExperimentDepthLayerDecision;\n readonly composite: ShadowMapExperimentDepthLayerDecision;\n}\n\nexport interface ShadowMapExperimentDepthRefreshSnapshot {\n readonly pendingStaticReasons: readonly ShadowMapExperimentDirtyReason[];\n readonly pendingDynamicReasons: readonly ShadowMapExperimentDirtyReason[];\n}\n\nexport interface ShadowMapExperimentDepthRefreshScheduler {\n markDirty(layer: ShadowMapExperimentDepthLayer, reason: ShadowMapExperimentDirtyReason): void;\n markAllDirty(reason: ShadowMapExperimentDirtyReason): void;\n consumeFrameDecision(): ShadowMapExperimentDepthRefreshDecision;\n snapshot(): ShadowMapExperimentDepthRefreshSnapshot;\n dispose(): void;\n}\n\nexport interface ShadowMapExperimentBounds3 {\n readonly min: readonly [number, number, number];\n readonly max: readonly [number, number, number];\n}\n\nexport interface ShadowMapExperimentInfluenceCoverageInput {\n readonly cameraId: string;\n readonly projectionSignature: string;\n readonly visibleBounds: ShadowMapExperimentBounds3 | null;\n}\n\nexport interface ShadowMapExperimentInfluenceCoverageDecision {\n readonly rebuilt: boolean;\n readonly conservative: boolean;\n readonly revision: number;\n readonly coverage: ShadowMapExperimentBounds3 | null;\n}\n\nexport interface ShadowMapExperimentInfluenceCullingSnapshot {\n readonly guardBandRatio: number;\n readonly coverageRevision: number;\n readonly cameraId: string | null;\n readonly projectionSignature: string | null;\n readonly coverage: ShadowMapExperimentBounds3 | null;\n readonly conservative: boolean;\n readonly rebuildCount: number;\n}\n\nexport interface ShadowMapExperimentInfluenceCullingState {\n configure(guardBandRatio: number): void;\n updateCoverage(input: ShadowMapExperimentInfluenceCoverageInput): ShadowMapExperimentInfluenceCoverageDecision;\n shouldRetainCaster(input: {\n readonly casterBounds: ShadowMapExperimentBounds3 | null;\n readonly lightDirection: readonly [number, number, number] | null;\n readonly projectionDistance: number;\n }): boolean;\n snapshot(): ShadowMapExperimentInfluenceCullingSnapshot;\n dispose(): void;\n}\n\nexport function shadowMapExperimentDepthLayerForUpdateClass(\n updateClass: ShadowMapExperimentUpdateClass,\n): ShadowMapExperimentDepthLayer {\n return updateClass === 'static' ? 'static' : 'dynamic';\n}\n\nexport function createShadowMapExperimentDepthRefreshScheduler(): ShadowMapExperimentDepthRefreshScheduler {\n let disposed = false;\n const pendingStatic = new Set<ShadowMapExperimentDirtyReason>();\n const pendingDynamic = new Set<ShadowMapExperimentDirtyReason>();\n\n const assertUsable = (): void => {\n if (disposed) throw new Error('Shadow Map experiment depth refresh scheduler is disposed.');\n };\n\n return {\n markDirty(layer, reason) {\n assertUsable();\n (layer === 'static' ? pendingStatic : pendingDynamic).add(reason);\n },\n markAllDirty(reason) {\n assertUsable();\n pendingStatic.add(reason);\n pendingDynamic.add(reason);\n },\n consumeFrameDecision() {\n assertUsable();\n const staticReasons = Object.freeze([...pendingStatic]);\n const dynamicReasons = Object.freeze([...pendingDynamic]);\n pendingStatic.clear();\n pendingDynamic.clear();\n const compositeReasons = Object.freeze([...new Set([...staticReasons, ...dynamicReasons])]);\n return Object.freeze({\n static: Object.freeze({ shouldRefresh: staticReasons.length > 0, reasons: staticReasons }),\n dynamic: Object.freeze({ shouldRefresh: dynamicReasons.length > 0, reasons: dynamicReasons }),\n composite: Object.freeze({ shouldRefresh: compositeReasons.length > 0, reasons: compositeReasons }),\n });\n },\n snapshot() {\n return Object.freeze({\n pendingStaticReasons: Object.freeze([...pendingStatic]),\n pendingDynamicReasons: Object.freeze([...pendingDynamic]),\n });\n },\n dispose() {\n if (disposed) return;\n disposed = true;\n pendingStatic.clear();\n pendingDynamic.clear();\n },\n };\n}\n\nexport function createShadowMapExperimentInfluenceCullingState(\n guardBandRatio = 0.25,\n): ShadowMapExperimentInfluenceCullingState {\n if (!Number.isFinite(guardBandRatio) || guardBandRatio < 0) {\n throw new Error('shadowMapExperiment.influenceGuardBandInvalid');\n }\n let disposed = false;\n let currentGuardBandRatio = guardBandRatio;\n let cameraId: string | null = null;\n let projectionSignature: string | null = null;\n let coverage: ShadowMapExperimentBounds3 | null = null;\n let hasCoverageInput = false;\n let normalizedCoverageAvailable = false;\n let conservative = true;\n let coverageRevision = 0;\n let rebuildCount = 0;\n\n const assertUsable = (): void => {\n if (disposed) throw new Error('Shadow Map experiment influence culling state is disposed.');\n };\n\n return {\n configure(nextGuardBandRatio) {\n assertUsable();\n if (!Number.isFinite(nextGuardBandRatio) || nextGuardBandRatio < 0) {\n throw new Error('shadowMapExperiment.influenceGuardBandInvalid');\n }\n currentGuardBandRatio = nextGuardBandRatio;\n cameraId = null;\n projectionSignature = null;\n coverage = null;\n hasCoverageInput = false;\n normalizedCoverageAvailable = false;\n conservative = true;\n },\n updateCoverage(input) {\n assertUsable();\n const visibleBounds = normalizeBounds(input.visibleBounds);\n const identityChanged = cameraId !== input.cameraId || projectionSignature !== input.projectionSignature;\n const availabilityChanged = hasCoverageInput && normalizedCoverageAvailable !== (visibleBounds !== null);\n const remainsCovered = !identityChanged && !availabilityChanged && hasCoverageInput\n && (visibleBounds === null || (coverage !== null && containsBounds(coverage, visibleBounds)));\n if (remainsCovered) {\n return Object.freeze({ rebuilt: false, conservative, revision: coverageRevision, coverage });\n }\n cameraId = input.cameraId;\n projectionSignature = input.projectionSignature;\n hasCoverageInput = true;\n normalizedCoverageAvailable = visibleBounds !== null;\n coverage = visibleBounds ? expandBounds(visibleBounds, currentGuardBandRatio) : null;\n conservative = coverage === null;\n coverageRevision += 1;\n rebuildCount += 1;\n return Object.freeze({ rebuilt: true, conservative, revision: coverageRevision, coverage });\n },\n shouldRetainCaster(input) {\n assertUsable();\n const casterBounds = normalizeBounds(input.casterBounds);\n const direction = normalizeDirection(input.lightDirection);\n if (!coverage || !casterBounds || !direction || !Number.isFinite(input.projectionDistance) || input.projectionDistance < 0) {\n return true;\n }\n const projectedBounds = extrudeBounds(casterBounds, direction, input.projectionDistance);\n return intersectsBounds(projectedBounds, coverage);\n },\n snapshot() {\n return Object.freeze({\n guardBandRatio: currentGuardBandRatio,\n coverageRevision,\n cameraId,\n projectionSignature,\n coverage,\n conservative,\n rebuildCount,\n });\n },\n dispose() {\n if (disposed) return;\n disposed = true;\n cameraId = null;\n projectionSignature = null;\n coverage = null;\n hasCoverageInput = false;\n normalizedCoverageAvailable = false;\n conservative = true;\n },\n };\n}\n\nfunction normalizeBounds(value: ShadowMapExperimentBounds3 | null): ShadowMapExperimentBounds3 | null {\n if (!value || value.min.length !== 3 || value.max.length !== 3) return null;\n const min = value.min.map(Number) as [number, number, number];\n const max = value.max.map(Number) as [number, number, number];\n if (![...min, ...max].every(Number.isFinite)) return null;\n if (min.some((entry, index) => entry > max[index])) return null;\n return Object.freeze({ min: Object.freeze(min), max: Object.freeze(max) });\n}\n\nfunction normalizeDirection(value: readonly [number, number, number] | null): [number, number, number] | null {\n if (!value || value.length !== 3 || !value.every(Number.isFinite)) return null;\n const length = Math.hypot(value[0], value[1], value[2]);\n if (length < 1e-8) return null;\n return [value[0] / length, value[1] / length, value[2] / length];\n}\n\nfunction expandBounds(bounds: ShadowMapExperimentBounds3, ratio: number): ShadowMapExperimentBounds3 {\n const margin = bounds.min.map((entry, index) => (bounds.max[index] - entry) * ratio) as [number, number, number];\n return Object.freeze({\n min: Object.freeze(bounds.min.map((entry, index) => entry - margin[index]) as [number, number, number]),\n max: Object.freeze(bounds.max.map((entry, index) => entry + margin[index]) as [number, number, number]),\n });\n}\n\nfunction extrudeBounds(\n bounds: ShadowMapExperimentBounds3,\n direction: readonly [number, number, number],\n distance: number,\n): ShadowMapExperimentBounds3 {\n const offset = direction.map(entry => entry * distance) as [number, number, number];\n return Object.freeze({\n min: Object.freeze(bounds.min.map((entry, index) => Math.min(entry, entry + offset[index])) as [number, number, number]),\n max: Object.freeze(bounds.max.map((entry, index) => Math.max(entry, entry + offset[index])) as [number, number, number]),\n });\n}\n\nfunction containsBounds(outer: ShadowMapExperimentBounds3, inner: ShadowMapExperimentBounds3): boolean {\n return inner.min.every((entry, index) => entry >= outer.min[index])\n && inner.max.every((entry, index) => entry <= outer.max[index]);\n}\n\nfunction intersectsBounds(left: ShadowMapExperimentBounds3, right: ShadowMapExperimentBounds3): boolean {\n return left.min.every((entry, index) => entry <= right.max[index] && left.max[index] >= right.min[index]);\n}\n"]}
|