@aura3d/engine 1.0.0
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/README.md +115 -0
- package/dist/animation/AnimationAction.d.ts +40 -0
- package/dist/animation/AnimationAction.d.ts.map +1 -0
- package/dist/animation/AnimationAction.js +143 -0
- package/dist/animation/AnimationAction.js.map +1 -0
- package/dist/animation/AnimationClip.d.ts +24 -0
- package/dist/animation/AnimationClip.d.ts.map +1 -0
- package/dist/animation/AnimationClip.js +45 -0
- package/dist/animation/AnimationClip.js.map +1 -0
- package/dist/animation/AnimationEvents.d.ts +10 -0
- package/dist/animation/AnimationEvents.d.ts.map +1 -0
- package/dist/animation/AnimationEvents.js +26 -0
- package/dist/animation/AnimationEvents.js.map +1 -0
- package/dist/animation/AnimationLayer.d.ts +27 -0
- package/dist/animation/AnimationLayer.d.ts.map +1 -0
- package/dist/animation/AnimationLayer.js +53 -0
- package/dist/animation/AnimationLayer.js.map +1 -0
- package/dist/animation/AnimationMixer.d.ts +54 -0
- package/dist/animation/AnimationMixer.d.ts.map +1 -0
- package/dist/animation/AnimationMixer.js +319 -0
- package/dist/animation/AnimationMixer.js.map +1 -0
- package/dist/animation/AnimationStateMachine.d.ts +43 -0
- package/dist/animation/AnimationStateMachine.d.ts.map +1 -0
- package/dist/animation/AnimationStateMachine.js +92 -0
- package/dist/animation/AnimationStateMachine.js.map +1 -0
- package/dist/animation/AnimationTrack.d.ts +23 -0
- package/dist/animation/AnimationTrack.d.ts.map +1 -0
- package/dist/animation/AnimationTrack.js +124 -0
- package/dist/animation/AnimationTrack.js.map +1 -0
- package/dist/animation/BlendTree.d.ts +23 -0
- package/dist/animation/BlendTree.d.ts.map +1 -0
- package/dist/animation/BlendTree.js +68 -0
- package/dist/animation/BlendTree.js.map +1 -0
- package/dist/animation/Bone.d.ts +20 -0
- package/dist/animation/Bone.d.ts.map +1 -0
- package/dist/animation/Bone.js +24 -0
- package/dist/animation/Bone.js.map +1 -0
- package/dist/animation/CrowdAnimation.d.ts +13 -0
- package/dist/animation/CrowdAnimation.d.ts.map +1 -0
- package/dist/animation/CrowdAnimation.js +14 -0
- package/dist/animation/CrowdAnimation.js.map +1 -0
- package/dist/animation/ECSAnimationBridge.d.ts +9 -0
- package/dist/animation/ECSAnimationBridge.d.ts.map +1 -0
- package/dist/animation/ECSAnimationBridge.js +24 -0
- package/dist/animation/ECSAnimationBridge.js.map +1 -0
- package/dist/animation/IK.d.ts +24 -0
- package/dist/animation/IK.d.ts.map +1 -0
- package/dist/animation/IK.js +76 -0
- package/dist/animation/IK.js.map +1 -0
- package/dist/animation/Keyframe.d.ts +50 -0
- package/dist/animation/Keyframe.d.ts.map +1 -0
- package/dist/animation/Keyframe.js +118 -0
- package/dist/animation/Keyframe.js.map +1 -0
- package/dist/animation/LocomotionController.d.ts +47 -0
- package/dist/animation/LocomotionController.d.ts.map +1 -0
- package/dist/animation/LocomotionController.js +106 -0
- package/dist/animation/LocomotionController.js.map +1 -0
- package/dist/animation/MotionMatchingFixtures.d.ts +58 -0
- package/dist/animation/MotionMatchingFixtures.d.ts.map +1 -0
- package/dist/animation/MotionMatchingFixtures.js +175 -0
- package/dist/animation/MotionMatchingFixtures.js.map +1 -0
- package/dist/animation/MotionQuality.d.ts +36 -0
- package/dist/animation/MotionQuality.d.ts.map +1 -0
- package/dist/animation/MotionQuality.js +117 -0
- package/dist/animation/MotionQuality.js.map +1 -0
- package/dist/animation/Retargeting.d.ts +12 -0
- package/dist/animation/Retargeting.d.ts.map +1 -0
- package/dist/animation/Retargeting.js +19 -0
- package/dist/animation/Retargeting.js.map +1 -0
- package/dist/animation/RootMotion.d.ts +21 -0
- package/dist/animation/RootMotion.d.ts.map +1 -0
- package/dist/animation/RootMotion.js +84 -0
- package/dist/animation/RootMotion.js.map +1 -0
- package/dist/animation/SceneAnimationBridge.d.ts +18 -0
- package/dist/animation/SceneAnimationBridge.d.ts.map +1 -0
- package/dist/animation/SceneAnimationBridge.js +69 -0
- package/dist/animation/SceneAnimationBridge.js.map +1 -0
- package/dist/animation/SecondaryAnimationFixtures.d.ts +55 -0
- package/dist/animation/SecondaryAnimationFixtures.d.ts.map +1 -0
- package/dist/animation/SecondaryAnimationFixtures.js +147 -0
- package/dist/animation/SecondaryAnimationFixtures.js.map +1 -0
- package/dist/animation/Skeleton.d.ts +9 -0
- package/dist/animation/Skeleton.d.ts.map +1 -0
- package/dist/animation/Skeleton.js +31 -0
- package/dist/animation/Skeleton.js.map +1 -0
- package/dist/animation/Skinning.d.ts +7 -0
- package/dist/animation/Skinning.d.ts.map +1 -0
- package/dist/animation/Skinning.js +12 -0
- package/dist/animation/Skinning.js.map +1 -0
- package/dist/animation/browser-index.d.ts +21 -0
- package/dist/animation/browser-index.d.ts.map +1 -0
- package/dist/animation/browser-index.js +21 -0
- package/dist/animation/browser-index.js.map +1 -0
- package/dist/animation/index.d.ts +24 -0
- package/dist/animation/index.d.ts.map +1 -0
- package/dist/animation/index.js +24 -0
- package/dist/animation/index.js.map +1 -0
- package/dist/animation/threejs-compatibility/AnimationAction.d.ts +16 -0
- package/dist/animation/threejs-compatibility/AnimationAction.d.ts.map +1 -0
- package/dist/animation/threejs-compatibility/AnimationAction.js +25 -0
- package/dist/animation/threejs-compatibility/AnimationAction.js.map +1 -0
- package/dist/animation/threejs-compatibility/AnimationClip.d.ts +14 -0
- package/dist/animation/threejs-compatibility/AnimationClip.d.ts.map +1 -0
- package/dist/animation/threejs-compatibility/AnimationClip.js +11 -0
- package/dist/animation/threejs-compatibility/AnimationClip.js.map +1 -0
- package/dist/animation/threejs-compatibility/AnimationDiagnostics.d.ts +44 -0
- package/dist/animation/threejs-compatibility/AnimationDiagnostics.d.ts.map +1 -0
- package/dist/animation/threejs-compatibility/AnimationDiagnostics.js +31 -0
- package/dist/animation/threejs-compatibility/AnimationDiagnostics.js.map +1 -0
- package/dist/animation/threejs-compatibility/AnimationMixer.d.ts +9 -0
- package/dist/animation/threejs-compatibility/AnimationMixer.d.ts.map +1 -0
- package/dist/animation/threejs-compatibility/AnimationMixer.js +24 -0
- package/dist/animation/threejs-compatibility/AnimationMixer.js.map +1 -0
- package/dist/animation/threejs-compatibility/MorphTargetMixer.d.ts +10 -0
- package/dist/animation/threejs-compatibility/MorphTargetMixer.d.ts.map +1 -0
- package/dist/animation/threejs-compatibility/MorphTargetMixer.js +10 -0
- package/dist/animation/threejs-compatibility/MorphTargetMixer.js.map +1 -0
- package/dist/animation/threejs-compatibility/Skeleton.d.ts +10 -0
- package/dist/animation/threejs-compatibility/Skeleton.d.ts.map +1 -0
- package/dist/animation/threejs-compatibility/Skeleton.js +8 -0
- package/dist/animation/threejs-compatibility/Skeleton.js.map +1 -0
- package/dist/animation/threejs-compatibility/SkinnedMesh.d.ts +11 -0
- package/dist/animation/threejs-compatibility/SkinnedMesh.d.ts.map +1 -0
- package/dist/animation/threejs-compatibility/SkinnedMesh.js +16 -0
- package/dist/animation/threejs-compatibility/SkinnedMesh.js.map +1 -0
- package/dist/animation/threejs-compatibility/index.d.ts +12 -0
- package/dist/animation/threejs-compatibility/index.d.ts.map +1 -0
- package/dist/animation/threejs-compatibility/index.js +8 -0
- package/dist/animation/threejs-compatibility/index.js.map +1 -0
- package/dist/apps/index.d.ts +50 -0
- package/dist/apps/index.d.ts.map +1 -0
- package/dist/apps/index.js +99 -0
- package/dist/apps/index.js.map +1 -0
- package/dist/assets/AdvancedAssetCorpus.d.ts +124 -0
- package/dist/assets/AdvancedAssetCorpus.d.ts.map +1 -0
- package/dist/assets/AdvancedAssetCorpus.js +266 -0
- package/dist/assets/AdvancedAssetCorpus.js.map +1 -0
- package/dist/assets/AssetBundleCacheFixtures.d.ts +62 -0
- package/dist/assets/AssetBundleCacheFixtures.d.ts.map +1 -0
- package/dist/assets/AssetBundleCacheFixtures.js +222 -0
- package/dist/assets/AssetBundleCacheFixtures.js.map +1 -0
- package/dist/assets/AssetCache.d.ts +21 -0
- package/dist/assets/AssetCache.d.ts.map +1 -0
- package/dist/assets/AssetCache.js +54 -0
- package/dist/assets/AssetCache.js.map +1 -0
- package/dist/assets/AssetCompatibility.d.ts +54 -0
- package/dist/assets/AssetCompatibility.d.ts.map +1 -0
- package/dist/assets/AssetCompatibility.js +122 -0
- package/dist/assets/AssetCompatibility.js.map +1 -0
- package/dist/assets/AssetCorpus.d.ts +88 -0
- package/dist/assets/AssetCorpus.d.ts.map +1 -0
- package/dist/assets/AssetCorpus.js +215 -0
- package/dist/assets/AssetCorpus.js.map +1 -0
- package/dist/assets/AssetDependencyGraph.d.ts +12 -0
- package/dist/assets/AssetDependencyGraph.d.ts.map +1 -0
- package/dist/assets/AssetDependencyGraph.js +66 -0
- package/dist/assets/AssetDependencyGraph.js.map +1 -0
- package/dist/assets/AssetHandle.d.ts +26 -0
- package/dist/assets/AssetHandle.d.ts.map +1 -0
- package/dist/assets/AssetHandle.js +53 -0
- package/dist/assets/AssetHandle.js.map +1 -0
- package/dist/assets/AssetImportPreflight.d.ts +43 -0
- package/dist/assets/AssetImportPreflight.d.ts.map +1 -0
- package/dist/assets/AssetImportPreflight.js +117 -0
- package/dist/assets/AssetImportPreflight.js.map +1 -0
- package/dist/assets/AssetInspection.d.ts +183 -0
- package/dist/assets/AssetInspection.d.ts.map +1 -0
- package/dist/assets/AssetInspection.js +397 -0
- package/dist/assets/AssetInspection.js.map +1 -0
- package/dist/assets/AssetLoader.d.ts +26 -0
- package/dist/assets/AssetLoader.d.ts.map +1 -0
- package/dist/assets/AssetLoader.js +12 -0
- package/dist/assets/AssetLoader.js.map +1 -0
- package/dist/assets/AssetManager.d.ts +37 -0
- package/dist/assets/AssetManager.d.ts.map +1 -0
- package/dist/assets/AssetManager.js +161 -0
- package/dist/assets/AssetManager.js.map +1 -0
- package/dist/assets/AssetRegistry.d.ts +10 -0
- package/dist/assets/AssetRegistry.d.ts.map +1 -0
- package/dist/assets/AssetRegistry.js +34 -0
- package/dist/assets/AssetRegistry.js.map +1 -0
- package/dist/assets/AssetRenderDefaults.d.ts +13 -0
- package/dist/assets/AssetRenderDefaults.d.ts.map +1 -0
- package/dist/assets/AssetRenderDefaults.js +23 -0
- package/dist/assets/AssetRenderDefaults.js.map +1 -0
- package/dist/assets/AudioLoader.d.ts +17 -0
- package/dist/assets/AudioLoader.d.ts.map +1 -0
- package/dist/assets/AudioLoader.js +23 -0
- package/dist/assets/AudioLoader.js.map +1 -0
- package/dist/assets/BlenderExportValidation.d.ts +64 -0
- package/dist/assets/BlenderExportValidation.d.ts.map +1 -0
- package/dist/assets/BlenderExportValidation.js +143 -0
- package/dist/assets/BlenderExportValidation.js.map +1 -0
- package/dist/assets/CarConceptMaterialStability.d.ts +28 -0
- package/dist/assets/CarConceptMaterialStability.d.ts.map +1 -0
- package/dist/assets/CarConceptMaterialStability.js +1308 -0
- package/dist/assets/CarConceptMaterialStability.js.map +1 -0
- package/dist/assets/EXRLoader.d.ts +2 -0
- package/dist/assets/EXRLoader.d.ts.map +1 -0
- package/dist/assets/EXRLoader.js +2 -0
- package/dist/assets/EXRLoader.js.map +1 -0
- package/dist/assets/ExternalParityGLTFCorpus.d.ts +39 -0
- package/dist/assets/ExternalParityGLTFCorpus.d.ts.map +1 -0
- package/dist/assets/ExternalParityGLTFCorpus.js +32 -0
- package/dist/assets/ExternalParityGLTFCorpus.js.map +1 -0
- package/dist/assets/GLTFAnimationRuntime.d.ts +243 -0
- package/dist/assets/GLTFAnimationRuntime.d.ts.map +1 -0
- package/dist/assets/GLTFAnimationRuntime.js +954 -0
- package/dist/assets/GLTFAnimationRuntime.js.map +1 -0
- package/dist/assets/GLTFCompressionDecoders.d.ts +42 -0
- package/dist/assets/GLTFCompressionDecoders.d.ts.map +1 -0
- package/dist/assets/GLTFCompressionDecoders.js +99 -0
- package/dist/assets/GLTFCompressionDecoders.js.map +1 -0
- package/dist/assets/GLTFExtensionSupport.d.ts +33 -0
- package/dist/assets/GLTFExtensionSupport.d.ts.map +1 -0
- package/dist/assets/GLTFExtensionSupport.js +85 -0
- package/dist/assets/GLTFExtensionSupport.js.map +1 -0
- package/dist/assets/GLTFLoader.d.ts +361 -0
- package/dist/assets/GLTFLoader.d.ts.map +1 -0
- package/dist/assets/GLTFLoader.js +2735 -0
- package/dist/assets/GLTFLoader.js.map +1 -0
- package/dist/assets/GLTFRenderResources.d.ts +162 -0
- package/dist/assets/GLTFRenderResources.d.ts.map +1 -0
- package/dist/assets/GLTFRenderResources.js +1684 -0
- package/dist/assets/GLTFRenderResources.js.map +1 -0
- package/dist/assets/HDRLoader.d.ts +2 -0
- package/dist/assets/HDRLoader.d.ts.map +1 -0
- package/dist/assets/HDRLoader.js +2 -0
- package/dist/assets/HDRLoader.js.map +1 -0
- package/dist/assets/ImageLoader.d.ts +15 -0
- package/dist/assets/ImageLoader.d.ts.map +1 -0
- package/dist/assets/ImageLoader.js +36 -0
- package/dist/assets/ImageLoader.js.map +1 -0
- package/dist/assets/ImportPipeline.d.ts +39 -0
- package/dist/assets/ImportPipeline.d.ts.map +1 -0
- package/dist/assets/ImportPipeline.js +105 -0
- package/dist/assets/ImportPipeline.js.map +1 -0
- package/dist/assets/KTX2BasisTextureTranscoder.d.ts +9 -0
- package/dist/assets/KTX2BasisTextureTranscoder.d.ts.map +1 -0
- package/dist/assets/KTX2BasisTextureTranscoder.js +178 -0
- package/dist/assets/KTX2BasisTextureTranscoder.js.map +1 -0
- package/dist/assets/LoadContext.d.ts +20 -0
- package/dist/assets/LoadContext.d.ts.map +1 -0
- package/dist/assets/LoadContext.js +42 -0
- package/dist/assets/LoadContext.js.map +1 -0
- package/dist/assets/MaterialLoader.d.ts +17 -0
- package/dist/assets/MaterialLoader.d.ts.map +1 -0
- package/dist/assets/MaterialLoader.js +138 -0
- package/dist/assets/MaterialLoader.js.map +1 -0
- package/dist/assets/MeshOptimization.d.ts +20 -0
- package/dist/assets/MeshOptimization.d.ts.map +1 -0
- package/dist/assets/MeshOptimization.js +65 -0
- package/dist/assets/MeshOptimization.js.map +1 -0
- package/dist/assets/OBJLoader.d.ts +13 -0
- package/dist/assets/OBJLoader.d.ts.map +1 -0
- package/dist/assets/OBJLoader.js +492 -0
- package/dist/assets/OBJLoader.js.map +1 -0
- package/dist/assets/SceneAnalysisFixtures.d.ts +100 -0
- package/dist/assets/SceneAnalysisFixtures.d.ts.map +1 -0
- package/dist/assets/SceneAnalysisFixtures.js +331 -0
- package/dist/assets/SceneAnalysisFixtures.js.map +1 -0
- package/dist/assets/SceneLoader.d.ts +27 -0
- package/dist/assets/SceneLoader.d.ts.map +1 -0
- package/dist/assets/SceneLoader.js +40 -0
- package/dist/assets/SceneLoader.js.map +1 -0
- package/dist/assets/ShaderLoader.d.ts +12 -0
- package/dist/assets/ShaderLoader.d.ts.map +1 -0
- package/dist/assets/ShaderLoader.js +18 -0
- package/dist/assets/ShaderLoader.js.map +1 -0
- package/dist/assets/TextureLoader.d.ts +16 -0
- package/dist/assets/TextureLoader.d.ts.map +1 -0
- package/dist/assets/TextureLoader.js +17 -0
- package/dist/assets/TextureLoader.js.map +1 -0
- package/dist/assets/TexturePipeline.d.ts +24 -0
- package/dist/assets/TexturePipeline.d.ts.map +1 -0
- package/dist/assets/TexturePipeline.js +64 -0
- package/dist/assets/TexturePipeline.js.map +1 -0
- package/dist/assets/TextureStreaming.d.ts +10 -0
- package/dist/assets/TextureStreaming.d.ts.map +1 -0
- package/dist/assets/TextureStreaming.js +11 -0
- package/dist/assets/TextureStreaming.js.map +1 -0
- package/dist/assets/WorkerAssetJobs.d.ts +18 -0
- package/dist/assets/WorkerAssetJobs.d.ts.map +1 -0
- package/dist/assets/WorkerAssetJobs.js +37 -0
- package/dist/assets/WorkerAssetJobs.js.map +1 -0
- package/dist/assets/advanced-gallery/index.d.ts +3 -0
- package/dist/assets/advanced-gallery/index.d.ts.map +1 -0
- package/dist/assets/advanced-gallery/index.js +2 -0
- package/dist/assets/advanced-gallery/index.js.map +1 -0
- package/dist/assets/asset-corpus/GLTFSceneLoader.d.ts +3 -0
- package/dist/assets/asset-corpus/GLTFSceneLoader.d.ts.map +1 -0
- package/dist/assets/asset-corpus/GLTFSceneLoader.js +2 -0
- package/dist/assets/asset-corpus/GLTFSceneLoader.js.map +1 -0
- package/dist/assets/asset-corpus/ProductionAssetCorpus.d.ts +89 -0
- package/dist/assets/asset-corpus/ProductionAssetCorpus.d.ts.map +1 -0
- package/dist/assets/asset-corpus/ProductionAssetCorpus.js +116 -0
- package/dist/assets/asset-corpus/ProductionAssetCorpus.js.map +1 -0
- package/dist/assets/asset-corpus/ProductionAssetPipeline.d.ts +3 -0
- package/dist/assets/asset-corpus/ProductionAssetPipeline.d.ts.map +1 -0
- package/dist/assets/asset-corpus/ProductionAssetPipeline.js +3 -0
- package/dist/assets/asset-corpus/ProductionAssetPipeline.js.map +1 -0
- package/dist/assets/asset-corpus/ProductionGLTFRenderPipeline.d.ts +65 -0
- package/dist/assets/asset-corpus/ProductionGLTFRenderPipeline.d.ts.map +1 -0
- package/dist/assets/asset-corpus/ProductionGLTFRenderPipeline.js +110 -0
- package/dist/assets/asset-corpus/ProductionGLTFRenderPipeline.js.map +1 -0
- package/dist/assets/asset-corpus/ProductionHDRTextureLoader.d.ts +8 -0
- package/dist/assets/asset-corpus/ProductionHDRTextureLoader.d.ts.map +1 -0
- package/dist/assets/asset-corpus/ProductionHDRTextureLoader.js +2 -0
- package/dist/assets/asset-corpus/ProductionHDRTextureLoader.js.map +1 -0
- package/dist/assets/asset-corpus/ProductionKTX2TextureLoader.d.ts +7 -0
- package/dist/assets/asset-corpus/ProductionKTX2TextureLoader.d.ts.map +1 -0
- package/dist/assets/asset-corpus/ProductionKTX2TextureLoader.js +2 -0
- package/dist/assets/asset-corpus/ProductionKTX2TextureLoader.js.map +1 -0
- package/dist/assets/asset-corpus/ProductionTextureLoader.d.ts +7 -0
- package/dist/assets/asset-corpus/ProductionTextureLoader.d.ts.map +1 -0
- package/dist/assets/asset-corpus/ProductionTextureLoader.js +2 -0
- package/dist/assets/asset-corpus/ProductionTextureLoader.js.map +1 -0
- package/dist/assets/asset-corpus/index.d.ts +10 -0
- package/dist/assets/asset-corpus/index.d.ts.map +1 -0
- package/dist/assets/asset-corpus/index.js +8 -0
- package/dist/assets/asset-corpus/index.js.map +1 -0
- package/dist/assets/browser-index.d.ts +48 -0
- package/dist/assets/browser-index.d.ts.map +1 -0
- package/dist/assets/browser-index.js +26 -0
- package/dist/assets/browser-index.js.map +1 -0
- package/dist/assets/createRenderableScene.d.ts +23 -0
- package/dist/assets/createRenderableScene.d.ts.map +1 -0
- package/dist/assets/createRenderableScene.js +94 -0
- package/dist/assets/createRenderableScene.js.map +1 -0
- package/dist/assets/index.d.ts +82 -0
- package/dist/assets/index.d.ts.map +1 -0
- package/dist/assets/index.js +45 -0
- package/dist/assets/index.js.map +1 -0
- package/dist/assets/loadRenderableAsset.d.ts +16 -0
- package/dist/assets/loadRenderableAsset.d.ts.map +1 -0
- package/dist/assets/loadRenderableAsset.js +50 -0
- package/dist/assets/loadRenderableAsset.js.map +1 -0
- package/dist/assets/loaders/CubeTextureLoader.d.ts +4 -0
- package/dist/assets/loaders/CubeTextureLoader.d.ts.map +1 -0
- package/dist/assets/loaders/CubeTextureLoader.js +9 -0
- package/dist/assets/loaders/CubeTextureLoader.js.map +1 -0
- package/dist/assets/loaders/EXRLoader.d.ts +4 -0
- package/dist/assets/loaders/EXRLoader.d.ts.map +1 -0
- package/dist/assets/loaders/EXRLoader.js +10 -0
- package/dist/assets/loaders/EXRLoader.js.map +1 -0
- package/dist/assets/loaders/HDRLoader.d.ts +4 -0
- package/dist/assets/loaders/HDRLoader.d.ts.map +1 -0
- package/dist/assets/loaders/HDRLoader.js +7 -0
- package/dist/assets/loaders/HDRLoader.js.map +1 -0
- package/dist/assets/loaders/KTX2Loader.d.ts +4 -0
- package/dist/assets/loaders/KTX2Loader.d.ts.map +1 -0
- package/dist/assets/loaders/KTX2Loader.js +7 -0
- package/dist/assets/loaders/KTX2Loader.js.map +1 -0
- package/dist/assets/loaders/LoaderDiagnostics.d.ts +18 -0
- package/dist/assets/loaders/LoaderDiagnostics.d.ts.map +1 -0
- package/dist/assets/loaders/LoaderDiagnostics.js +18 -0
- package/dist/assets/loaders/LoaderDiagnostics.js.map +1 -0
- package/dist/assets/loaders/MTLLoader.d.ts +10 -0
- package/dist/assets/loaders/MTLLoader.d.ts.map +1 -0
- package/dist/assets/loaders/MTLLoader.js +14 -0
- package/dist/assets/loaders/MTLLoader.js.map +1 -0
- package/dist/assets/loaders/OBJLoader.d.ts +12 -0
- package/dist/assets/loaders/OBJLoader.d.ts.map +1 -0
- package/dist/assets/loaders/OBJLoader.js +16 -0
- package/dist/assets/loaders/OBJLoader.js.map +1 -0
- package/dist/assets/loaders/TextureLoader.d.ts +6 -0
- package/dist/assets/loaders/TextureLoader.d.ts.map +1 -0
- package/dist/assets/loaders/TextureLoader.js +11 -0
- package/dist/assets/loaders/TextureLoader.js.map +1 -0
- package/dist/assets/loaders/ThreeCompatGLTFLoader.d.ts +10 -0
- package/dist/assets/loaders/ThreeCompatGLTFLoader.d.ts.map +1 -0
- package/dist/assets/loaders/ThreeCompatGLTFLoader.js +13 -0
- package/dist/assets/loaders/ThreeCompatGLTFLoader.js.map +1 -0
- package/dist/assets/loaders/index.d.ts +15 -0
- package/dist/assets/loaders/index.d.ts.map +1 -0
- package/dist/assets/loaders/index.js +10 -0
- package/dist/assets/loaders/index.js.map +1 -0
- package/dist/assets/threejs-compatibility/ThreeCompatAssetProvenance.d.ts +34 -0
- package/dist/assets/threejs-compatibility/ThreeCompatAssetProvenance.d.ts.map +1 -0
- package/dist/assets/threejs-compatibility/ThreeCompatAssetProvenance.js +16 -0
- package/dist/assets/threejs-compatibility/ThreeCompatAssetProvenance.js.map +1 -0
- package/dist/assets/threejs-compatibility/ThreeCompatAssetRegistry.d.ts +29 -0
- package/dist/assets/threejs-compatibility/ThreeCompatAssetRegistry.d.ts.map +1 -0
- package/dist/assets/threejs-compatibility/ThreeCompatAssetRegistry.js +33 -0
- package/dist/assets/threejs-compatibility/ThreeCompatAssetRegistry.js.map +1 -0
- package/dist/assets/threejs-example-parity/index.d.ts +20 -0
- package/dist/assets/threejs-example-parity/index.d.ts.map +1 -0
- package/dist/assets/threejs-example-parity/index.js +218 -0
- package/dist/assets/threejs-example-parity/index.js.map +1 -0
- package/dist/audio/AdaptiveMusicFixtures.d.ts +36 -0
- package/dist/audio/AdaptiveMusicFixtures.d.ts.map +1 -0
- package/dist/audio/AdaptiveMusicFixtures.js +90 -0
- package/dist/audio/AdaptiveMusicFixtures.js.map +1 -0
- package/dist/audio/AudioBus.d.ts +13 -0
- package/dist/audio/AudioBus.d.ts.map +1 -0
- package/dist/audio/AudioBus.js +32 -0
- package/dist/audio/AudioBus.js.map +1 -0
- package/dist/audio/AudioClip.d.ts +13 -0
- package/dist/audio/AudioClip.d.ts.map +1 -0
- package/dist/audio/AudioClip.js +18 -0
- package/dist/audio/AudioClip.js.map +1 -0
- package/dist/audio/AudioContextManager.d.ts +31 -0
- package/dist/audio/AudioContextManager.d.ts.map +1 -0
- package/dist/audio/AudioContextManager.js +49 -0
- package/dist/audio/AudioContextManager.js.map +1 -0
- package/dist/audio/AudioEffect.d.ts +8 -0
- package/dist/audio/AudioEffect.d.ts.map +1 -0
- package/dist/audio/AudioEffect.js +2 -0
- package/dist/audio/AudioEffect.js.map +1 -0
- package/dist/audio/AudioEffectsAnalysisFixtures.d.ts +99 -0
- package/dist/audio/AudioEffectsAnalysisFixtures.d.ts.map +1 -0
- package/dist/audio/AudioEffectsAnalysisFixtures.js +192 -0
- package/dist/audio/AudioEffectsAnalysisFixtures.js.map +1 -0
- package/dist/audio/AudioListener.d.ts +12 -0
- package/dist/audio/AudioListener.d.ts.map +1 -0
- package/dist/audio/AudioListener.js +11 -0
- package/dist/audio/AudioListener.js.map +1 -0
- package/dist/audio/AudioMixer.d.ts +12 -0
- package/dist/audio/AudioMixer.d.ts.map +1 -0
- package/dist/audio/AudioMixer.js +33 -0
- package/dist/audio/AudioMixer.js.map +1 -0
- package/dist/audio/AudioSource.d.ts +25 -0
- package/dist/audio/AudioSource.d.ts.map +1 -0
- package/dist/audio/AudioSource.js +58 -0
- package/dist/audio/AudioSource.js.map +1 -0
- package/dist/audio/AudioSystem.d.ts +13 -0
- package/dist/audio/AudioSystem.d.ts.map +1 -0
- package/dist/audio/AudioSystem.js +28 -0
- package/dist/audio/AudioSystem.js.map +1 -0
- package/dist/audio/SceneAudioBridge.d.ts +19 -0
- package/dist/audio/SceneAudioBridge.d.ts.map +1 -0
- package/dist/audio/SceneAudioBridge.js +37 -0
- package/dist/audio/SceneAudioBridge.js.map +1 -0
- package/dist/audio/SpatialAudio.d.ts +17 -0
- package/dist/audio/SpatialAudio.d.ts.map +1 -0
- package/dist/audio/SpatialAudio.js +22 -0
- package/dist/audio/SpatialAudio.js.map +1 -0
- package/dist/audio/SpatialAudioFixtures.d.ts +38 -0
- package/dist/audio/SpatialAudioFixtures.d.ts.map +1 -0
- package/dist/audio/SpatialAudioFixtures.js +94 -0
- package/dist/audio/SpatialAudioFixtures.js.map +1 -0
- package/dist/audio/effects/Filter.d.ts +13 -0
- package/dist/audio/effects/Filter.d.ts.map +1 -0
- package/dist/audio/effects/Filter.js +31 -0
- package/dist/audio/effects/Filter.js.map +1 -0
- package/dist/audio/effects/Reverb.d.ts +12 -0
- package/dist/audio/effects/Reverb.d.ts.map +1 -0
- package/dist/audio/effects/Reverb.js +23 -0
- package/dist/audio/effects/Reverb.js.map +1 -0
- package/dist/audio/index.d.ts +25 -0
- package/dist/audio/index.d.ts.map +1 -0
- package/dist/audio/index.js +15 -0
- package/dist/audio/index.js.map +1 -0
- package/dist/aura3d-cli/cli.d.ts +3 -0
- package/dist/aura3d-cli/cli.d.ts.map +1 -0
- package/dist/aura3d-cli/cli.js +79 -0
- package/dist/aura3d-cli/cli.js.map +1 -0
- package/dist/aura3d-cli/index.d.ts +78 -0
- package/dist/aura3d-cli/index.d.ts.map +1 -0
- package/dist/aura3d-cli/index.js +422 -0
- package/dist/aura3d-cli/index.js.map +1 -0
- package/dist/controls/ControlState.d.ts +14 -0
- package/dist/controls/ControlState.d.ts.map +1 -0
- package/dist/controls/ControlState.js +11 -0
- package/dist/controls/ControlState.js.map +1 -0
- package/dist/controls/DragControls.d.ts +8 -0
- package/dist/controls/DragControls.d.ts.map +1 -0
- package/dist/controls/DragControls.js +14 -0
- package/dist/controls/DragControls.js.map +1 -0
- package/dist/controls/FirstPersonControls.d.ts +5 -0
- package/dist/controls/FirstPersonControls.d.ts.map +1 -0
- package/dist/controls/FirstPersonControls.js +8 -0
- package/dist/controls/FirstPersonControls.js.map +1 -0
- package/dist/controls/FlyControls.d.ts +8 -0
- package/dist/controls/FlyControls.d.ts.map +1 -0
- package/dist/controls/FlyControls.js +12 -0
- package/dist/controls/FlyControls.js.map +1 -0
- package/dist/controls/InteractionControls.d.ts +83 -0
- package/dist/controls/InteractionControls.d.ts.map +1 -0
- package/dist/controls/InteractionControls.js +163 -0
- package/dist/controls/InteractionControls.js.map +1 -0
- package/dist/controls/MapControls.d.ts +6 -0
- package/dist/controls/MapControls.d.ts.map +1 -0
- package/dist/controls/MapControls.js +9 -0
- package/dist/controls/MapControls.js.map +1 -0
- package/dist/controls/NativeControlTypes.d.ts +49 -0
- package/dist/controls/NativeControlTypes.d.ts.map +1 -0
- package/dist/controls/NativeControlTypes.js +58 -0
- package/dist/controls/NativeControlTypes.js.map +1 -0
- package/dist/controls/OrbitControls.d.ts +11 -0
- package/dist/controls/OrbitControls.d.ts.map +1 -0
- package/dist/controls/OrbitControls.js +25 -0
- package/dist/controls/OrbitControls.js.map +1 -0
- package/dist/controls/Picking.d.ts +41 -0
- package/dist/controls/Picking.d.ts.map +1 -0
- package/dist/controls/Picking.js +149 -0
- package/dist/controls/Picking.js.map +1 -0
- package/dist/controls/PickingAnnotations.d.ts +134 -0
- package/dist/controls/PickingAnnotations.d.ts.map +1 -0
- package/dist/controls/PickingAnnotations.js +221 -0
- package/dist/controls/PickingAnnotations.js.map +1 -0
- package/dist/controls/PointerLockControls.d.ts +9 -0
- package/dist/controls/PointerLockControls.d.ts.map +1 -0
- package/dist/controls/PointerLockControls.js +14 -0
- package/dist/controls/PointerLockControls.js.map +1 -0
- package/dist/controls/SelectionManager.d.ts +8 -0
- package/dist/controls/SelectionManager.d.ts.map +1 -0
- package/dist/controls/SelectionManager.js +15 -0
- package/dist/controls/SelectionManager.js.map +1 -0
- package/dist/controls/TrackballControls.d.ts +18 -0
- package/dist/controls/TrackballControls.d.ts.map +1 -0
- package/dist/controls/TrackballControls.js +99 -0
- package/dist/controls/TrackballControls.js.map +1 -0
- package/dist/controls/TransformControls.d.ts +11 -0
- package/dist/controls/TransformControls.d.ts.map +1 -0
- package/dist/controls/TransformControls.js +19 -0
- package/dist/controls/TransformControls.js.map +1 -0
- package/dist/controls/index.d.ts +21 -0
- package/dist/controls/index.d.ts.map +1 -0
- package/dist/controls/index.js +15 -0
- package/dist/controls/index.js.map +1 -0
- package/dist/core/Diagnostics.d.ts +25 -0
- package/dist/core/Diagnostics.d.ts.map +1 -0
- package/dist/core/Diagnostics.js +60 -0
- package/dist/core/Diagnostics.js.map +1 -0
- package/dist/core/Disposable.d.ts +12 -0
- package/dist/core/Disposable.d.ts.map +1 -0
- package/dist/core/Disposable.js +37 -0
- package/dist/core/Disposable.js.map +1 -0
- package/dist/core/Engine.d.ts +46 -0
- package/dist/core/Engine.d.ts.map +1 -0
- package/dist/core/Engine.js +130 -0
- package/dist/core/Engine.js.map +1 -0
- package/dist/core/EngineConfig.d.ts +18 -0
- package/dist/core/EngineConfig.d.ts.map +1 -0
- package/dist/core/EngineConfig.js +23 -0
- package/dist/core/EngineConfig.js.map +1 -0
- package/dist/core/EngineLoop.d.ts +33 -0
- package/dist/core/EngineLoop.d.ts.map +1 -0
- package/dist/core/EngineLoop.js +63 -0
- package/dist/core/EngineLoop.js.map +1 -0
- package/dist/core/Errors.d.ts +14 -0
- package/dist/core/Errors.d.ts.map +1 -0
- package/dist/core/Errors.js +24 -0
- package/dist/core/Errors.js.map +1 -0
- package/dist/core/EventBus.d.ts +18 -0
- package/dist/core/EventBus.d.ts.map +1 -0
- package/dist/core/EventBus.js +45 -0
- package/dist/core/EventBus.js.map +1 -0
- package/dist/core/FixedStepAccumulator.d.ts +15 -0
- package/dist/core/FixedStepAccumulator.d.ts.map +1 -0
- package/dist/core/FixedStepAccumulator.js +34 -0
- package/dist/core/FixedStepAccumulator.js.map +1 -0
- package/dist/core/Logger.d.ts +23 -0
- package/dist/core/Logger.d.ts.map +1 -0
- package/dist/core/Logger.js +53 -0
- package/dist/core/Logger.js.map +1 -0
- package/dist/core/ResourceScope.d.ts +18 -0
- package/dist/core/ResourceScope.d.ts.map +1 -0
- package/dist/core/ResourceScope.js +53 -0
- package/dist/core/ResourceScope.js.map +1 -0
- package/dist/core/Scheduler.d.ts +31 -0
- package/dist/core/Scheduler.d.ts.map +1 -0
- package/dist/core/Scheduler.js +77 -0
- package/dist/core/Scheduler.js.map +1 -0
- package/dist/core/TaskQueue.d.ts +13 -0
- package/dist/core/TaskQueue.d.ts.map +1 -0
- package/dist/core/TaskQueue.js +42 -0
- package/dist/core/TaskQueue.js.map +1 -0
- package/dist/core/Time.d.ts +24 -0
- package/dist/core/Time.d.ts.map +1 -0
- package/dist/core/Time.js +45 -0
- package/dist/core/Time.js.map +1 -0
- package/dist/core/VersionedSerialization.d.ts +96 -0
- package/dist/core/VersionedSerialization.d.ts.map +1 -0
- package/dist/core/VersionedSerialization.js +278 -0
- package/dist/core/VersionedSerialization.js.map +1 -0
- package/dist/core/index.d.ts +15 -0
- package/dist/core/index.d.ts.map +1 -0
- package/dist/core/index.js +15 -0
- package/dist/core/index.js.map +1 -0
- package/dist/create-aura3d/cli.d.ts +3 -0
- package/dist/create-aura3d/cli.d.ts.map +1 -0
- package/dist/create-aura3d/cli.js +27 -0
- package/dist/create-aura3d/cli.js.map +1 -0
- package/dist/create-aura3d/index.d.ts +16 -0
- package/dist/create-aura3d/index.d.ts.map +1 -0
- package/dist/create-aura3d/index.js +63 -0
- package/dist/create-aura3d/index.js.map +1 -0
- package/dist/debug/AnimationInspector.d.ts +25 -0
- package/dist/debug/AnimationInspector.d.ts.map +1 -0
- package/dist/debug/AnimationInspector.js +46 -0
- package/dist/debug/AnimationInspector.js.map +1 -0
- package/dist/debug/ChromeTraceExporter.d.ts +35 -0
- package/dist/debug/ChromeTraceExporter.d.ts.map +1 -0
- package/dist/debug/ChromeTraceExporter.js +110 -0
- package/dist/debug/ChromeTraceExporter.js.map +1 -0
- package/dist/debug/DebugLineCanvasRenderer.d.ts +24 -0
- package/dist/debug/DebugLineCanvasRenderer.d.ts.map +1 -0
- package/dist/debug/DebugLineCanvasRenderer.js +58 -0
- package/dist/debug/DebugLineCanvasRenderer.js.map +1 -0
- package/dist/debug/DebugOverlay.d.ts +18 -0
- package/dist/debug/DebugOverlay.d.ts.map +1 -0
- package/dist/debug/DebugOverlay.js +19 -0
- package/dist/debug/DebugOverlay.js.map +1 -0
- package/dist/debug/DrawCallTracker.d.ts +22 -0
- package/dist/debug/DrawCallTracker.d.ts.map +1 -0
- package/dist/debug/DrawCallTracker.js +28 -0
- package/dist/debug/DrawCallTracker.js.map +1 -0
- package/dist/debug/ECSInspector.d.ts +16 -0
- package/dist/debug/ECSInspector.d.ts.map +1 -0
- package/dist/debug/ECSInspector.js +12 -0
- package/dist/debug/ECSInspector.js.map +1 -0
- package/dist/debug/GPUProfiler.d.ts +22 -0
- package/dist/debug/GPUProfiler.d.ts.map +1 -0
- package/dist/debug/GPUProfiler.js +32 -0
- package/dist/debug/GPUProfiler.js.map +1 -0
- package/dist/debug/MaterialDiagnostics.d.ts +17 -0
- package/dist/debug/MaterialDiagnostics.d.ts.map +1 -0
- package/dist/debug/MaterialDiagnostics.js +43 -0
- package/dist/debug/MaterialDiagnostics.js.map +1 -0
- package/dist/debug/PhysicsDebugAdapter.d.ts +29 -0
- package/dist/debug/PhysicsDebugAdapter.d.ts.map +1 -0
- package/dist/debug/PhysicsDebugAdapter.js +57 -0
- package/dist/debug/PhysicsDebugAdapter.js.map +1 -0
- package/dist/debug/Profiler.d.ts +24 -0
- package/dist/debug/Profiler.d.ts.map +1 -0
- package/dist/debug/Profiler.js +56 -0
- package/dist/debug/Profiler.js.map +1 -0
- package/dist/debug/RenderStateInspector.d.ts +19 -0
- package/dist/debug/RenderStateInspector.d.ts.map +1 -0
- package/dist/debug/RenderStateInspector.js +33 -0
- package/dist/debug/RenderStateInspector.js.map +1 -0
- package/dist/debug/ReportExporter.d.ts +12 -0
- package/dist/debug/ReportExporter.d.ts.map +1 -0
- package/dist/debug/ReportExporter.js +27 -0
- package/dist/debug/ReportExporter.js.map +1 -0
- package/dist/debug/ResourceTracker.d.ts +23 -0
- package/dist/debug/ResourceTracker.d.ts.map +1 -0
- package/dist/debug/ResourceTracker.js +41 -0
- package/dist/debug/ResourceTracker.js.map +1 -0
- package/dist/debug/SceneHelpers.d.ts +46 -0
- package/dist/debug/SceneHelpers.d.ts.map +1 -0
- package/dist/debug/SceneHelpers.js +137 -0
- package/dist/debug/SceneHelpers.js.map +1 -0
- package/dist/debug/ShaderDiagnostics.d.ts +20 -0
- package/dist/debug/ShaderDiagnostics.d.ts.map +1 -0
- package/dist/debug/ShaderDiagnostics.js +49 -0
- package/dist/debug/ShaderDiagnostics.js.map +1 -0
- package/dist/debug/index.d.ts +31 -0
- package/dist/debug/index.d.ts.map +1 -0
- package/dist/debug/index.js +16 -0
- package/dist/debug/index.js.map +1 -0
- package/dist/ecs/Archetype.d.ts +11 -0
- package/dist/ecs/Archetype.d.ts.map +1 -0
- package/dist/ecs/Archetype.js +19 -0
- package/dist/ecs/Archetype.js.map +1 -0
- package/dist/ecs/Bitset.d.ts +12 -0
- package/dist/ecs/Bitset.d.ts.map +1 -0
- package/dist/ecs/Bitset.js +43 -0
- package/dist/ecs/Bitset.js.map +1 -0
- package/dist/ecs/CommandBuffer.d.ts +16 -0
- package/dist/ecs/CommandBuffer.d.ts.map +1 -0
- package/dist/ecs/CommandBuffer.js +86 -0
- package/dist/ecs/CommandBuffer.js.map +1 -0
- package/dist/ecs/Component.d.ts +18 -0
- package/dist/ecs/Component.d.ts.map +1 -0
- package/dist/ecs/Component.js +7 -0
- package/dist/ecs/Component.js.map +1 -0
- package/dist/ecs/ComponentRegistry.d.ts +12 -0
- package/dist/ecs/ComponentRegistry.d.ts.map +1 -0
- package/dist/ecs/ComponentRegistry.js +36 -0
- package/dist/ecs/ComponentRegistry.js.map +1 -0
- package/dist/ecs/ComponentStore.d.ts +21 -0
- package/dist/ecs/ComponentStore.d.ts.map +1 -0
- package/dist/ecs/ComponentStore.js +66 -0
- package/dist/ecs/ComponentStore.js.map +1 -0
- package/dist/ecs/ECSProfiler.d.ts +12 -0
- package/dist/ecs/ECSProfiler.d.ts.map +1 -0
- package/dist/ecs/ECSProfiler.js +13 -0
- package/dist/ecs/ECSProfiler.js.map +1 -0
- package/dist/ecs/ECSSerializer.d.ts +18 -0
- package/dist/ecs/ECSSerializer.d.ts.map +1 -0
- package/dist/ecs/ECSSerializer.js +37 -0
- package/dist/ecs/ECSSerializer.js.map +1 -0
- package/dist/ecs/Entity.d.ts +8 -0
- package/dist/ecs/Entity.d.ts.map +1 -0
- package/dist/ecs/Entity.js +14 -0
- package/dist/ecs/Entity.js.map +1 -0
- package/dist/ecs/EntityManager.d.ts +12 -0
- package/dist/ecs/EntityManager.d.ts.map +1 -0
- package/dist/ecs/EntityManager.js +33 -0
- package/dist/ecs/EntityManager.js.map +1 -0
- package/dist/ecs/Query.d.ts +24 -0
- package/dist/ecs/Query.d.ts.map +1 -0
- package/dist/ecs/Query.js +47 -0
- package/dist/ecs/Query.js.map +1 -0
- package/dist/ecs/SparseSet.d.ts +14 -0
- package/dist/ecs/SparseSet.d.ts.map +1 -0
- package/dist/ecs/SparseSet.js +50 -0
- package/dist/ecs/SparseSet.js.map +1 -0
- package/dist/ecs/System.d.ts +18 -0
- package/dist/ecs/System.d.ts.map +1 -0
- package/dist/ecs/System.js +2 -0
- package/dist/ecs/System.js.map +1 -0
- package/dist/ecs/SystemScheduler.d.ts +10 -0
- package/dist/ecs/SystemScheduler.d.ts.map +1 -0
- package/dist/ecs/SystemScheduler.js +79 -0
- package/dist/ecs/SystemScheduler.js.map +1 -0
- package/dist/ecs/World.d.ts +27 -0
- package/dist/ecs/World.d.ts.map +1 -0
- package/dist/ecs/World.js +68 -0
- package/dist/ecs/World.js.map +1 -0
- package/dist/ecs/components/ActiveComponent.d.ts +16 -0
- package/dist/ecs/components/ActiveComponent.d.ts.map +1 -0
- package/dist/ecs/components/ActiveComponent.js +46 -0
- package/dist/ecs/components/ActiveComponent.js.map +1 -0
- package/dist/ecs/components/HierarchyComponent.d.ts +34 -0
- package/dist/ecs/components/HierarchyComponent.d.ts.map +1 -0
- package/dist/ecs/components/HierarchyComponent.js +103 -0
- package/dist/ecs/components/HierarchyComponent.js.map +1 -0
- package/dist/ecs/components/NameComponent.d.ts +5 -0
- package/dist/ecs/components/NameComponent.d.ts.map +1 -0
- package/dist/ecs/components/NameComponent.js +10 -0
- package/dist/ecs/components/NameComponent.js.map +1 -0
- package/dist/ecs/components/TagComponent.d.ts +5 -0
- package/dist/ecs/components/TagComponent.d.ts.map +1 -0
- package/dist/ecs/components/TagComponent.js +10 -0
- package/dist/ecs/components/TagComponent.js.map +1 -0
- package/dist/ecs/components/TransformComponent.d.ts +18 -0
- package/dist/ecs/components/TransformComponent.d.ts.map +1 -0
- package/dist/ecs/components/TransformComponent.js +27 -0
- package/dist/ecs/components/TransformComponent.js.map +1 -0
- package/dist/ecs/index.d.ts +22 -0
- package/dist/ecs/index.d.ts.map +1 -0
- package/dist/ecs/index.js +22 -0
- package/dist/ecs/index.js.map +1 -0
- package/dist/ecs/systems/ActiveSystem.d.ts +16 -0
- package/dist/ecs/systems/ActiveSystem.d.ts.map +1 -0
- package/dist/ecs/systems/ActiveSystem.js +61 -0
- package/dist/ecs/systems/ActiveSystem.js.map +1 -0
- package/dist/ecs/systems/HierarchySystem.d.ts +25 -0
- package/dist/ecs/systems/HierarchySystem.d.ts.map +1 -0
- package/dist/ecs/systems/HierarchySystem.js +185 -0
- package/dist/ecs/systems/HierarchySystem.js.map +1 -0
- package/dist/ecs/systems/index.d.ts +3 -0
- package/dist/ecs/systems/index.d.ts.map +1 -0
- package/dist/ecs/systems/index.js +3 -0
- package/dist/ecs/systems/index.js.map +1 -0
- package/dist/editor/index.d.ts +2 -0
- package/dist/editor/index.d.ts.map +1 -0
- package/dist/editor/index.js +2 -0
- package/dist/editor/index.js.map +1 -0
- package/dist/editor-runtime/Command.d.ts +11 -0
- package/dist/editor-runtime/Command.d.ts.map +1 -0
- package/dist/editor-runtime/Command.js +2 -0
- package/dist/editor-runtime/Command.js.map +1 -0
- package/dist/editor-runtime/CommandHistory.d.ts +20 -0
- package/dist/editor-runtime/CommandHistory.d.ts.map +1 -0
- package/dist/editor-runtime/CommandHistory.js +124 -0
- package/dist/editor-runtime/CommandHistory.js.map +1 -0
- package/dist/editor-runtime/DiagnosticsOverlayModel.d.ts +30 -0
- package/dist/editor-runtime/DiagnosticsOverlayModel.d.ts.map +1 -0
- package/dist/editor-runtime/DiagnosticsOverlayModel.js +57 -0
- package/dist/editor-runtime/DiagnosticsOverlayModel.js.map +1 -0
- package/dist/editor-runtime/EditorPluginHost.d.ts +46 -0
- package/dist/editor-runtime/EditorPluginHost.d.ts.map +1 -0
- package/dist/editor-runtime/EditorPluginHost.js +57 -0
- package/dist/editor-runtime/EditorPluginHost.js.map +1 -0
- package/dist/editor-runtime/EditorRuntime.d.ts +95 -0
- package/dist/editor-runtime/EditorRuntime.d.ts.map +1 -0
- package/dist/editor-runtime/EditorRuntime.js +277 -0
- package/dist/editor-runtime/EditorRuntime.js.map +1 -0
- package/dist/editor-runtime/EditorStateModel.d.ts +93 -0
- package/dist/editor-runtime/EditorStateModel.d.ts.map +1 -0
- package/dist/editor-runtime/EditorStateModel.js +251 -0
- package/dist/editor-runtime/EditorStateModel.js.map +1 -0
- package/dist/editor-runtime/Gizmo.d.ts +43 -0
- package/dist/editor-runtime/Gizmo.d.ts.map +1 -0
- package/dist/editor-runtime/Gizmo.js +60 -0
- package/dist/editor-runtime/Gizmo.js.map +1 -0
- package/dist/editor-runtime/HierarchyModel.d.ts +21 -0
- package/dist/editor-runtime/HierarchyModel.d.ts.map +1 -0
- package/dist/editor-runtime/HierarchyModel.js +32 -0
- package/dist/editor-runtime/HierarchyModel.js.map +1 -0
- package/dist/editor-runtime/InspectorModel.d.ts +16 -0
- package/dist/editor-runtime/InspectorModel.d.ts.map +1 -0
- package/dist/editor-runtime/InspectorModel.js +53 -0
- package/dist/editor-runtime/InspectorModel.js.map +1 -0
- package/dist/editor-runtime/LocalizationAccessibilityFixtures.d.ts +70 -0
- package/dist/editor-runtime/LocalizationAccessibilityFixtures.d.ts.map +1 -0
- package/dist/editor-runtime/LocalizationAccessibilityFixtures.js +275 -0
- package/dist/editor-runtime/LocalizationAccessibilityFixtures.js.map +1 -0
- package/dist/editor-runtime/MaterialVariantWorkflow.d.ts +19 -0
- package/dist/editor-runtime/MaterialVariantWorkflow.d.ts.map +1 -0
- package/dist/editor-runtime/MaterialVariantWorkflow.js +82 -0
- package/dist/editor-runtime/MaterialVariantWorkflow.js.map +1 -0
- package/dist/editor-runtime/PickingService.d.ts +58 -0
- package/dist/editor-runtime/PickingService.d.ts.map +1 -0
- package/dist/editor-runtime/PickingService.js +119 -0
- package/dist/editor-runtime/PickingService.js.map +1 -0
- package/dist/editor-runtime/PlayModeBridge.d.ts +14 -0
- package/dist/editor-runtime/PlayModeBridge.d.ts.map +1 -0
- package/dist/editor-runtime/PlayModeBridge.js +23 -0
- package/dist/editor-runtime/PlayModeBridge.js.map +1 -0
- package/dist/editor-runtime/PrefabRegistry.d.ts +41 -0
- package/dist/editor-runtime/PrefabRegistry.d.ts.map +1 -0
- package/dist/editor-runtime/PrefabRegistry.js +119 -0
- package/dist/editor-runtime/PrefabRegistry.js.map +1 -0
- package/dist/editor-runtime/ProjectSerializer.d.ts +9 -0
- package/dist/editor-runtime/ProjectSerializer.d.ts.map +1 -0
- package/dist/editor-runtime/ProjectSerializer.js +14 -0
- package/dist/editor-runtime/ProjectSerializer.js.map +1 -0
- package/dist/editor-runtime/RotateGizmo.d.ts +5 -0
- package/dist/editor-runtime/RotateGizmo.d.ts.map +1 -0
- package/dist/editor-runtime/RotateGizmo.js +37 -0
- package/dist/editor-runtime/RotateGizmo.js.map +1 -0
- package/dist/editor-runtime/ScaleGizmo.d.ts +5 -0
- package/dist/editor-runtime/ScaleGizmo.d.ts.map +1 -0
- package/dist/editor-runtime/ScaleGizmo.js +42 -0
- package/dist/editor-runtime/ScaleGizmo.js.map +1 -0
- package/dist/editor-runtime/Selection.d.ts +20 -0
- package/dist/editor-runtime/Selection.d.ts.map +1 -0
- package/dist/editor-runtime/Selection.js +46 -0
- package/dist/editor-runtime/Selection.js.map +1 -0
- package/dist/editor-runtime/ShaderGraphModel.d.ts +69 -0
- package/dist/editor-runtime/ShaderGraphModel.d.ts.map +1 -0
- package/dist/editor-runtime/ShaderGraphModel.js +172 -0
- package/dist/editor-runtime/ShaderGraphModel.js.map +1 -0
- package/dist/editor-runtime/StaticExportRuntime.d.ts +13 -0
- package/dist/editor-runtime/StaticExportRuntime.d.ts.map +1 -0
- package/dist/editor-runtime/StaticExportRuntime.js +307 -0
- package/dist/editor-runtime/StaticExportRuntime.js.map +1 -0
- package/dist/editor-runtime/TimelineModel.d.ts +157 -0
- package/dist/editor-runtime/TimelineModel.d.ts.map +1 -0
- package/dist/editor-runtime/TimelineModel.js +271 -0
- package/dist/editor-runtime/TimelineModel.js.map +1 -0
- package/dist/editor-runtime/TranslateGizmo.d.ts +5 -0
- package/dist/editor-runtime/TranslateGizmo.d.ts.map +1 -0
- package/dist/editor-runtime/TranslateGizmo.js +41 -0
- package/dist/editor-runtime/TranslateGizmo.js.map +1 -0
- package/dist/editor-runtime/commands/CreateNodeCommand.d.ts +14 -0
- package/dist/editor-runtime/commands/CreateNodeCommand.d.ts.map +1 -0
- package/dist/editor-runtime/commands/CreateNodeCommand.js +16 -0
- package/dist/editor-runtime/commands/CreateNodeCommand.js.map +1 -0
- package/dist/editor-runtime/commands/DeleteNodeCommand.d.ts +13 -0
- package/dist/editor-runtime/commands/DeleteNodeCommand.d.ts.map +1 -0
- package/dist/editor-runtime/commands/DeleteNodeCommand.js +55 -0
- package/dist/editor-runtime/commands/DeleteNodeCommand.js.map +1 -0
- package/dist/editor-runtime/commands/ReparentNodeCommand.d.ts +24 -0
- package/dist/editor-runtime/commands/ReparentNodeCommand.d.ts.map +1 -0
- package/dist/editor-runtime/commands/ReparentNodeCommand.js +39 -0
- package/dist/editor-runtime/commands/ReparentNodeCommand.js.map +1 -0
- package/dist/editor-runtime/commands/SetPropertyCommand.d.ts +14 -0
- package/dist/editor-runtime/commands/SetPropertyCommand.d.ts.map +1 -0
- package/dist/editor-runtime/commands/SetPropertyCommand.js +43 -0
- package/dist/editor-runtime/commands/SetPropertyCommand.js.map +1 -0
- package/dist/editor-runtime/commands/TransformCommand.d.ts +42 -0
- package/dist/editor-runtime/commands/TransformCommand.d.ts.map +1 -0
- package/dist/editor-runtime/commands/TransformCommand.js +72 -0
- package/dist/editor-runtime/commands/TransformCommand.js.map +1 -0
- package/dist/editor-runtime/index.d.ts +47 -0
- package/dist/editor-runtime/index.d.ts.map +1 -0
- package/dist/editor-runtime/index.js +28 -0
- package/dist/editor-runtime/index.js.map +1 -0
- package/dist/engine/A3DApp.d.ts +3 -0
- package/dist/engine/A3DApp.d.ts.map +1 -0
- package/dist/engine/A3DApp.js +2 -0
- package/dist/engine/A3DApp.js.map +1 -0
- package/dist/engine/A3DQualityPresets.d.ts +7 -0
- package/dist/engine/A3DQualityPresets.d.ts.map +1 -0
- package/dist/engine/A3DQualityPresets.js +9 -0
- package/dist/engine/A3DQualityPresets.js.map +1 -0
- package/dist/engine/advanced-runtime/A3DAppLifecycle.d.ts +26 -0
- package/dist/engine/advanced-runtime/A3DAppLifecycle.d.ts.map +1 -0
- package/dist/engine/advanced-runtime/A3DAppLifecycle.js +77 -0
- package/dist/engine/advanced-runtime/A3DAppLifecycle.js.map +1 -0
- package/dist/engine/advanced-runtime/A3DRenderer.d.ts +22 -0
- package/dist/engine/advanced-runtime/A3DRenderer.d.ts.map +1 -0
- package/dist/engine/advanced-runtime/A3DRenderer.js +85 -0
- package/dist/engine/advanced-runtime/A3DRenderer.js.map +1 -0
- package/dist/engine/advanced-runtime/A3DScene.d.ts +29 -0
- package/dist/engine/advanced-runtime/A3DScene.d.ts.map +1 -0
- package/dist/engine/advanced-runtime/A3DScene.js +83 -0
- package/dist/engine/advanced-runtime/A3DScene.js.map +1 -0
- package/dist/engine/advanced-runtime/index.d.ts +11 -0
- package/dist/engine/advanced-runtime/index.d.ts.map +1 -0
- package/dist/engine/advanced-runtime/index.js +6 -0
- package/dist/engine/advanced-runtime/index.js.map +1 -0
- package/dist/engine/agent-api/assets/humanoid-fixture.glb +0 -0
- package/dist/engine/agent-api/assets/player-fixture.glb +0 -0
- package/dist/engine/agent-api/humanoid-walk-runtime.d.ts +89 -0
- package/dist/engine/agent-api/humanoid-walk-runtime.d.ts.map +1 -0
- package/dist/engine/agent-api/humanoid-walk-runtime.js +287 -0
- package/dist/engine/agent-api/humanoid-walk-runtime.js.map +1 -0
- package/dist/engine/agent-api/index.d.ts +1592 -0
- package/dist/engine/agent-api/index.d.ts.map +1 -0
- package/dist/engine/agent-api/index.js +8493 -0
- package/dist/engine/agent-api/index.js.map +1 -0
- package/dist/engine/agent-api/particle-fountain-runtime.d.ts +91 -0
- package/dist/engine/agent-api/particle-fountain-runtime.d.ts.map +1 -0
- package/dist/engine/agent-api/particle-fountain-runtime.js +299 -0
- package/dist/engine/agent-api/particle-fountain-runtime.js.map +1 -0
- package/dist/engine/agent-api/product-viewer-runtime.d.ts +115 -0
- package/dist/engine/agent-api/product-viewer-runtime.d.ts.map +1 -0
- package/dist/engine/agent-api/product-viewer-runtime.js +338 -0
- package/dist/engine/agent-api/product-viewer-runtime.js.map +1 -0
- package/dist/engine/devtools/AuraAssetPanel.d.ts +9 -0
- package/dist/engine/devtools/AuraAssetPanel.d.ts.map +1 -0
- package/dist/engine/devtools/AuraAssetPanel.js +9 -0
- package/dist/engine/devtools/AuraAssetPanel.js.map +1 -0
- package/dist/engine/devtools/AuraDiagnosticsOverlay.d.ts +8 -0
- package/dist/engine/devtools/AuraDiagnosticsOverlay.d.ts.map +1 -0
- package/dist/engine/devtools/AuraDiagnosticsOverlay.js +42 -0
- package/dist/engine/devtools/AuraDiagnosticsOverlay.js.map +1 -0
- package/dist/engine/devtools/AuraPerformancePanel.d.ts +10 -0
- package/dist/engine/devtools/AuraPerformancePanel.d.ts.map +1 -0
- package/dist/engine/devtools/AuraPerformancePanel.js +10 -0
- package/dist/engine/devtools/AuraPerformancePanel.js.map +1 -0
- package/dist/engine/index.d.ts +91 -0
- package/dist/engine/index.d.ts.map +1 -0
- package/dist/engine/index.js +136 -0
- package/dist/engine/index.js.map +1 -0
- package/dist/engine/production-runtime/index.d.ts +492 -0
- package/dist/engine/production-runtime/index.d.ts.map +1 -0
- package/dist/engine/production-runtime/index.js +1267 -0
- package/dist/engine/production-runtime/index.js.map +1 -0
- package/dist/engine/testing/routeHealth.d.ts +10 -0
- package/dist/engine/testing/routeHealth.d.ts.map +1 -0
- package/dist/engine/testing/routeHealth.js +16 -0
- package/dist/engine/testing/routeHealth.js.map +1 -0
- package/dist/engine/testing/screenshot.d.ts +4 -0
- package/dist/engine/testing/screenshot.d.ts.map +1 -0
- package/dist/engine/testing/screenshot.js +10 -0
- package/dist/engine/testing/screenshot.js.map +1 -0
- package/dist/engine/threejs-example-parity/FlagshipFoundation.d.ts +158 -0
- package/dist/engine/threejs-example-parity/FlagshipFoundation.d.ts.map +1 -0
- package/dist/engine/threejs-example-parity/FlagshipFoundation.js +332 -0
- package/dist/engine/threejs-example-parity/FlagshipFoundation.js.map +1 -0
- package/dist/engine/threejs-example-parity/index.d.ts +113 -0
- package/dist/engine/threejs-example-parity/index.d.ts.map +1 -0
- package/dist/engine/threejs-example-parity/index.js +737 -0
- package/dist/engine/threejs-example-parity/index.js.map +1 -0
- package/dist/environments/EnvironmentPreview.d.ts +13 -0
- package/dist/environments/EnvironmentPreview.d.ts.map +1 -0
- package/dist/environments/EnvironmentPreview.js +16 -0
- package/dist/environments/EnvironmentPreview.js.map +1 -0
- package/dist/environments/EnvironmentRegistry.d.ts +35 -0
- package/dist/environments/EnvironmentRegistry.d.ts.map +1 -0
- package/dist/environments/EnvironmentRegistry.js +39 -0
- package/dist/environments/EnvironmentRegistry.js.map +1 -0
- package/dist/environments/HDRIEnvironment.d.ts +38 -0
- package/dist/environments/HDRIEnvironment.d.ts.map +1 -0
- package/dist/environments/HDRIEnvironment.js +34 -0
- package/dist/environments/HDRIEnvironment.js.map +1 -0
- package/dist/environments/PMREMPreset.d.ts +14 -0
- package/dist/environments/PMREMPreset.d.ts.map +1 -0
- package/dist/environments/PMREMPreset.js +16 -0
- package/dist/environments/PMREMPreset.js.map +1 -0
- package/dist/environments/index.d.ts +11 -0
- package/dist/environments/index.d.ts.map +1 -0
- package/dist/environments/index.js +6 -0
- package/dist/environments/index.js.map +1 -0
- package/dist/environments/production-runtime/ProductionEnvironmentCorpus.d.ts +78 -0
- package/dist/environments/production-runtime/ProductionEnvironmentCorpus.d.ts.map +1 -0
- package/dist/environments/production-runtime/ProductionEnvironmentCorpus.js +67 -0
- package/dist/environments/production-runtime/ProductionEnvironmentCorpus.js.map +1 -0
- package/dist/environments/production-runtime/index.d.ts +3 -0
- package/dist/environments/production-runtime/index.d.ts.map +1 -0
- package/dist/environments/production-runtime/index.js +2 -0
- package/dist/environments/production-runtime/index.js.map +1 -0
- package/dist/environments/threejs-example-parity/index.d.ts +17 -0
- package/dist/environments/threejs-example-parity/index.d.ts.map +1 -0
- package/dist/environments/threejs-example-parity/index.js +49 -0
- package/dist/environments/threejs-example-parity/index.js.map +1 -0
- package/dist/index.d.ts +24 -0
- package/dist/index.js +24 -0
- package/dist/input/ActionMap.d.ts +44 -0
- package/dist/input/ActionMap.d.ts.map +1 -0
- package/dist/input/ActionMap.js +74 -0
- package/dist/input/ActionMap.js.map +1 -0
- package/dist/input/GamepadDevice.d.ts +17 -0
- package/dist/input/GamepadDevice.d.ts.map +1 -0
- package/dist/input/GamepadDevice.js +27 -0
- package/dist/input/GamepadDevice.js.map +1 -0
- package/dist/input/GamepadInput.d.ts +3 -0
- package/dist/input/GamepadInput.d.ts.map +1 -0
- package/dist/input/GamepadInput.js +2 -0
- package/dist/input/GamepadInput.js.map +1 -0
- package/dist/input/GestureControls.d.ts +3 -0
- package/dist/input/GestureControls.d.ts.map +1 -0
- package/dist/input/GestureControls.js +2 -0
- package/dist/input/GestureControls.js.map +1 -0
- package/dist/input/GestureHapticsFixtures.d.ts +57 -0
- package/dist/input/GestureHapticsFixtures.d.ts.map +1 -0
- package/dist/input/GestureHapticsFixtures.js +115 -0
- package/dist/input/GestureHapticsFixtures.js.map +1 -0
- package/dist/input/GestureRecognizer.d.ts +19 -0
- package/dist/input/GestureRecognizer.d.ts.map +1 -0
- package/dist/input/GestureRecognizer.js +32 -0
- package/dist/input/GestureRecognizer.js.map +1 -0
- package/dist/input/InputActionBindingFixtures.d.ts +44 -0
- package/dist/input/InputActionBindingFixtures.d.ts.map +1 -0
- package/dist/input/InputActionBindingFixtures.js +86 -0
- package/dist/input/InputActionBindingFixtures.js.map +1 -0
- package/dist/input/InputReplay.d.ts +97 -0
- package/dist/input/InputReplay.d.ts.map +1 -0
- package/dist/input/InputReplay.js +189 -0
- package/dist/input/InputReplay.js.map +1 -0
- package/dist/input/InputSnapshot.d.ts +44 -0
- package/dist/input/InputSnapshot.d.ts.map +1 -0
- package/dist/input/InputSnapshot.js +44 -0
- package/dist/input/InputSnapshot.js.map +1 -0
- package/dist/input/InputSystem.d.ts +24 -0
- package/dist/input/InputSystem.d.ts.map +1 -0
- package/dist/input/InputSystem.js +77 -0
- package/dist/input/InputSystem.js.map +1 -0
- package/dist/input/InteractionSystem.d.ts +42 -0
- package/dist/input/InteractionSystem.d.ts.map +1 -0
- package/dist/input/InteractionSystem.js +80 -0
- package/dist/input/InteractionSystem.js.map +1 -0
- package/dist/input/KeyboardDevice.d.ts +18 -0
- package/dist/input/KeyboardDevice.d.ts.map +1 -0
- package/dist/input/KeyboardDevice.js +22 -0
- package/dist/input/KeyboardDevice.js.map +1 -0
- package/dist/input/PickingRay.d.ts +10 -0
- package/dist/input/PickingRay.d.ts.map +1 -0
- package/dist/input/PickingRay.js +27 -0
- package/dist/input/PickingRay.js.map +1 -0
- package/dist/input/PointerDevice.d.ts +51 -0
- package/dist/input/PointerDevice.d.ts.map +1 -0
- package/dist/input/PointerDevice.js +75 -0
- package/dist/input/PointerDevice.js.map +1 -0
- package/dist/input/VirtualTouchControls.d.ts +57 -0
- package/dist/input/VirtualTouchControls.d.ts.map +1 -0
- package/dist/input/VirtualTouchControls.js +127 -0
- package/dist/input/VirtualTouchControls.js.map +1 -0
- package/dist/input/WebXRSessionController.d.ts +108 -0
- package/dist/input/WebXRSessionController.d.ts.map +1 -0
- package/dist/input/WebXRSessionController.js +143 -0
- package/dist/input/WebXRSessionController.js.map +1 -0
- package/dist/input/XRFixtures.d.ts +65 -0
- package/dist/input/XRFixtures.d.ts.map +1 -0
- package/dist/input/XRFixtures.js +136 -0
- package/dist/input/XRFixtures.js.map +1 -0
- package/dist/input/controls/CameraRig.d.ts +12 -0
- package/dist/input/controls/CameraRig.d.ts.map +1 -0
- package/dist/input/controls/CameraRig.js +32 -0
- package/dist/input/controls/CameraRig.js.map +1 -0
- package/dist/input/controls/ControlTypes.d.ts +17 -0
- package/dist/input/controls/ControlTypes.d.ts.map +1 -0
- package/dist/input/controls/ControlTypes.js +4 -0
- package/dist/input/controls/ControlTypes.js.map +1 -0
- package/dist/input/controls/EditorFlyControls.d.ts +20 -0
- package/dist/input/controls/EditorFlyControls.d.ts.map +1 -0
- package/dist/input/controls/EditorFlyControls.js +44 -0
- package/dist/input/controls/EditorFlyControls.js.map +1 -0
- package/dist/input/controls/FirstPersonControls.d.ts +22 -0
- package/dist/input/controls/FirstPersonControls.d.ts.map +1 -0
- package/dist/input/controls/FirstPersonControls.js +44 -0
- package/dist/input/controls/FirstPersonControls.js.map +1 -0
- package/dist/input/controls/OrbitControls.d.ts +49 -0
- package/dist/input/controls/OrbitControls.d.ts.map +1 -0
- package/dist/input/controls/OrbitControls.js +131 -0
- package/dist/input/controls/OrbitControls.js.map +1 -0
- package/dist/input/controls/PointerLockControls.d.ts +11 -0
- package/dist/input/controls/PointerLockControls.d.ts.map +1 -0
- package/dist/input/controls/PointerLockControls.js +19 -0
- package/dist/input/controls/PointerLockControls.js.map +1 -0
- package/dist/input/controls/SceneCameraAdapter.d.ts +10 -0
- package/dist/input/controls/SceneCameraAdapter.d.ts.map +1 -0
- package/dist/input/controls/SceneCameraAdapter.js +90 -0
- package/dist/input/controls/SceneCameraAdapter.js.map +1 -0
- package/dist/input/controls/ThirdPersonFollowControls.d.ts +20 -0
- package/dist/input/controls/ThirdPersonFollowControls.d.ts.map +1 -0
- package/dist/input/controls/ThirdPersonFollowControls.js +33 -0
- package/dist/input/controls/ThirdPersonFollowControls.js.map +1 -0
- package/dist/input/index.d.ts +47 -0
- package/dist/input/index.d.ts.map +1 -0
- package/dist/input/index.js +25 -0
- package/dist/input/index.js.map +1 -0
- package/dist/materials/MaterialPreset.d.ts +30 -0
- package/dist/materials/MaterialPreset.d.ts.map +1 -0
- package/dist/materials/MaterialPreset.js +2 -0
- package/dist/materials/MaterialPreset.js.map +1 -0
- package/dist/materials/MaterialPresets.d.ts +3 -0
- package/dist/materials/MaterialPresets.d.ts.map +1 -0
- package/dist/materials/MaterialPresets.js +2 -0
- package/dist/materials/MaterialPresets.js.map +1 -0
- package/dist/materials/MaterialPreviewScene.d.ts +12 -0
- package/dist/materials/MaterialPreviewScene.d.ts.map +1 -0
- package/dist/materials/MaterialPreviewScene.js +20 -0
- package/dist/materials/MaterialPreviewScene.js.map +1 -0
- package/dist/materials/MaterialValidation.d.ts +14 -0
- package/dist/materials/MaterialValidation.d.ts.map +1 -0
- package/dist/materials/MaterialValidation.js +26 -0
- package/dist/materials/MaterialValidation.js.map +1 -0
- package/dist/materials/NodeMaterial.d.ts +11 -0
- package/dist/materials/NodeMaterial.d.ts.map +1 -0
- package/dist/materials/NodeMaterial.js +15 -0
- package/dist/materials/NodeMaterial.js.map +1 -0
- package/dist/materials/PBRMaterialLibrary.d.ts +7 -0
- package/dist/materials/PBRMaterialLibrary.d.ts.map +1 -0
- package/dist/materials/PBRMaterialLibrary.js +89 -0
- package/dist/materials/PBRMaterialLibrary.js.map +1 -0
- package/dist/materials/TextureSet.d.ts +17 -0
- package/dist/materials/TextureSet.d.ts.map +1 -0
- package/dist/materials/TextureSet.js +40 -0
- package/dist/materials/TextureSet.js.map +1 -0
- package/dist/materials/browser-index.d.ts +9 -0
- package/dist/materials/browser-index.d.ts.map +1 -0
- package/dist/materials/browser-index.js +6 -0
- package/dist/materials/browser-index.js.map +1 -0
- package/dist/materials/index.d.ts +11 -0
- package/dist/materials/index.d.ts.map +1 -0
- package/dist/materials/index.js +7 -0
- package/dist/materials/index.js.map +1 -0
- package/dist/math/Box3.d.ts +19 -0
- package/dist/math/Box3.d.ts.map +1 -0
- package/dist/math/Box3.js +61 -0
- package/dist/math/Box3.js.map +1 -0
- package/dist/math/Color.d.ts +15 -0
- package/dist/math/Color.d.ts.map +1 -0
- package/dist/math/Color.js +41 -0
- package/dist/math/Color.js.map +1 -0
- package/dist/math/Curves.d.ts +22 -0
- package/dist/math/Curves.d.ts.map +1 -0
- package/dist/math/Curves.js +74 -0
- package/dist/math/Curves.js.map +1 -0
- package/dist/math/Easing.d.ts +7 -0
- package/dist/math/Easing.d.ts.map +1 -0
- package/dist/math/Easing.js +24 -0
- package/dist/math/Easing.js.map +1 -0
- package/dist/math/Euler.d.ts +12 -0
- package/dist/math/Euler.d.ts.map +1 -0
- package/dist/math/Euler.js +30 -0
- package/dist/math/Euler.js.map +1 -0
- package/dist/math/Frustum.d.ts +14 -0
- package/dist/math/Frustum.d.ts.map +1 -0
- package/dist/math/Frustum.js +40 -0
- package/dist/math/Frustum.js.map +1 -0
- package/dist/math/Interpolation.d.ts +11 -0
- package/dist/math/Interpolation.d.ts.map +1 -0
- package/dist/math/Interpolation.js +30 -0
- package/dist/math/Interpolation.js.map +1 -0
- package/dist/math/Matrix3.d.ts +9 -0
- package/dist/math/Matrix3.d.ts.map +1 -0
- package/dist/math/Matrix3.js +51 -0
- package/dist/math/Matrix3.js.map +1 -0
- package/dist/math/Matrix4.d.ts +45 -0
- package/dist/math/Matrix4.d.ts.map +1 -0
- package/dist/math/Matrix4.js +204 -0
- package/dist/math/Matrix4.js.map +1 -0
- package/dist/math/Plane.d.ts +11 -0
- package/dist/math/Plane.d.ts.map +1 -0
- package/dist/math/Plane.js +31 -0
- package/dist/math/Plane.js.map +1 -0
- package/dist/math/Quaternion.d.ts +25 -0
- package/dist/math/Quaternion.d.ts.map +1 -0
- package/dist/math/Quaternion.js +121 -0
- package/dist/math/Quaternion.js.map +1 -0
- package/dist/math/Random.d.ts +9 -0
- package/dist/math/Random.d.ts.map +1 -0
- package/dist/math/Random.js +30 -0
- package/dist/math/Random.js.map +1 -0
- package/dist/math/Ray.d.ts +14 -0
- package/dist/math/Ray.d.ts.map +1 -0
- package/dist/math/Ray.js +67 -0
- package/dist/math/Ray.js.map +1 -0
- package/dist/math/Sphere.d.ts +9 -0
- package/dist/math/Sphere.d.ts.map +1 -0
- package/dist/math/Sphere.js +18 -0
- package/dist/math/Sphere.js.map +1 -0
- package/dist/math/Transform.d.ts +14 -0
- package/dist/math/Transform.d.ts.map +1 -0
- package/dist/math/Transform.js +28 -0
- package/dist/math/Transform.js.map +1 -0
- package/dist/math/Vector2.d.ts +22 -0
- package/dist/math/Vector2.d.ts.map +1 -0
- package/dist/math/Vector2.js +54 -0
- package/dist/math/Vector2.js.map +1 -0
- package/dist/math/Vector3.d.ts +34 -0
- package/dist/math/Vector3.d.ts.map +1 -0
- package/dist/math/Vector3.js +77 -0
- package/dist/math/Vector3.js.map +1 -0
- package/dist/math/Vector4.d.ts +19 -0
- package/dist/math/Vector4.d.ts.map +1 -0
- package/dist/math/Vector4.js +43 -0
- package/dist/math/Vector4.js.map +1 -0
- package/dist/math/index.d.ts +19 -0
- package/dist/math/index.d.ts.map +1 -0
- package/dist/math/index.js +19 -0
- package/dist/math/index.js.map +1 -0
- package/dist/physics/CharacterController.d.ts +52 -0
- package/dist/physics/CharacterController.d.ts.map +1 -0
- package/dist/physics/CharacterController.js +146 -0
- package/dist/physics/CharacterController.js.map +1 -0
- package/dist/physics/ClothFixtures.d.ts +87 -0
- package/dist/physics/ClothFixtures.d.ts.map +1 -0
- package/dist/physics/ClothFixtures.js +264 -0
- package/dist/physics/ClothFixtures.js.map +1 -0
- package/dist/physics/Collider.d.ts +27 -0
- package/dist/physics/Collider.d.ts.map +1 -0
- package/dist/physics/Collider.js +45 -0
- package/dist/physics/Collider.js.map +1 -0
- package/dist/physics/CollisionEvents.d.ts +26 -0
- package/dist/physics/CollisionEvents.d.ts.map +1 -0
- package/dist/physics/CollisionEvents.js +46 -0
- package/dist/physics/CollisionEvents.js.map +1 -0
- package/dist/physics/Constraint.d.ts +31 -0
- package/dist/physics/Constraint.d.ts.map +1 -0
- package/dist/physics/Constraint.js +103 -0
- package/dist/physics/Constraint.js.map +1 -0
- package/dist/physics/Constraints.d.ts +2 -0
- package/dist/physics/Constraints.d.ts.map +1 -0
- package/dist/physics/Constraints.js +2 -0
- package/dist/physics/Constraints.js.map +1 -0
- package/dist/physics/Crowd.d.ts +64 -0
- package/dist/physics/Crowd.d.ts.map +1 -0
- package/dist/physics/Crowd.js +209 -0
- package/dist/physics/Crowd.js.map +1 -0
- package/dist/physics/ECSPhysicsBridge.d.ts +17 -0
- package/dist/physics/ECSPhysicsBridge.d.ts.map +1 -0
- package/dist/physics/ECSPhysicsBridge.js +37 -0
- package/dist/physics/ECSPhysicsBridge.js.map +1 -0
- package/dist/physics/FireSmokeFixtures.d.ts +103 -0
- package/dist/physics/FireSmokeFixtures.d.ts.map +1 -0
- package/dist/physics/FireSmokeFixtures.js +271 -0
- package/dist/physics/FireSmokeFixtures.js.map +1 -0
- package/dist/physics/FluidFixtures.d.ts +75 -0
- package/dist/physics/FluidFixtures.d.ts.map +1 -0
- package/dist/physics/FluidFixtures.js +219 -0
- package/dist/physics/FluidFixtures.js.map +1 -0
- package/dist/physics/FractureFixtures.d.ts +68 -0
- package/dist/physics/FractureFixtures.d.ts.map +1 -0
- package/dist/physics/FractureFixtures.js +199 -0
- package/dist/physics/FractureFixtures.js.map +1 -0
- package/dist/physics/Navigation.d.ts +67 -0
- package/dist/physics/Navigation.d.ts.map +1 -0
- package/dist/physics/Navigation.js +261 -0
- package/dist/physics/Navigation.js.map +1 -0
- package/dist/physics/PhysicsDebugDraw.d.ts +11 -0
- package/dist/physics/PhysicsDebugDraw.d.ts.map +1 -0
- package/dist/physics/PhysicsDebugDraw.js +64 -0
- package/dist/physics/PhysicsDebugDraw.js.map +1 -0
- package/dist/physics/PhysicsSandboxFixtures.d.ts +53 -0
- package/dist/physics/PhysicsSandboxFixtures.d.ts.map +1 -0
- package/dist/physics/PhysicsSandboxFixtures.js +280 -0
- package/dist/physics/PhysicsSandboxFixtures.js.map +1 -0
- package/dist/physics/PhysicsStepper.d.ts +15 -0
- package/dist/physics/PhysicsStepper.d.ts.map +1 -0
- package/dist/physics/PhysicsStepper.js +37 -0
- package/dist/physics/PhysicsStepper.js.map +1 -0
- package/dist/physics/PhysicsWorld.d.ts +101 -0
- package/dist/physics/PhysicsWorld.d.ts.map +1 -0
- package/dist/physics/PhysicsWorld.js +868 -0
- package/dist/physics/PhysicsWorld.js.map +1 -0
- package/dist/physics/PlatformerFixtures.d.ts +70 -0
- package/dist/physics/PlatformerFixtures.d.ts.map +1 -0
- package/dist/physics/PlatformerFixtures.js +120 -0
- package/dist/physics/PlatformerFixtures.js.map +1 -0
- package/dist/physics/Raycast.d.ts +23 -0
- package/dist/physics/Raycast.d.ts.map +1 -0
- package/dist/physics/Raycast.js +271 -0
- package/dist/physics/Raycast.js.map +1 -0
- package/dist/physics/RigidBody.d.ts +69 -0
- package/dist/physics/RigidBody.d.ts.map +1 -0
- package/dist/physics/RigidBody.js +255 -0
- package/dist/physics/RigidBody.js.map +1 -0
- package/dist/physics/ScenePhysicsBridge.d.ts +42 -0
- package/dist/physics/ScenePhysicsBridge.d.ts.map +1 -0
- package/dist/physics/ScenePhysicsBridge.js +168 -0
- package/dist/physics/ScenePhysicsBridge.js.map +1 -0
- package/dist/physics/Shape.d.ts +50 -0
- package/dist/physics/Shape.d.ts.map +1 -0
- package/dist/physics/Shape.js +128 -0
- package/dist/physics/Shape.js.map +1 -0
- package/dist/physics/SoftBodyFixtures.d.ts +70 -0
- package/dist/physics/SoftBodyFixtures.d.ts.map +1 -0
- package/dist/physics/SoftBodyFixtures.js +272 -0
- package/dist/physics/SoftBodyFixtures.js.map +1 -0
- package/dist/physics/Steering.d.ts +161 -0
- package/dist/physics/Steering.d.ts.map +1 -0
- package/dist/physics/Steering.js +347 -0
- package/dist/physics/Steering.js.map +1 -0
- package/dist/physics/VehicleDynamics.d.ts +152 -0
- package/dist/physics/VehicleDynamics.d.ts.map +1 -0
- package/dist/physics/VehicleDynamics.js +335 -0
- package/dist/physics/VehicleDynamics.js.map +1 -0
- package/dist/physics/index.d.ts +25 -0
- package/dist/physics/index.d.ts.map +1 -0
- package/dist/physics/index.js +25 -0
- package/dist/physics/index.js.map +1 -0
- package/dist/product-studio/ProductAsset.d.ts +2 -0
- package/dist/product-studio/ProductAsset.d.ts.map +1 -0
- package/dist/product-studio/ProductAsset.js +2 -0
- package/dist/product-studio/ProductAsset.js.map +1 -0
- package/dist/product-studio/ProductAssetLoader.d.ts +3 -0
- package/dist/product-studio/ProductAssetLoader.d.ts.map +1 -0
- package/dist/product-studio/ProductAssetLoader.js +77 -0
- package/dist/product-studio/ProductAssetLoader.js.map +1 -0
- package/dist/product-studio/ProductCamera.d.ts +4 -0
- package/dist/product-studio/ProductCamera.d.ts.map +1 -0
- package/dist/product-studio/ProductCamera.js +45 -0
- package/dist/product-studio/ProductCamera.js.map +1 -0
- package/dist/product-studio/ProductDiagnostics.d.ts +4 -0
- package/dist/product-studio/ProductDiagnostics.d.ts.map +1 -0
- package/dist/product-studio/ProductDiagnostics.js +21 -0
- package/dist/product-studio/ProductDiagnostics.js.map +1 -0
- package/dist/product-studio/ProductExport.d.ts +4 -0
- package/dist/product-studio/ProductExport.d.ts.map +1 -0
- package/dist/product-studio/ProductExport.js +40 -0
- package/dist/product-studio/ProductExport.js.map +1 -0
- package/dist/product-studio/ProductFloor.d.ts +4 -0
- package/dist/product-studio/ProductFloor.d.ts.map +1 -0
- package/dist/product-studio/ProductFloor.js +15 -0
- package/dist/product-studio/ProductFloor.js.map +1 -0
- package/dist/product-studio/ProductLighting.d.ts +3 -0
- package/dist/product-studio/ProductLighting.d.ts.map +1 -0
- package/dist/product-studio/ProductLighting.js +42 -0
- package/dist/product-studio/ProductLighting.js.map +1 -0
- package/dist/product-studio/ProductMaterials.d.ts +5 -0
- package/dist/product-studio/ProductMaterials.d.ts.map +1 -0
- package/dist/product-studio/ProductMaterials.js +41 -0
- package/dist/product-studio/ProductMaterials.js.map +1 -0
- package/dist/product-studio/ProductRenderScene.d.ts +4 -0
- package/dist/product-studio/ProductRenderScene.d.ts.map +1 -0
- package/dist/product-studio/ProductRenderScene.js +46 -0
- package/dist/product-studio/ProductRenderScene.js.map +1 -0
- package/dist/product-studio/ProductShowcaseLayout.d.ts +32 -0
- package/dist/product-studio/ProductShowcaseLayout.d.ts.map +1 -0
- package/dist/product-studio/ProductShowcaseLayout.js +54 -0
- package/dist/product-studio/ProductShowcaseLayout.js.map +1 -0
- package/dist/product-studio/ProductStudio.d.ts +3 -0
- package/dist/product-studio/ProductStudio.d.ts.map +1 -0
- package/dist/product-studio/ProductStudio.js +51 -0
- package/dist/product-studio/ProductStudio.js.map +1 -0
- package/dist/product-studio/ProductTypes.d.ts +133 -0
- package/dist/product-studio/ProductTypes.d.ts.map +1 -0
- package/dist/product-studio/ProductTypes.js +2 -0
- package/dist/product-studio/ProductTypes.js.map +1 -0
- package/dist/product-studio/index.d.ts +13 -0
- package/dist/product-studio/index.d.ts.map +1 -0
- package/dist/product-studio/index.js +11 -0
- package/dist/product-studio/index.js.map +1 -0
- package/dist/react/index.d.ts +44 -0
- package/dist/react/index.d.ts.map +1 -0
- package/dist/react/index.js +116 -0
- package/dist/react/index.js.map +1 -0
- package/dist/rendering/ArchitecturalLightingFixtures.d.ts +40 -0
- package/dist/rendering/ArchitecturalLightingFixtures.d.ts.map +1 -0
- package/dist/rendering/ArchitecturalLightingFixtures.js +171 -0
- package/dist/rendering/ArchitecturalLightingFixtures.js.map +1 -0
- package/dist/rendering/ArchitecturalMaterialCatalog.d.ts +30 -0
- package/dist/rendering/ArchitecturalMaterialCatalog.d.ts.map +1 -0
- package/dist/rendering/ArchitecturalMaterialCatalog.js +90 -0
- package/dist/rendering/ArchitecturalMaterialCatalog.js.map +1 -0
- package/dist/rendering/ArchitecturalMeasurementFixtures.d.ts +30 -0
- package/dist/rendering/ArchitecturalMeasurementFixtures.d.ts.map +1 -0
- package/dist/rendering/ArchitecturalMeasurementFixtures.js +115 -0
- package/dist/rendering/ArchitecturalMeasurementFixtures.js.map +1 -0
- package/dist/rendering/BRDFLut.d.ts +13 -0
- package/dist/rendering/BRDFLut.d.ts.map +1 -0
- package/dist/rendering/BRDFLut.js +34 -0
- package/dist/rendering/BRDFLut.js.map +1 -0
- package/dist/rendering/CameraFraming.d.ts +31 -0
- package/dist/rendering/CameraFraming.d.ts.map +1 -0
- package/dist/rendering/CameraFraming.js +143 -0
- package/dist/rendering/CameraFraming.js.map +1 -0
- package/dist/rendering/CanonicalSceneFixtures.d.ts +13 -0
- package/dist/rendering/CanonicalSceneFixtures.d.ts.map +1 -0
- package/dist/rendering/CanonicalSceneFixtures.js +78 -0
- package/dist/rendering/CanonicalSceneFixtures.js.map +1 -0
- package/dist/rendering/CascadedShadowMaps.d.ts +121 -0
- package/dist/rendering/CascadedShadowMaps.d.ts.map +1 -0
- package/dist/rendering/CascadedShadowMaps.js +315 -0
- package/dist/rendering/CascadedShadowMaps.js.map +1 -0
- package/dist/rendering/ColorManagement.d.ts +33 -0
- package/dist/rendering/ColorManagement.d.ts.map +1 -0
- package/dist/rendering/ColorManagement.js +71 -0
- package/dist/rendering/ColorManagement.js.map +1 -0
- package/dist/rendering/CullingFixtures.d.ts +70 -0
- package/dist/rendering/CullingFixtures.d.ts.map +1 -0
- package/dist/rendering/CullingFixtures.js +191 -0
- package/dist/rendering/CullingFixtures.js.map +1 -0
- package/dist/rendering/DecalGeometry.d.ts +3 -0
- package/dist/rendering/DecalGeometry.d.ts.map +1 -0
- package/dist/rendering/DecalGeometry.js +2 -0
- package/dist/rendering/DecalGeometry.js.map +1 -0
- package/dist/rendering/DepthPass.d.ts +23 -0
- package/dist/rendering/DepthPass.d.ts.map +1 -0
- package/dist/rendering/DepthPass.js +99 -0
- package/dist/rendering/DepthPass.js.map +1 -0
- package/dist/rendering/EnvironmentBackgroundPass.d.ts +27 -0
- package/dist/rendering/EnvironmentBackgroundPass.d.ts.map +1 -0
- package/dist/rendering/EnvironmentBackgroundPass.js +167 -0
- package/dist/rendering/EnvironmentBackgroundPass.js.map +1 -0
- package/dist/rendering/EnvironmentBackgroundResources.d.ts +31 -0
- package/dist/rendering/EnvironmentBackgroundResources.d.ts.map +1 -0
- package/dist/rendering/EnvironmentBackgroundResources.js +237 -0
- package/dist/rendering/EnvironmentBackgroundResources.js.map +1 -0
- package/dist/rendering/EnvironmentLighting.d.ts +10 -0
- package/dist/rendering/EnvironmentLighting.d.ts.map +1 -0
- package/dist/rendering/EnvironmentLighting.js +64 -0
- package/dist/rendering/EnvironmentLighting.js.map +1 -0
- package/dist/rendering/EnvironmentMapResources.d.ts +98 -0
- package/dist/rendering/EnvironmentMapResources.d.ts.map +1 -0
- package/dist/rendering/EnvironmentMapResources.js +794 -0
- package/dist/rendering/EnvironmentMapResources.js.map +1 -0
- package/dist/rendering/EnvironmentPipeline.d.ts +21 -0
- package/dist/rendering/EnvironmentPipeline.d.ts.map +1 -0
- package/dist/rendering/EnvironmentPipeline.js +43 -0
- package/dist/rendering/EnvironmentPipeline.js.map +1 -0
- package/dist/rendering/EnvironmentPlatform.d.ts +185 -0
- package/dist/rendering/EnvironmentPlatform.d.ts.map +1 -0
- package/dist/rendering/EnvironmentPlatform.js +922 -0
- package/dist/rendering/EnvironmentPlatform.js.map +1 -0
- package/dist/rendering/EnvironmentPreset.d.ts +35 -0
- package/dist/rendering/EnvironmentPreset.d.ts.map +1 -0
- package/dist/rendering/EnvironmentPreset.js +96 -0
- package/dist/rendering/EnvironmentPreset.js.map +1 -0
- package/dist/rendering/Exposure.d.ts +19 -0
- package/dist/rendering/Exposure.d.ts.map +1 -0
- package/dist/rendering/Exposure.js +34 -0
- package/dist/rendering/Exposure.js.map +1 -0
- package/dist/rendering/ExternalParityRenderPreset.d.ts +149 -0
- package/dist/rendering/ExternalParityRenderPreset.d.ts.map +1 -0
- package/dist/rendering/ExternalParityRenderPreset.js +519 -0
- package/dist/rendering/ExternalParityRenderPreset.js.map +1 -0
- package/dist/rendering/ForwardPass.d.ts +122 -0
- package/dist/rendering/ForwardPass.d.ts.map +1 -0
- package/dist/rendering/ForwardPass.js +1352 -0
- package/dist/rendering/ForwardPass.js.map +1 -0
- package/dist/rendering/FrameVisualMetrics.d.ts +60 -0
- package/dist/rendering/FrameVisualMetrics.d.ts.map +1 -0
- package/dist/rendering/FrameVisualMetrics.js +146 -0
- package/dist/rendering/FrameVisualMetrics.js.map +1 -0
- package/dist/rendering/Geometry.d.ts +50 -0
- package/dist/rendering/Geometry.d.ts.map +1 -0
- package/dist/rendering/Geometry.js +385 -0
- package/dist/rendering/Geometry.js.map +1 -0
- package/dist/rendering/GeometryPrimitives.d.ts +3 -0
- package/dist/rendering/GeometryPrimitives.d.ts.map +1 -0
- package/dist/rendering/GeometryPrimitives.js +2 -0
- package/dist/rendering/GeometryPrimitives.js.map +1 -0
- package/dist/rendering/HDRRenderPipeline.d.ts +27 -0
- package/dist/rendering/HDRRenderPipeline.d.ts.map +1 -0
- package/dist/rendering/HDRRenderPipeline.js +67 -0
- package/dist/rendering/HDRRenderPipeline.js.map +1 -0
- package/dist/rendering/IBL.d.ts +37 -0
- package/dist/rendering/IBL.d.ts.map +1 -0
- package/dist/rendering/IBL.js +48 -0
- package/dist/rendering/IBL.js.map +1 -0
- package/dist/rendering/IndexBuffer.d.ts +15 -0
- package/dist/rendering/IndexBuffer.d.ts.map +1 -0
- package/dist/rendering/IndexBuffer.js +51 -0
- package/dist/rendering/IndexBuffer.js.map +1 -0
- package/dist/rendering/InstancedPBRMaterial.d.ts +33 -0
- package/dist/rendering/InstancedPBRMaterial.d.ts.map +1 -0
- package/dist/rendering/InstancedPBRMaterial.js +147 -0
- package/dist/rendering/InstancedPBRMaterial.js.map +1 -0
- package/dist/rendering/InstancedUnlitMaterial.d.ts +11 -0
- package/dist/rendering/InstancedUnlitMaterial.d.ts.map +1 -0
- package/dist/rendering/InstancedUnlitMaterial.js +50 -0
- package/dist/rendering/InstancedUnlitMaterial.js.map +1 -0
- package/dist/rendering/Instancing.d.ts +7 -0
- package/dist/rendering/Instancing.d.ts.map +1 -0
- package/dist/rendering/Instancing.js +14 -0
- package/dist/rendering/Instancing.js.map +1 -0
- package/dist/rendering/LightCollector.d.ts +24 -0
- package/dist/rendering/LightCollector.d.ts.map +1 -0
- package/dist/rendering/LightCollector.js +56 -0
- package/dist/rendering/LightCollector.js.map +1 -0
- package/dist/rendering/LightUniforms.d.ts +14 -0
- package/dist/rendering/LightUniforms.d.ts.map +1 -0
- package/dist/rendering/LightUniforms.js +37 -0
- package/dist/rendering/LightUniforms.js.map +1 -0
- package/dist/rendering/LightingDebug.d.ts +13 -0
- package/dist/rendering/LightingDebug.d.ts.map +1 -0
- package/dist/rendering/LightingDebug.js +69 -0
- package/dist/rendering/LightingDebug.js.map +1 -0
- package/dist/rendering/LightingDefaults.d.ts +13 -0
- package/dist/rendering/LightingDefaults.d.ts.map +1 -0
- package/dist/rendering/LightingDefaults.js +64 -0
- package/dist/rendering/LightingDefaults.js.map +1 -0
- package/dist/rendering/LightingRig.d.ts +53 -0
- package/dist/rendering/LightingRig.d.ts.map +1 -0
- package/dist/rendering/LightingRig.js +197 -0
- package/dist/rendering/LightingRig.js.map +1 -0
- package/dist/rendering/LineGeometry.d.ts +3 -0
- package/dist/rendering/LineGeometry.d.ts.map +1 -0
- package/dist/rendering/LineGeometry.js +2 -0
- package/dist/rendering/LineGeometry.js.map +1 -0
- package/dist/rendering/Material.d.ts +77 -0
- package/dist/rendering/Material.d.ts.map +1 -0
- package/dist/rendering/Material.js +137 -0
- package/dist/rendering/Material.js.map +1 -0
- package/dist/rendering/MaterialBinding.d.ts +17 -0
- package/dist/rendering/MaterialBinding.d.ts.map +1 -0
- package/dist/rendering/MaterialBinding.js +119 -0
- package/dist/rendering/MaterialBinding.js.map +1 -0
- package/dist/rendering/MaterialInstance.d.ts +16 -0
- package/dist/rendering/MaterialInstance.d.ts.map +1 -0
- package/dist/rendering/MaterialInstance.js +53 -0
- package/dist/rendering/MaterialInstance.js.map +1 -0
- package/dist/rendering/MaterialPresets.d.ts +31 -0
- package/dist/rendering/MaterialPresets.d.ts.map +1 -0
- package/dist/rendering/MaterialPresets.js +219 -0
- package/dist/rendering/MaterialPresets.js.map +1 -0
- package/dist/rendering/MorphTarget.d.ts +10 -0
- package/dist/rendering/MorphTarget.d.ts.map +1 -0
- package/dist/rendering/MorphTarget.js +101 -0
- package/dist/rendering/MorphTarget.js.map +1 -0
- package/dist/rendering/MorphUnlitMaterial.d.ts +11 -0
- package/dist/rendering/MorphUnlitMaterial.d.ts.map +1 -0
- package/dist/rendering/MorphUnlitMaterial.js +45 -0
- package/dist/rendering/MorphUnlitMaterial.js.map +1 -0
- package/dist/rendering/NormalMappedPBRMaterial.d.ts +37 -0
- package/dist/rendering/NormalMappedPBRMaterial.d.ts.map +1 -0
- package/dist/rendering/NormalMappedPBRMaterial.js +148 -0
- package/dist/rendering/NormalMappedPBRMaterial.js.map +1 -0
- package/dist/rendering/OceanFixtures.d.ts +62 -0
- package/dist/rendering/OceanFixtures.d.ts.map +1 -0
- package/dist/rendering/OceanFixtures.js +240 -0
- package/dist/rendering/OceanFixtures.js.map +1 -0
- package/dist/rendering/PBRLightingDefaults.d.ts +4 -0
- package/dist/rendering/PBRLightingDefaults.d.ts.map +1 -0
- package/dist/rendering/PBRLightingDefaults.js +10 -0
- package/dist/rendering/PBRLightingDefaults.js.map +1 -0
- package/dist/rendering/PBRMaterial.d.ts +84 -0
- package/dist/rendering/PBRMaterial.d.ts.map +1 -0
- package/dist/rendering/PBRMaterial.js +349 -0
- package/dist/rendering/PBRMaterial.js.map +1 -0
- package/dist/rendering/PMREM.d.ts +26 -0
- package/dist/rendering/PMREM.d.ts.map +1 -0
- package/dist/rendering/PMREM.js +26 -0
- package/dist/rendering/PMREM.js.map +1 -0
- package/dist/rendering/PbrReference.d.ts +153 -0
- package/dist/rendering/PbrReference.d.ts.map +1 -0
- package/dist/rendering/PbrReference.js +500 -0
- package/dist/rendering/PbrReference.js.map +1 -0
- package/dist/rendering/PostProcessPass.d.ts +439 -0
- package/dist/rendering/PostProcessPass.d.ts.map +1 -0
- package/dist/rendering/PostProcessPass.js +1834 -0
- package/dist/rendering/PostProcessPass.js.map +1 -0
- package/dist/rendering/ProceduralTextureFixtures.d.ts +27 -0
- package/dist/rendering/ProceduralTextureFixtures.d.ts.map +1 -0
- package/dist/rendering/ProceduralTextureFixtures.js +336 -0
- package/dist/rendering/ProceduralTextureFixtures.js.map +1 -0
- package/dist/rendering/ProductTurntableFixtures.d.ts +96 -0
- package/dist/rendering/ProductTurntableFixtures.d.ts.map +1 -0
- package/dist/rendering/ProductTurntableFixtures.js +559 -0
- package/dist/rendering/ProductTurntableFixtures.js.map +1 -0
- package/dist/rendering/Raycaster.d.ts +14 -0
- package/dist/rendering/Raycaster.d.ts.map +1 -0
- package/dist/rendering/Raycaster.js +10 -0
- package/dist/rendering/Raycaster.js.map +1 -0
- package/dist/rendering/ReflectionProbe.d.ts +8 -0
- package/dist/rendering/ReflectionProbe.d.ts.map +1 -0
- package/dist/rendering/ReflectionProbe.js +10 -0
- package/dist/rendering/ReflectionProbe.js.map +1 -0
- package/dist/rendering/ReflectionSurfaces.d.ts +35 -0
- package/dist/rendering/ReflectionSurfaces.d.ts.map +1 -0
- package/dist/rendering/ReflectionSurfaces.js +155 -0
- package/dist/rendering/ReflectionSurfaces.js.map +1 -0
- package/dist/rendering/RenderBackend.d.ts +14 -0
- package/dist/rendering/RenderBackend.d.ts.map +1 -0
- package/dist/rendering/RenderBackend.js +33 -0
- package/dist/rendering/RenderBackend.js.map +1 -0
- package/dist/rendering/RenderDebugViews.d.ts +26 -0
- package/dist/rendering/RenderDebugViews.d.ts.map +1 -0
- package/dist/rendering/RenderDebugViews.js +97 -0
- package/dist/rendering/RenderDebugViews.js.map +1 -0
- package/dist/rendering/RenderDevice.d.ts +280 -0
- package/dist/rendering/RenderDevice.d.ts.map +1 -0
- package/dist/rendering/RenderDevice.js +561 -0
- package/dist/rendering/RenderDevice.js.map +1 -0
- package/dist/rendering/RenderGraph.d.ts +22 -0
- package/dist/rendering/RenderGraph.d.ts.map +1 -0
- package/dist/rendering/RenderGraph.js +159 -0
- package/dist/rendering/RenderGraph.js.map +1 -0
- package/dist/rendering/RenderPass.d.ts +23 -0
- package/dist/rendering/RenderPass.d.ts.map +1 -0
- package/dist/rendering/RenderPass.js +14 -0
- package/dist/rendering/RenderPass.js.map +1 -0
- package/dist/rendering/RenderPipeline.d.ts +39 -0
- package/dist/rendering/RenderPipeline.d.ts.map +1 -0
- package/dist/rendering/RenderPipeline.js +67 -0
- package/dist/rendering/RenderPipeline.js.map +1 -0
- package/dist/rendering/RenderQueue.d.ts +3 -0
- package/dist/rendering/RenderQueue.d.ts.map +1 -0
- package/dist/rendering/RenderQueue.js +2 -0
- package/dist/rendering/RenderQueue.js.map +1 -0
- package/dist/rendering/RenderState.d.ts +3 -0
- package/dist/rendering/RenderState.d.ts.map +1 -0
- package/dist/rendering/RenderState.js +2 -0
- package/dist/rendering/RenderState.js.map +1 -0
- package/dist/rendering/Renderer.d.ts +265 -0
- package/dist/rendering/Renderer.d.ts.map +1 -0
- package/dist/rendering/Renderer.js +2094 -0
- package/dist/rendering/Renderer.js.map +1 -0
- package/dist/rendering/RendererDebugOverlay.d.ts +20 -0
- package/dist/rendering/RendererDebugOverlay.d.ts.map +1 -0
- package/dist/rendering/RendererDebugOverlay.js +54 -0
- package/dist/rendering/RendererDebugOverlay.js.map +1 -0
- package/dist/rendering/RendererFeatureGates.d.ts +17 -0
- package/dist/rendering/RendererFeatureGates.d.ts.map +1 -0
- package/dist/rendering/RendererFeatureGates.js +92 -0
- package/dist/rendering/RendererFeatureGates.js.map +1 -0
- package/dist/rendering/RendererPostprocessPlan.d.ts +59 -0
- package/dist/rendering/RendererPostprocessPlan.d.ts.map +1 -0
- package/dist/rendering/RendererPostprocessPlan.js +155 -0
- package/dist/rendering/RendererPostprocessPlan.js.map +1 -0
- package/dist/rendering/RendererTiming.d.ts +53 -0
- package/dist/rendering/RendererTiming.d.ts.map +1 -0
- package/dist/rendering/RendererTiming.js +186 -0
- package/dist/rendering/RendererTiming.js.map +1 -0
- package/dist/rendering/RendererVisualPipelineReport.d.ts +224 -0
- package/dist/rendering/RendererVisualPipelineReport.d.ts.map +1 -0
- package/dist/rendering/RendererVisualPipelineReport.js +499 -0
- package/dist/rendering/RendererVisualPipelineReport.js.map +1 -0
- package/dist/rendering/ResourceLifecycle.d.ts +8 -0
- package/dist/rendering/ResourceLifecycle.d.ts.map +1 -0
- package/dist/rendering/ResourceLifecycle.js +18 -0
- package/dist/rendering/ResourceLifecycle.js.map +1 -0
- package/dist/rendering/Sampler.d.ts +20 -0
- package/dist/rendering/Sampler.d.ts.map +1 -0
- package/dist/rendering/Sampler.js +19 -0
- package/dist/rendering/Sampler.js.map +1 -0
- package/dist/rendering/SceneOptimization.d.ts +127 -0
- package/dist/rendering/SceneOptimization.d.ts.map +1 -0
- package/dist/rendering/SceneOptimization.js +342 -0
- package/dist/rendering/SceneOptimization.js.map +1 -0
- package/dist/rendering/ShaderChunks.d.ts +8 -0
- package/dist/rendering/ShaderChunks.d.ts.map +1 -0
- package/dist/rendering/ShaderChunks.js +386 -0
- package/dist/rendering/ShaderChunks.js.map +1 -0
- package/dist/rendering/ShaderLibrary.d.ts +63 -0
- package/dist/rendering/ShaderLibrary.d.ts.map +1 -0
- package/dist/rendering/ShaderLibrary.js +2707 -0
- package/dist/rendering/ShaderLibrary.js.map +1 -0
- package/dist/rendering/ShaderModule.d.ts +14 -0
- package/dist/rendering/ShaderModule.d.ts.map +1 -0
- package/dist/rendering/ShaderModule.js +33 -0
- package/dist/rendering/ShaderModule.js.map +1 -0
- package/dist/rendering/ShaderPreprocessor.d.ts +19 -0
- package/dist/rendering/ShaderPreprocessor.d.ts.map +1 -0
- package/dist/rendering/ShaderPreprocessor.js +212 -0
- package/dist/rendering/ShaderPreprocessor.js.map +1 -0
- package/dist/rendering/ShaderReflection.d.ts +23 -0
- package/dist/rendering/ShaderReflection.d.ts.map +1 -0
- package/dist/rendering/ShaderReflection.js +134 -0
- package/dist/rendering/ShaderReflection.js.map +1 -0
- package/dist/rendering/ShadowMap.d.ts +58 -0
- package/dist/rendering/ShadowMap.d.ts.map +1 -0
- package/dist/rendering/ShadowMap.js +183 -0
- package/dist/rendering/ShadowMap.js.map +1 -0
- package/dist/rendering/ShadowPass.d.ts +44 -0
- package/dist/rendering/ShadowPass.d.ts.map +1 -0
- package/dist/rendering/ShadowPass.js +162 -0
- package/dist/rendering/ShadowPass.js.map +1 -0
- package/dist/rendering/ShadowProjection.d.ts +15 -0
- package/dist/rendering/ShadowProjection.d.ts.map +1 -0
- package/dist/rendering/ShadowProjection.js +90 -0
- package/dist/rendering/ShadowProjection.js.map +1 -0
- package/dist/rendering/SkinnedLitMaterial.d.ts +63 -0
- package/dist/rendering/SkinnedLitMaterial.d.ts.map +1 -0
- package/dist/rendering/SkinnedLitMaterial.js +296 -0
- package/dist/rendering/SkinnedLitMaterial.js.map +1 -0
- package/dist/rendering/SkinnedUnlitMaterial.d.ts +13 -0
- package/dist/rendering/SkinnedUnlitMaterial.d.ts.map +1 -0
- package/dist/rendering/SkinnedUnlitMaterial.js +52 -0
- package/dist/rendering/SkinnedUnlitMaterial.js.map +1 -0
- package/dist/rendering/SkinningBounds.d.ts +10 -0
- package/dist/rendering/SkinningBounds.d.ts.map +1 -0
- package/dist/rendering/SkinningBounds.js +107 -0
- package/dist/rendering/SkinningBounds.js.map +1 -0
- package/dist/rendering/SpaceEnvironmentFixtures.d.ts +59 -0
- package/dist/rendering/SpaceEnvironmentFixtures.d.ts.map +1 -0
- package/dist/rendering/SpaceEnvironmentFixtures.js +132 -0
- package/dist/rendering/SpaceEnvironmentFixtures.js.map +1 -0
- package/dist/rendering/SpriteGeometry.d.ts +3 -0
- package/dist/rendering/SpriteGeometry.d.ts.map +1 -0
- package/dist/rendering/SpriteGeometry.js +21 -0
- package/dist/rendering/SpriteGeometry.js.map +1 -0
- package/dist/rendering/StereoCameraRig.d.ts +34 -0
- package/dist/rendering/StereoCameraRig.d.ts.map +1 -0
- package/dist/rendering/StereoCameraRig.js +79 -0
- package/dist/rendering/StereoCameraRig.js.map +1 -0
- package/dist/rendering/StereoEffects.d.ts +90 -0
- package/dist/rendering/StereoEffects.d.ts.map +1 -0
- package/dist/rendering/StereoEffects.js +171 -0
- package/dist/rendering/StereoEffects.js.map +1 -0
- package/dist/rendering/TerrainFixtures.d.ts +36 -0
- package/dist/rendering/TerrainFixtures.d.ts.map +1 -0
- package/dist/rendering/TerrainFixtures.js +143 -0
- package/dist/rendering/TerrainFixtures.js.map +1 -0
- package/dist/rendering/Texture.d.ts +64 -0
- package/dist/rendering/Texture.d.ts.map +1 -0
- package/dist/rendering/Texture.js +257 -0
- package/dist/rendering/Texture.js.map +1 -0
- package/dist/rendering/TextureBinding.d.ts +38 -0
- package/dist/rendering/TextureBinding.d.ts.map +1 -0
- package/dist/rendering/TextureBinding.js +66 -0
- package/dist/rendering/TextureBinding.js.map +1 -0
- package/dist/rendering/TexturedPBRMaterial.d.ts +206 -0
- package/dist/rendering/TexturedPBRMaterial.d.ts.map +1 -0
- package/dist/rendering/TexturedPBRMaterial.js +842 -0
- package/dist/rendering/TexturedPBRMaterial.js.map +1 -0
- package/dist/rendering/TexturedUnlitMaterial.d.ts +19 -0
- package/dist/rendering/TexturedUnlitMaterial.d.ts.map +1 -0
- package/dist/rendering/TexturedUnlitMaterial.js +52 -0
- package/dist/rendering/TexturedUnlitMaterial.js.map +1 -0
- package/dist/rendering/ToneMapping.d.ts +19 -0
- package/dist/rendering/ToneMapping.d.ts.map +1 -0
- package/dist/rendering/ToneMapping.js +53 -0
- package/dist/rendering/ToneMapping.js.map +1 -0
- package/dist/rendering/UniformBinder.d.ts +7 -0
- package/dist/rendering/UniformBinder.d.ts.map +1 -0
- package/dist/rendering/UniformBinder.js +14 -0
- package/dist/rendering/UniformBinder.js.map +1 -0
- package/dist/rendering/UniformLayout.d.ts +19 -0
- package/dist/rendering/UniformLayout.d.ts.map +1 -0
- package/dist/rendering/UniformLayout.js +107 -0
- package/dist/rendering/UniformLayout.js.map +1 -0
- package/dist/rendering/UnlitMaterial.d.ts +16 -0
- package/dist/rendering/UnlitMaterial.d.ts.map +1 -0
- package/dist/rendering/UnlitMaterial.js +60 -0
- package/dist/rendering/UnlitMaterial.js.map +1 -0
- package/dist/rendering/VegetationFixtures.d.ts +68 -0
- package/dist/rendering/VegetationFixtures.d.ts.map +1 -0
- package/dist/rendering/VegetationFixtures.js +241 -0
- package/dist/rendering/VegetationFixtures.js.map +1 -0
- package/dist/rendering/VertexBuffer.d.ts +29 -0
- package/dist/rendering/VertexBuffer.d.ts.map +1 -0
- package/dist/rendering/VertexBuffer.js +106 -0
- package/dist/rendering/VertexBuffer.js.map +1 -0
- package/dist/rendering/VertexFormat.d.ts +36 -0
- package/dist/rendering/VertexFormat.d.ts.map +1 -0
- package/dist/rendering/VertexFormat.js +127 -0
- package/dist/rendering/VertexFormat.js.map +1 -0
- package/dist/rendering/VoxelWorldFixtures.d.ts +54 -0
- package/dist/rendering/VoxelWorldFixtures.d.ts.map +1 -0
- package/dist/rendering/VoxelWorldFixtures.js +186 -0
- package/dist/rendering/VoxelWorldFixtures.js.map +1 -0
- package/dist/rendering/WeatherFixtures.d.ts +46 -0
- package/dist/rendering/WeatherFixtures.d.ts.map +1 -0
- package/dist/rendering/WeatherFixtures.js +142 -0
- package/dist/rendering/WeatherFixtures.js.map +1 -0
- package/dist/rendering/WebGL2Device.d.ts +137 -0
- package/dist/rendering/WebGL2Device.d.ts.map +1 -0
- package/dist/rendering/WebGL2Device.js +2107 -0
- package/dist/rendering/WebGL2Device.js.map +1 -0
- package/dist/rendering/WebGL2StateCache.d.ts +89 -0
- package/dist/rendering/WebGL2StateCache.d.ts.map +1 -0
- package/dist/rendering/WebGL2StateCache.js +265 -0
- package/dist/rendering/WebGL2StateCache.js.map +1 -0
- package/dist/rendering/WebGPUDevice.d.ts +287 -0
- package/dist/rendering/WebGPUDevice.d.ts.map +1 -0
- package/dist/rendering/WebGPUDevice.js +2403 -0
- package/dist/rendering/WebGPUDevice.js.map +1 -0
- package/dist/rendering/WebGPURenderToTextureProof.d.ts +29 -0
- package/dist/rendering/WebGPURenderToTextureProof.d.ts.map +1 -0
- package/dist/rendering/WebGPURenderToTextureProof.js +96 -0
- package/dist/rendering/WebGPURenderToTextureProof.js.map +1 -0
- package/dist/rendering/advanced-runtime/AdvancedRenderer.d.ts +23 -0
- package/dist/rendering/advanced-runtime/AdvancedRenderer.d.ts.map +1 -0
- package/dist/rendering/advanced-runtime/AdvancedRenderer.js +45 -0
- package/dist/rendering/advanced-runtime/AdvancedRenderer.js.map +1 -0
- package/dist/rendering/advanced-runtime/index.d.ts +10 -0
- package/dist/rendering/advanced-runtime/index.d.ts.map +1 -0
- package/dist/rendering/advanced-runtime/index.js +9 -0
- package/dist/rendering/advanced-runtime/index.js.map +1 -0
- package/dist/rendering/cinematic/BloomPass.d.ts +10 -0
- package/dist/rendering/cinematic/BloomPass.d.ts.map +1 -0
- package/dist/rendering/cinematic/BloomPass.js +18 -0
- package/dist/rendering/cinematic/BloomPass.js.map +1 -0
- package/dist/rendering/cinematic/CinematicDepthComposition.d.ts +12 -0
- package/dist/rendering/cinematic/CinematicDepthComposition.d.ts.map +1 -0
- package/dist/rendering/cinematic/CinematicDepthComposition.js +22 -0
- package/dist/rendering/cinematic/CinematicDepthComposition.js.map +1 -0
- package/dist/rendering/cinematic/CinematicEvidence.d.ts +43 -0
- package/dist/rendering/cinematic/CinematicEvidence.d.ts.map +1 -0
- package/dist/rendering/cinematic/CinematicEvidence.js +55 -0
- package/dist/rendering/cinematic/CinematicEvidence.js.map +1 -0
- package/dist/rendering/cinematic/CinematicLightingRig.d.ts +32 -0
- package/dist/rendering/cinematic/CinematicLightingRig.d.ts.map +1 -0
- package/dist/rendering/cinematic/CinematicLightingRig.js +90 -0
- package/dist/rendering/cinematic/CinematicLightingRig.js.map +1 -0
- package/dist/rendering/cinematic/CinematicMaterialPresets.d.ts +16 -0
- package/dist/rendering/cinematic/CinematicMaterialPresets.d.ts.map +1 -0
- package/dist/rendering/cinematic/CinematicMaterialPresets.js +114 -0
- package/dist/rendering/cinematic/CinematicMaterialPresets.js.map +1 -0
- package/dist/rendering/cinematic/CinematicPostProcess.d.ts +25 -0
- package/dist/rendering/cinematic/CinematicPostProcess.d.ts.map +1 -0
- package/dist/rendering/cinematic/CinematicPostProcess.js +64 -0
- package/dist/rendering/cinematic/CinematicPostProcess.js.map +1 -0
- package/dist/rendering/cinematic/DepthHazePass.d.ts +12 -0
- package/dist/rendering/cinematic/DepthHazePass.d.ts.map +1 -0
- package/dist/rendering/cinematic/DepthHazePass.js +20 -0
- package/dist/rendering/cinematic/DepthHazePass.js.map +1 -0
- package/dist/rendering/cinematic/EmissivePracticalLightSystem.d.ts +18 -0
- package/dist/rendering/cinematic/EmissivePracticalLightSystem.d.ts.map +1 -0
- package/dist/rendering/cinematic/EmissivePracticalLightSystem.js +25 -0
- package/dist/rendering/cinematic/EmissivePracticalLightSystem.js.map +1 -0
- package/dist/rendering/cinematic/FilmGrainPass.d.ts +9 -0
- package/dist/rendering/cinematic/FilmGrainPass.d.ts.map +1 -0
- package/dist/rendering/cinematic/FilmGrainPass.js +17 -0
- package/dist/rendering/cinematic/FilmGrainPass.js.map +1 -0
- package/dist/rendering/cinematic/FogVolumeSystem.d.ts +12 -0
- package/dist/rendering/cinematic/FogVolumeSystem.d.ts.map +1 -0
- package/dist/rendering/cinematic/FogVolumeSystem.js +20 -0
- package/dist/rendering/cinematic/FogVolumeSystem.js.map +1 -0
- package/dist/rendering/cinematic/GlowCardSystem.d.ts +17 -0
- package/dist/rendering/cinematic/GlowCardSystem.d.ts.map +1 -0
- package/dist/rendering/cinematic/GlowCardSystem.js +28 -0
- package/dist/rendering/cinematic/GlowCardSystem.js.map +1 -0
- package/dist/rendering/cinematic/RainParticleSystem.d.ts +22 -0
- package/dist/rendering/cinematic/RainParticleSystem.d.ts.map +1 -0
- package/dist/rendering/cinematic/RainParticleSystem.js +114 -0
- package/dist/rendering/cinematic/RainParticleSystem.js.map +1 -0
- package/dist/rendering/cinematic/VignettePass.d.ts +10 -0
- package/dist/rendering/cinematic/VignettePass.d.ts.map +1 -0
- package/dist/rendering/cinematic/VignettePass.js +17 -0
- package/dist/rendering/cinematic/VignettePass.js.map +1 -0
- package/dist/rendering/cinematic/WetReflectionApproximation.d.ts +13 -0
- package/dist/rendering/cinematic/WetReflectionApproximation.d.ts.map +1 -0
- package/dist/rendering/cinematic/WetReflectionApproximation.js +18 -0
- package/dist/rendering/cinematic/WetReflectionApproximation.js.map +1 -0
- package/dist/rendering/cinematic/index.d.ts +15 -0
- package/dist/rendering/cinematic/index.d.ts.map +1 -0
- package/dist/rendering/cinematic/index.js +15 -0
- package/dist/rendering/cinematic/index.js.map +1 -0
- package/dist/rendering/effects/CollisionModule.d.ts +15 -0
- package/dist/rendering/effects/CollisionModule.d.ts.map +1 -0
- package/dist/rendering/effects/CollisionModule.js +46 -0
- package/dist/rendering/effects/CollisionModule.js.map +1 -0
- package/dist/rendering/effects/ColorModule.d.ts +15 -0
- package/dist/rendering/effects/ColorModule.d.ts.map +1 -0
- package/dist/rendering/effects/ColorModule.js +45 -0
- package/dist/rendering/effects/ColorModule.js.map +1 -0
- package/dist/rendering/effects/ForceModule.d.ts +11 -0
- package/dist/rendering/effects/ForceModule.d.ts.map +1 -0
- package/dist/rendering/effects/ForceModule.js +17 -0
- package/dist/rendering/effects/ForceModule.js.map +1 -0
- package/dist/rendering/effects/GPUParticleBackend.d.ts +153 -0
- package/dist/rendering/effects/GPUParticleBackend.d.ts.map +1 -0
- package/dist/rendering/effects/GPUParticleBackend.js +397 -0
- package/dist/rendering/effects/GPUParticleBackend.js.map +1 -0
- package/dist/rendering/effects/Particle.d.ts +49 -0
- package/dist/rendering/effects/Particle.d.ts.map +1 -0
- package/dist/rendering/effects/Particle.js +56 -0
- package/dist/rendering/effects/Particle.js.map +1 -0
- package/dist/rendering/effects/ParticleDiagnostics.d.ts +58 -0
- package/dist/rendering/effects/ParticleDiagnostics.d.ts.map +1 -0
- package/dist/rendering/effects/ParticleDiagnostics.js +145 -0
- package/dist/rendering/effects/ParticleDiagnostics.js.map +1 -0
- package/dist/rendering/effects/ParticleEffectPresets.d.ts +8 -0
- package/dist/rendering/effects/ParticleEffectPresets.d.ts.map +1 -0
- package/dist/rendering/effects/ParticleEffectPresets.js +137 -0
- package/dist/rendering/effects/ParticleEffectPresets.js.map +1 -0
- package/dist/rendering/effects/ParticleEmitter.d.ts +87 -0
- package/dist/rendering/effects/ParticleEmitter.d.ts.map +1 -0
- package/dist/rendering/effects/ParticleEmitter.js +254 -0
- package/dist/rendering/effects/ParticleEmitter.js.map +1 -0
- package/dist/rendering/effects/ParticleModule.d.ts +15 -0
- package/dist/rendering/effects/ParticleModule.d.ts.map +1 -0
- package/dist/rendering/effects/ParticleModule.js +6 -0
- package/dist/rendering/effects/ParticleModule.js.map +1 -0
- package/dist/rendering/effects/ParticleRenderPass.d.ts +35 -0
- package/dist/rendering/effects/ParticleRenderPass.d.ts.map +1 -0
- package/dist/rendering/effects/ParticleRenderPass.js +91 -0
- package/dist/rendering/effects/ParticleRenderPass.js.map +1 -0
- package/dist/rendering/effects/ParticleRenderer.d.ts +34 -0
- package/dist/rendering/effects/ParticleRenderer.d.ts.map +1 -0
- package/dist/rendering/effects/ParticleRenderer.js +93 -0
- package/dist/rendering/effects/ParticleRenderer.js.map +1 -0
- package/dist/rendering/effects/ParticleSystem.d.ts +51 -0
- package/dist/rendering/effects/ParticleSystem.d.ts.map +1 -0
- package/dist/rendering/effects/ParticleSystem.js +261 -0
- package/dist/rendering/effects/ParticleSystem.js.map +1 -0
- package/dist/rendering/effects/SizeModule.d.ts +14 -0
- package/dist/rendering/effects/SizeModule.d.ts.map +1 -0
- package/dist/rendering/effects/SizeModule.js +42 -0
- package/dist/rendering/effects/SizeModule.js.map +1 -0
- package/dist/rendering/effects/TrailModule.d.ts +22 -0
- package/dist/rendering/effects/TrailModule.d.ts.map +1 -0
- package/dist/rendering/effects/TrailModule.js +50 -0
- package/dist/rendering/effects/TrailModule.js.map +1 -0
- package/dist/rendering/effects/VelocityModule.d.ts +15 -0
- package/dist/rendering/effects/VelocityModule.d.ts.map +1 -0
- package/dist/rendering/effects/VelocityModule.js +57 -0
- package/dist/rendering/effects/VelocityModule.js.map +1 -0
- package/dist/rendering/effects/index.d.ts +16 -0
- package/dist/rendering/effects/index.d.ts.map +1 -0
- package/dist/rendering/effects/index.js +16 -0
- package/dist/rendering/effects/index.js.map +1 -0
- package/dist/rendering/index.d.ts +260 -0
- package/dist/rendering/index.d.ts.map +1 -0
- package/dist/rendering/index.js +155 -0
- package/dist/rendering/index.js.map +1 -0
- package/dist/rendering/materials/AlphaSorting.d.ts +8 -0
- package/dist/rendering/materials/AlphaSorting.d.ts.map +1 -0
- package/dist/rendering/materials/AlphaSorting.js +26 -0
- package/dist/rendering/materials/AlphaSorting.js.map +1 -0
- package/dist/rendering/materials/MaterialExtensions.d.ts +10 -0
- package/dist/rendering/materials/MaterialExtensions.d.ts.map +1 -0
- package/dist/rendering/materials/MaterialExtensions.js +20 -0
- package/dist/rendering/materials/MaterialExtensions.js.map +1 -0
- package/dist/rendering/materials/PhysicalMaterial.d.ts +36 -0
- package/dist/rendering/materials/PhysicalMaterial.d.ts.map +1 -0
- package/dist/rendering/materials/PhysicalMaterial.js +79 -0
- package/dist/rendering/materials/PhysicalMaterial.js.map +1 -0
- package/dist/rendering/materials/TransmissionPass.d.ts +16 -0
- package/dist/rendering/materials/TransmissionPass.d.ts.map +1 -0
- package/dist/rendering/materials/TransmissionPass.js +30 -0
- package/dist/rendering/materials/TransmissionPass.js.map +1 -0
- package/dist/rendering/performance/BVH.d.ts +3 -0
- package/dist/rendering/performance/BVH.d.ts.map +1 -0
- package/dist/rendering/performance/BVH.js +2 -0
- package/dist/rendering/performance/BVH.js.map +1 -0
- package/dist/rendering/performance/Batcher.d.ts +3 -0
- package/dist/rendering/performance/Batcher.d.ts.map +1 -0
- package/dist/rendering/performance/Batcher.js +2 -0
- package/dist/rendering/performance/Batcher.js.map +1 -0
- package/dist/rendering/performance/FrustumCuller.d.ts +3 -0
- package/dist/rendering/performance/FrustumCuller.d.ts.map +1 -0
- package/dist/rendering/performance/FrustumCuller.js +5 -0
- package/dist/rendering/performance/FrustumCuller.js.map +1 -0
- package/dist/rendering/performance/LOD.d.ts +8 -0
- package/dist/rendering/performance/LOD.d.ts.map +1 -0
- package/dist/rendering/performance/LOD.js +15 -0
- package/dist/rendering/performance/LOD.js.map +1 -0
- package/dist/rendering/performance/Octree.d.ts +7 -0
- package/dist/rendering/performance/Octree.d.ts.map +1 -0
- package/dist/rendering/performance/Octree.js +4 -0
- package/dist/rendering/performance/Octree.js.map +1 -0
- package/dist/rendering/performance/RenderItemSorting.d.ts +43 -0
- package/dist/rendering/performance/RenderItemSorting.d.ts.map +1 -0
- package/dist/rendering/performance/RenderItemSorting.js +111 -0
- package/dist/rendering/performance/RenderItemSorting.js.map +1 -0
- package/dist/rendering/performance/RendererStats.d.ts +23 -0
- package/dist/rendering/performance/RendererStats.d.ts.map +1 -0
- package/dist/rendering/performance/RendererStats.js +23 -0
- package/dist/rendering/performance/RendererStats.js.map +1 -0
- package/dist/rendering/performance/ResourceBudget.d.ts +19 -0
- package/dist/rendering/performance/ResourceBudget.d.ts.map +1 -0
- package/dist/rendering/performance/ResourceBudget.js +21 -0
- package/dist/rendering/performance/ResourceBudget.js.map +1 -0
- package/dist/rendering/postprocess/BloomPass.d.ts +11 -0
- package/dist/rendering/postprocess/BloomPass.d.ts.map +1 -0
- package/dist/rendering/postprocess/BloomPass.js +14 -0
- package/dist/rendering/postprocess/BloomPass.js.map +1 -0
- package/dist/rendering/postprocess/CinematicDiagnostics.d.ts +112 -0
- package/dist/rendering/postprocess/CinematicDiagnostics.d.ts.map +1 -0
- package/dist/rendering/postprocess/CinematicDiagnostics.js +492 -0
- package/dist/rendering/postprocess/CinematicDiagnostics.js.map +1 -0
- package/dist/rendering/postprocess/ColorGradingPass.d.ts +4 -0
- package/dist/rendering/postprocess/ColorGradingPass.d.ts.map +1 -0
- package/dist/rendering/postprocess/ColorGradingPass.js +15 -0
- package/dist/rendering/postprocess/ColorGradingPass.js.map +1 -0
- package/dist/rendering/postprocess/DepthOfFieldPass.d.ts +3 -0
- package/dist/rendering/postprocess/DepthOfFieldPass.d.ts.map +1 -0
- package/dist/rendering/postprocess/DepthOfFieldPass.js +7 -0
- package/dist/rendering/postprocess/DepthOfFieldPass.js.map +1 -0
- package/dist/rendering/postprocess/EffectComposer.d.ts +110 -0
- package/dist/rendering/postprocess/EffectComposer.d.ts.map +1 -0
- package/dist/rendering/postprocess/EffectComposer.js +249 -0
- package/dist/rendering/postprocess/EffectComposer.js.map +1 -0
- package/dist/rendering/postprocess/SSAOPass.d.ts +6 -0
- package/dist/rendering/postprocess/SSAOPass.d.ts.map +1 -0
- package/dist/rendering/postprocess/SSAOPass.js +18 -0
- package/dist/rendering/postprocess/SSAOPass.js.map +1 -0
- package/dist/rendering/postprocess/index.d.ts +11 -0
- package/dist/rendering/postprocess/index.d.ts.map +1 -0
- package/dist/rendering/postprocess/index.js +7 -0
- package/dist/rendering/postprocess/index.js.map +1 -0
- package/dist/rendering/production-runtime/AnimationControlsPipeline.d.ts +37 -0
- package/dist/rendering/production-runtime/AnimationControlsPipeline.d.ts.map +1 -0
- package/dist/rendering/production-runtime/AnimationControlsPipeline.js +41 -0
- package/dist/rendering/production-runtime/AnimationControlsPipeline.js.map +1 -0
- package/dist/rendering/production-runtime/PBRHDRPipeline.d.ts +81 -0
- package/dist/rendering/production-runtime/PBRHDRPipeline.d.ts.map +1 -0
- package/dist/rendering/production-runtime/PBRHDRPipeline.js +279 -0
- package/dist/rendering/production-runtime/PBRHDRPipeline.js.map +1 -0
- package/dist/rendering/production-runtime/ProductionEffectsPipeline.d.ts +20 -0
- package/dist/rendering/production-runtime/ProductionEffectsPipeline.d.ts.map +1 -0
- package/dist/rendering/production-runtime/ProductionEffectsPipeline.js +65 -0
- package/dist/rendering/production-runtime/ProductionEffectsPipeline.js.map +1 -0
- package/dist/rendering/production-runtime/ProductionRendererTypes.d.ts +97 -0
- package/dist/rendering/production-runtime/ProductionRendererTypes.d.ts.map +1 -0
- package/dist/rendering/production-runtime/ProductionRendererTypes.js +29 -0
- package/dist/rendering/production-runtime/ProductionRendererTypes.js.map +1 -0
- package/dist/rendering/production-runtime/ProductionRuntimeRenderer.d.ts +36 -0
- package/dist/rendering/production-runtime/ProductionRuntimeRenderer.d.ts.map +1 -0
- package/dist/rendering/production-runtime/ProductionRuntimeRenderer.js +124 -0
- package/dist/rendering/production-runtime/ProductionRuntimeRenderer.js.map +1 -0
- package/dist/rendering/production-runtime/ProductionWebGL2Renderer.d.ts +51 -0
- package/dist/rendering/production-runtime/ProductionWebGL2Renderer.d.ts.map +1 -0
- package/dist/rendering/production-runtime/ProductionWebGL2Renderer.js +269 -0
- package/dist/rendering/production-runtime/ProductionWebGL2Renderer.js.map +1 -0
- package/dist/rendering/production-runtime/ProductionWebGPURenderer.d.ts +69 -0
- package/dist/rendering/production-runtime/ProductionWebGPURenderer.d.ts.map +1 -0
- package/dist/rendering/production-runtime/ProductionWebGPURenderer.js +313 -0
- package/dist/rendering/production-runtime/ProductionWebGPURenderer.js.map +1 -0
- package/dist/rendering/production-runtime/TransmissionBackdropCapture.d.ts +11 -0
- package/dist/rendering/production-runtime/TransmissionBackdropCapture.d.ts.map +1 -0
- package/dist/rendering/production-runtime/TransmissionBackdropCapture.js +119 -0
- package/dist/rendering/production-runtime/TransmissionBackdropCapture.js.map +1 -0
- package/dist/rendering/production-runtime/animation/MorphTargetRenderer.d.ts +7 -0
- package/dist/rendering/production-runtime/animation/MorphTargetRenderer.d.ts.map +1 -0
- package/dist/rendering/production-runtime/animation/MorphTargetRenderer.js +2 -0
- package/dist/rendering/production-runtime/animation/MorphTargetRenderer.js.map +1 -0
- package/dist/rendering/production-runtime/animation/SkinningRenderer.d.ts +7 -0
- package/dist/rendering/production-runtime/animation/SkinningRenderer.d.ts.map +1 -0
- package/dist/rendering/production-runtime/animation/SkinningRenderer.js +2 -0
- package/dist/rendering/production-runtime/animation/SkinningRenderer.js.map +1 -0
- package/dist/rendering/production-runtime/backends/RendererBackend.d.ts +16 -0
- package/dist/rendering/production-runtime/backends/RendererBackend.d.ts.map +1 -0
- package/dist/rendering/production-runtime/backends/RendererBackend.js +2 -0
- package/dist/rendering/production-runtime/backends/RendererBackend.js.map +1 -0
- package/dist/rendering/production-runtime/backends/WebGL2RendererBackend.d.ts +15 -0
- package/dist/rendering/production-runtime/backends/WebGL2RendererBackend.d.ts.map +1 -0
- package/dist/rendering/production-runtime/backends/WebGL2RendererBackend.js +25 -0
- package/dist/rendering/production-runtime/backends/WebGL2RendererBackend.js.map +1 -0
- package/dist/rendering/production-runtime/backends/WebGPURendererBackend.d.ts +20 -0
- package/dist/rendering/production-runtime/backends/WebGPURendererBackend.d.ts.map +1 -0
- package/dist/rendering/production-runtime/backends/WebGPURendererBackend.js +19 -0
- package/dist/rendering/production-runtime/backends/WebGPURendererBackend.js.map +1 -0
- package/dist/rendering/production-runtime/backends/webgl2/WebGL2Buffer.d.ts +11 -0
- package/dist/rendering/production-runtime/backends/webgl2/WebGL2Buffer.d.ts.map +1 -0
- package/dist/rendering/production-runtime/backends/webgl2/WebGL2Buffer.js +8 -0
- package/dist/rendering/production-runtime/backends/webgl2/WebGL2Buffer.js.map +1 -0
- package/dist/rendering/production-runtime/backends/webgl2/WebGL2Capabilities.d.ts +11 -0
- package/dist/rendering/production-runtime/backends/webgl2/WebGL2Capabilities.d.ts.map +1 -0
- package/dist/rendering/production-runtime/backends/webgl2/WebGL2Capabilities.js +8 -0
- package/dist/rendering/production-runtime/backends/webgl2/WebGL2Capabilities.js.map +1 -0
- package/dist/rendering/production-runtime/backends/webgl2/WebGL2RenderTarget.d.ts +11 -0
- package/dist/rendering/production-runtime/backends/webgl2/WebGL2RenderTarget.d.ts.map +1 -0
- package/dist/rendering/production-runtime/backends/webgl2/WebGL2RenderTarget.js +8 -0
- package/dist/rendering/production-runtime/backends/webgl2/WebGL2RenderTarget.js.map +1 -0
- package/dist/rendering/production-runtime/backends/webgl2/WebGL2Shader.d.ts +11 -0
- package/dist/rendering/production-runtime/backends/webgl2/WebGL2Shader.d.ts.map +1 -0
- package/dist/rendering/production-runtime/backends/webgl2/WebGL2Shader.js +8 -0
- package/dist/rendering/production-runtime/backends/webgl2/WebGL2Shader.js.map +1 -0
- package/dist/rendering/production-runtime/backends/webgl2/WebGL2StateCache.d.ts +2 -0
- package/dist/rendering/production-runtime/backends/webgl2/WebGL2StateCache.d.ts.map +1 -0
- package/dist/rendering/production-runtime/backends/webgl2/WebGL2StateCache.js +2 -0
- package/dist/rendering/production-runtime/backends/webgl2/WebGL2StateCache.js.map +1 -0
- package/dist/rendering/production-runtime/backends/webgl2/WebGL2Texture.d.ts +11 -0
- package/dist/rendering/production-runtime/backends/webgl2/WebGL2Texture.d.ts.map +1 -0
- package/dist/rendering/production-runtime/backends/webgl2/WebGL2Texture.js +8 -0
- package/dist/rendering/production-runtime/backends/webgl2/WebGL2Texture.js.map +1 -0
- package/dist/rendering/production-runtime/backends/webgpu/WebGPUBuffer.d.ts +11 -0
- package/dist/rendering/production-runtime/backends/webgpu/WebGPUBuffer.d.ts.map +1 -0
- package/dist/rendering/production-runtime/backends/webgpu/WebGPUBuffer.js +8 -0
- package/dist/rendering/production-runtime/backends/webgpu/WebGPUBuffer.js.map +1 -0
- package/dist/rendering/production-runtime/backends/webgpu/WebGPUCapabilities.d.ts +11 -0
- package/dist/rendering/production-runtime/backends/webgpu/WebGPUCapabilities.d.ts.map +1 -0
- package/dist/rendering/production-runtime/backends/webgpu/WebGPUCapabilities.js +8 -0
- package/dist/rendering/production-runtime/backends/webgpu/WebGPUCapabilities.js.map +1 -0
- package/dist/rendering/production-runtime/backends/webgpu/WebGPURenderTarget.d.ts +11 -0
- package/dist/rendering/production-runtime/backends/webgpu/WebGPURenderTarget.d.ts.map +1 -0
- package/dist/rendering/production-runtime/backends/webgpu/WebGPURenderTarget.js +8 -0
- package/dist/rendering/production-runtime/backends/webgpu/WebGPURenderTarget.js.map +1 -0
- package/dist/rendering/production-runtime/backends/webgpu/WebGPUShader.d.ts +11 -0
- package/dist/rendering/production-runtime/backends/webgpu/WebGPUShader.d.ts.map +1 -0
- package/dist/rendering/production-runtime/backends/webgpu/WebGPUShader.js +8 -0
- package/dist/rendering/production-runtime/backends/webgpu/WebGPUShader.js.map +1 -0
- package/dist/rendering/production-runtime/backends/webgpu/WebGPUTexture.d.ts +11 -0
- package/dist/rendering/production-runtime/backends/webgpu/WebGPUTexture.d.ts.map +1 -0
- package/dist/rendering/production-runtime/backends/webgpu/WebGPUTexture.js +8 -0
- package/dist/rendering/production-runtime/backends/webgpu/WebGPUTexture.js.map +1 -0
- package/dist/rendering/production-runtime/color/ColorManagement.d.ts +4 -0
- package/dist/rendering/production-runtime/color/ColorManagement.d.ts.map +1 -0
- package/dist/rendering/production-runtime/color/ColorManagement.js +3 -0
- package/dist/rendering/production-runtime/color/ColorManagement.js.map +1 -0
- package/dist/rendering/production-runtime/color/ToneMapping.d.ts +3 -0
- package/dist/rendering/production-runtime/color/ToneMapping.d.ts.map +1 -0
- package/dist/rendering/production-runtime/color/ToneMapping.js +9 -0
- package/dist/rendering/production-runtime/color/ToneMapping.js.map +1 -0
- package/dist/rendering/production-runtime/diagnostics/FrameCapture.d.ts +7 -0
- package/dist/rendering/production-runtime/diagnostics/FrameCapture.d.ts.map +1 -0
- package/dist/rendering/production-runtime/diagnostics/FrameCapture.js +2 -0
- package/dist/rendering/production-runtime/diagnostics/FrameCapture.js.map +1 -0
- package/dist/rendering/production-runtime/diagnostics/GPUCapabilities.d.ts +9 -0
- package/dist/rendering/production-runtime/diagnostics/GPUCapabilities.d.ts.map +1 -0
- package/dist/rendering/production-runtime/diagnostics/GPUCapabilities.js +2 -0
- package/dist/rendering/production-runtime/diagnostics/GPUCapabilities.js.map +1 -0
- package/dist/rendering/production-runtime/diagnostics/RendererStats.d.ts +9 -0
- package/dist/rendering/production-runtime/diagnostics/RendererStats.d.ts.map +1 -0
- package/dist/rendering/production-runtime/diagnostics/RendererStats.js +2 -0
- package/dist/rendering/production-runtime/diagnostics/RendererStats.js.map +1 -0
- package/dist/rendering/production-runtime/environment/EnvironmentMap.d.ts +8 -0
- package/dist/rendering/production-runtime/environment/EnvironmentMap.d.ts.map +1 -0
- package/dist/rendering/production-runtime/environment/EnvironmentMap.js +2 -0
- package/dist/rendering/production-runtime/environment/EnvironmentMap.js.map +1 -0
- package/dist/rendering/production-runtime/environment/HDRLoader.d.ts +19 -0
- package/dist/rendering/production-runtime/environment/HDRLoader.d.ts.map +1 -0
- package/dist/rendering/production-runtime/environment/HDRLoader.js +22 -0
- package/dist/rendering/production-runtime/environment/HDRLoader.js.map +1 -0
- package/dist/rendering/production-runtime/environment/PMREMGenerator.d.ts +99 -0
- package/dist/rendering/production-runtime/environment/PMREMGenerator.d.ts.map +1 -0
- package/dist/rendering/production-runtime/environment/PMREMGenerator.js +534 -0
- package/dist/rendering/production-runtime/environment/PMREMGenerator.js.map +1 -0
- package/dist/rendering/production-runtime/framegraph/FrameGraph.d.ts +8 -0
- package/dist/rendering/production-runtime/framegraph/FrameGraph.d.ts.map +1 -0
- package/dist/rendering/production-runtime/framegraph/FrameGraph.js +14 -0
- package/dist/rendering/production-runtime/framegraph/FrameGraph.js.map +1 -0
- package/dist/rendering/production-runtime/framegraph/RenderPass.d.ts +14 -0
- package/dist/rendering/production-runtime/framegraph/RenderPass.d.ts.map +1 -0
- package/dist/rendering/production-runtime/framegraph/RenderPass.js +2 -0
- package/dist/rendering/production-runtime/framegraph/RenderPass.js.map +1 -0
- package/dist/rendering/production-runtime/geometry/ProjectedDecalGeometry.d.ts +53 -0
- package/dist/rendering/production-runtime/geometry/ProjectedDecalGeometry.d.ts.map +1 -0
- package/dist/rendering/production-runtime/geometry/ProjectedDecalGeometry.js +340 -0
- package/dist/rendering/production-runtime/geometry/ProjectedDecalGeometry.js.map +1 -0
- package/dist/rendering/production-runtime/index.d.ts +73 -0
- package/dist/rendering/production-runtime/index.d.ts.map +1 -0
- package/dist/rendering/production-runtime/index.js +67 -0
- package/dist/rendering/production-runtime/index.js.map +1 -0
- package/dist/rendering/production-runtime/lights/LightManager.d.ts +8 -0
- package/dist/rendering/production-runtime/lights/LightManager.d.ts.map +1 -0
- package/dist/rendering/production-runtime/lights/LightManager.js +7 -0
- package/dist/rendering/production-runtime/lights/LightManager.js.map +1 -0
- package/dist/rendering/production-runtime/lights/ShadowMapRenderer.d.ts +8 -0
- package/dist/rendering/production-runtime/lights/ShadowMapRenderer.d.ts.map +1 -0
- package/dist/rendering/production-runtime/lights/ShadowMapRenderer.js +4 -0
- package/dist/rendering/production-runtime/lights/ShadowMapRenderer.js.map +1 -0
- package/dist/rendering/production-runtime/materials/GLTFMaterialAdapter.d.ts +14 -0
- package/dist/rendering/production-runtime/materials/GLTFMaterialAdapter.d.ts.map +1 -0
- package/dist/rendering/production-runtime/materials/GLTFMaterialAdapter.js +5 -0
- package/dist/rendering/production-runtime/materials/GLTFMaterialAdapter.js.map +1 -0
- package/dist/rendering/production-runtime/materials/GLTFPBRMaterialAdapter.d.ts +3 -0
- package/dist/rendering/production-runtime/materials/GLTFPBRMaterialAdapter.d.ts.map +1 -0
- package/dist/rendering/production-runtime/materials/GLTFPBRMaterialAdapter.js +2 -0
- package/dist/rendering/production-runtime/materials/GLTFPBRMaterialAdapter.js.map +1 -0
- package/dist/rendering/production-runtime/materials/MaterialCompiler.d.ts +9 -0
- package/dist/rendering/production-runtime/materials/MaterialCompiler.d.ts.map +1 -0
- package/dist/rendering/production-runtime/materials/MaterialCompiler.js +5 -0
- package/dist/rendering/production-runtime/materials/MaterialCompiler.js.map +1 -0
- package/dist/rendering/production-runtime/materials/MaterialTextureBindings.d.ts +8 -0
- package/dist/rendering/production-runtime/materials/MaterialTextureBindings.d.ts.map +1 -0
- package/dist/rendering/production-runtime/materials/MaterialTextureBindings.js +4 -0
- package/dist/rendering/production-runtime/materials/MaterialTextureBindings.js.map +1 -0
- package/dist/rendering/production-runtime/materials/PBRMaterial.d.ts +23 -0
- package/dist/rendering/production-runtime/materials/PBRMaterial.d.ts.map +1 -0
- package/dist/rendering/production-runtime/materials/PBRMaterial.js +2 -0
- package/dist/rendering/production-runtime/materials/PBRMaterial.js.map +1 -0
- package/dist/rendering/production-runtime/materials/PBRShaderFeatures.d.ts +13 -0
- package/dist/rendering/production-runtime/materials/PBRShaderFeatures.d.ts.map +1 -0
- package/dist/rendering/production-runtime/materials/PBRShaderFeatures.js +2 -0
- package/dist/rendering/production-runtime/materials/PBRShaderFeatures.js.map +1 -0
- package/dist/rendering/production-runtime/passes/ContactShadowPass.d.ts +40 -0
- package/dist/rendering/production-runtime/passes/ContactShadowPass.d.ts.map +1 -0
- package/dist/rendering/production-runtime/passes/ContactShadowPass.js +126 -0
- package/dist/rendering/production-runtime/passes/ContactShadowPass.js.map +1 -0
- package/dist/rendering/production-runtime/passes/DepthPrepass.d.ts +8 -0
- package/dist/rendering/production-runtime/passes/DepthPrepass.d.ts.map +1 -0
- package/dist/rendering/production-runtime/passes/DepthPrepass.js +7 -0
- package/dist/rendering/production-runtime/passes/DepthPrepass.js.map +1 -0
- package/dist/rendering/production-runtime/passes/OpaquePass.d.ts +8 -0
- package/dist/rendering/production-runtime/passes/OpaquePass.d.ts.map +1 -0
- package/dist/rendering/production-runtime/passes/OpaquePass.js +7 -0
- package/dist/rendering/production-runtime/passes/OpaquePass.js.map +1 -0
- package/dist/rendering/production-runtime/passes/ShadowPass.d.ts +8 -0
- package/dist/rendering/production-runtime/passes/ShadowPass.d.ts.map +1 -0
- package/dist/rendering/production-runtime/passes/ShadowPass.js +7 -0
- package/dist/rendering/production-runtime/passes/ShadowPass.js.map +1 -0
- package/dist/rendering/production-runtime/passes/SkyboxPass.d.ts +8 -0
- package/dist/rendering/production-runtime/passes/SkyboxPass.d.ts.map +1 -0
- package/dist/rendering/production-runtime/passes/SkyboxPass.js +7 -0
- package/dist/rendering/production-runtime/passes/SkyboxPass.js.map +1 -0
- package/dist/rendering/production-runtime/passes/ToneMappingPass.d.ts +8 -0
- package/dist/rendering/production-runtime/passes/ToneMappingPass.d.ts.map +1 -0
- package/dist/rendering/production-runtime/passes/ToneMappingPass.js +7 -0
- package/dist/rendering/production-runtime/passes/ToneMappingPass.js.map +1 -0
- package/dist/rendering/production-runtime/passes/TransparentPass.d.ts +8 -0
- package/dist/rendering/production-runtime/passes/TransparentPass.d.ts.map +1 -0
- package/dist/rendering/production-runtime/passes/TransparentPass.js +7 -0
- package/dist/rendering/production-runtime/passes/TransparentPass.js.map +1 -0
- package/dist/rendering/production-runtime/postprocess/BloomPass.d.ts +15 -0
- package/dist/rendering/production-runtime/postprocess/BloomPass.d.ts.map +1 -0
- package/dist/rendering/production-runtime/postprocess/BloomPass.js +37 -0
- package/dist/rendering/production-runtime/postprocess/BloomPass.js.map +1 -0
- package/dist/rendering/production-runtime/postprocess/ColorGradingPass.d.ts +16 -0
- package/dist/rendering/production-runtime/postprocess/ColorGradingPass.d.ts.map +1 -0
- package/dist/rendering/production-runtime/postprocess/ColorGradingPass.js +34 -0
- package/dist/rendering/production-runtime/postprocess/ColorGradingPass.js.map +1 -0
- package/dist/rendering/production-runtime/postprocess/DOFPass.d.ts +16 -0
- package/dist/rendering/production-runtime/postprocess/DOFPass.d.ts.map +1 -0
- package/dist/rendering/production-runtime/postprocess/DOFPass.js +31 -0
- package/dist/rendering/production-runtime/postprocess/DOFPass.js.map +1 -0
- package/dist/rendering/production-runtime/postprocess/FXAAPass.d.ts +16 -0
- package/dist/rendering/production-runtime/postprocess/FXAAPass.d.ts.map +1 -0
- package/dist/rendering/production-runtime/postprocess/FXAAPass.js +39 -0
- package/dist/rendering/production-runtime/postprocess/FXAAPass.js.map +1 -0
- package/dist/rendering/production-runtime/postprocess/ProductionEffectComposer.d.ts +21 -0
- package/dist/rendering/production-runtime/postprocess/ProductionEffectComposer.d.ts.map +1 -0
- package/dist/rendering/production-runtime/postprocess/ProductionEffectComposer.js +53 -0
- package/dist/rendering/production-runtime/postprocess/ProductionEffectComposer.js.map +1 -0
- package/dist/rendering/production-runtime/postprocess/ProductionPostProcessTypes.d.ts +37 -0
- package/dist/rendering/production-runtime/postprocess/ProductionPostProcessTypes.d.ts.map +1 -0
- package/dist/rendering/production-runtime/postprocess/ProductionPostProcessTypes.js +124 -0
- package/dist/rendering/production-runtime/postprocess/ProductionPostProcessTypes.js.map +1 -0
- package/dist/rendering/production-runtime/postprocess/SSAOPass.d.ts +15 -0
- package/dist/rendering/production-runtime/postprocess/SSAOPass.d.ts.map +1 -0
- package/dist/rendering/production-runtime/postprocess/SSAOPass.js +30 -0
- package/dist/rendering/production-runtime/postprocess/SSAOPass.js.map +1 -0
- package/dist/rendering/production-runtime/resources/GPUBuffer.d.ts +10 -0
- package/dist/rendering/production-runtime/resources/GPUBuffer.d.ts.map +1 -0
- package/dist/rendering/production-runtime/resources/GPUBuffer.js +7 -0
- package/dist/rendering/production-runtime/resources/GPUBuffer.js.map +1 -0
- package/dist/rendering/production-runtime/resources/GPUTexture.d.ts +12 -0
- package/dist/rendering/production-runtime/resources/GPUTexture.d.ts.map +1 -0
- package/dist/rendering/production-runtime/resources/GPUTexture.js +7 -0
- package/dist/rendering/production-runtime/resources/GPUTexture.js.map +1 -0
- package/dist/rendering/production-runtime/resources/RenderTarget.d.ts +11 -0
- package/dist/rendering/production-runtime/resources/RenderTarget.d.ts.map +1 -0
- package/dist/rendering/production-runtime/resources/RenderTarget.js +7 -0
- package/dist/rendering/production-runtime/resources/RenderTarget.js.map +1 -0
- package/dist/rendering/production-runtime/resources/ResourceCache.d.ts +8 -0
- package/dist/rendering/production-runtime/resources/ResourceCache.d.ts.map +1 -0
- package/dist/rendering/production-runtime/resources/ResourceCache.js +8 -0
- package/dist/rendering/production-runtime/resources/ResourceCache.js.map +1 -0
- package/dist/rendering/production-runtime/scene/Camera.d.ts +8 -0
- package/dist/rendering/production-runtime/scene/Camera.d.ts.map +1 -0
- package/dist/rendering/production-runtime/scene/Camera.js +2 -0
- package/dist/rendering/production-runtime/scene/Camera.js.map +1 -0
- package/dist/rendering/production-runtime/scene/Lights.d.ts +9 -0
- package/dist/rendering/production-runtime/scene/Lights.d.ts.map +1 -0
- package/dist/rendering/production-runtime/scene/Lights.js +2 -0
- package/dist/rendering/production-runtime/scene/Lights.js.map +1 -0
- package/dist/rendering/production-runtime/scene/RenderableMesh.d.ts +8 -0
- package/dist/rendering/production-runtime/scene/RenderableMesh.d.ts.map +1 -0
- package/dist/rendering/production-runtime/scene/RenderableMesh.js +2 -0
- package/dist/rendering/production-runtime/scene/RenderableMesh.js.map +1 -0
- package/dist/rendering/production-runtime/scene/RenderablePrimitive.d.ts +8 -0
- package/dist/rendering/production-runtime/scene/RenderablePrimitive.d.ts.map +1 -0
- package/dist/rendering/production-runtime/scene/RenderablePrimitive.js +2 -0
- package/dist/rendering/production-runtime/scene/RenderablePrimitive.js.map +1 -0
- package/dist/rendering/production-runtime/scene/RenderableScene.d.ts +11 -0
- package/dist/rendering/production-runtime/scene/RenderableScene.d.ts.map +1 -0
- package/dist/rendering/production-runtime/scene/RenderableScene.js +2 -0
- package/dist/rendering/production-runtime/scene/RenderableScene.js.map +1 -0
- package/dist/rendering/production-runtime/shaders/ShaderProgramLibrary.d.ts +12 -0
- package/dist/rendering/production-runtime/shaders/ShaderProgramLibrary.d.ts.map +1 -0
- package/dist/rendering/production-runtime/shaders/ShaderProgramLibrary.js +7 -0
- package/dist/rendering/production-runtime/shaders/ShaderProgramLibrary.js.map +1 -0
- package/dist/rendering/shadows/CascadedShadowPipeline.d.ts +25 -0
- package/dist/rendering/shadows/CascadedShadowPipeline.d.ts.map +1 -0
- package/dist/rendering/shadows/CascadedShadowPipeline.js +31 -0
- package/dist/rendering/shadows/CascadedShadowPipeline.js.map +1 -0
- package/dist/rendering/shadows/ContactShadows.d.ts +37 -0
- package/dist/rendering/shadows/ContactShadows.d.ts.map +1 -0
- package/dist/rendering/shadows/ContactShadows.js +68 -0
- package/dist/rendering/shadows/ContactShadows.js.map +1 -0
- package/dist/rendering/shadows/ShadowDebugViews.d.ts +12 -0
- package/dist/rendering/shadows/ShadowDebugViews.d.ts.map +1 -0
- package/dist/rendering/shadows/ShadowDebugViews.js +35 -0
- package/dist/rendering/shadows/ShadowDebugViews.js.map +1 -0
- package/dist/rendering/threejs-compatibility/InstancingSystem.d.ts +10 -0
- package/dist/rendering/threejs-compatibility/InstancingSystem.d.ts.map +1 -0
- package/dist/rendering/threejs-compatibility/InstancingSystem.js +11 -0
- package/dist/rendering/threejs-compatibility/InstancingSystem.js.map +1 -0
- package/dist/rendering/threejs-compatibility/LightingSystem.d.ts +11 -0
- package/dist/rendering/threejs-compatibility/LightingSystem.d.ts.map +1 -0
- package/dist/rendering/threejs-compatibility/LightingSystem.js +14 -0
- package/dist/rendering/threejs-compatibility/LightingSystem.js.map +1 -0
- package/dist/rendering/threejs-compatibility/MaterialSystem.d.ts +6 -0
- package/dist/rendering/threejs-compatibility/MaterialSystem.d.ts.map +1 -0
- package/dist/rendering/threejs-compatibility/MaterialSystem.js +7 -0
- package/dist/rendering/threejs-compatibility/MaterialSystem.js.map +1 -0
- package/dist/rendering/threejs-compatibility/RenderTargetSystem.d.ts +16 -0
- package/dist/rendering/threejs-compatibility/RenderTargetSystem.d.ts.map +1 -0
- package/dist/rendering/threejs-compatibility/RenderTargetSystem.js +23 -0
- package/dist/rendering/threejs-compatibility/RenderTargetSystem.js.map +1 -0
- package/dist/rendering/threejs-compatibility/RendererDiagnostics.d.ts +27 -0
- package/dist/rendering/threejs-compatibility/RendererDiagnostics.d.ts.map +1 -0
- package/dist/rendering/threejs-compatibility/RendererDiagnostics.js +41 -0
- package/dist/rendering/threejs-compatibility/RendererDiagnostics.js.map +1 -0
- package/dist/rendering/threejs-compatibility/SceneRenderer.d.ts +19 -0
- package/dist/rendering/threejs-compatibility/SceneRenderer.d.ts.map +1 -0
- package/dist/rendering/threejs-compatibility/SceneRenderer.js +18 -0
- package/dist/rendering/threejs-compatibility/SceneRenderer.js.map +1 -0
- package/dist/rendering/threejs-compatibility/ShadowSystem.d.ts +11 -0
- package/dist/rendering/threejs-compatibility/ShadowSystem.d.ts.map +1 -0
- package/dist/rendering/threejs-compatibility/ShadowSystem.js +12 -0
- package/dist/rendering/threejs-compatibility/ShadowSystem.js.map +1 -0
- package/dist/rendering/threejs-compatibility/TextureSystem.d.ts +9 -0
- package/dist/rendering/threejs-compatibility/TextureSystem.d.ts.map +1 -0
- package/dist/rendering/threejs-compatibility/TextureSystem.js +14 -0
- package/dist/rendering/threejs-compatibility/TextureSystem.js.map +1 -0
- package/dist/rendering/threejs-compatibility/ThreeCompatRenderer.d.ts +37 -0
- package/dist/rendering/threejs-compatibility/ThreeCompatRenderer.d.ts.map +1 -0
- package/dist/rendering/threejs-compatibility/ThreeCompatRenderer.js +77 -0
- package/dist/rendering/threejs-compatibility/ThreeCompatRenderer.js.map +1 -0
- package/dist/rendering/threejs-compatibility/TransparencySystem.d.ts +11 -0
- package/dist/rendering/threejs-compatibility/TransparencySystem.d.ts.map +1 -0
- package/dist/rendering/threejs-compatibility/TransparencySystem.js +12 -0
- package/dist/rendering/threejs-compatibility/TransparencySystem.js.map +1 -0
- package/dist/rendering/threejs-compatibility/index.d.ts +25 -0
- package/dist/rendering/threejs-compatibility/index.d.ts.map +1 -0
- package/dist/rendering/threejs-compatibility/index.js +15 -0
- package/dist/rendering/threejs-compatibility/index.js.map +1 -0
- package/dist/rendering/threejs-compatibility/performance/BVH.d.ts +11 -0
- package/dist/rendering/threejs-compatibility/performance/BVH.d.ts.map +1 -0
- package/dist/rendering/threejs-compatibility/performance/BVH.js +10 -0
- package/dist/rendering/threejs-compatibility/performance/BVH.js.map +1 -0
- package/dist/rendering/threejs-compatibility/performance/FrustumCulling.d.ts +7 -0
- package/dist/rendering/threejs-compatibility/performance/FrustumCulling.d.ts.map +1 -0
- package/dist/rendering/threejs-compatibility/performance/FrustumCulling.js +5 -0
- package/dist/rendering/threejs-compatibility/performance/FrustumCulling.js.map +1 -0
- package/dist/rendering/threejs-compatibility/performance/Instancing.d.ts +7 -0
- package/dist/rendering/threejs-compatibility/performance/Instancing.d.ts.map +1 -0
- package/dist/rendering/threejs-compatibility/performance/Instancing.js +10 -0
- package/dist/rendering/threejs-compatibility/performance/Instancing.js.map +1 -0
- package/dist/rendering/threejs-compatibility/performance/LODSystem.d.ts +9 -0
- package/dist/rendering/threejs-compatibility/performance/LODSystem.d.ts.map +1 -0
- package/dist/rendering/threejs-compatibility/performance/LODSystem.js +11 -0
- package/dist/rendering/threejs-compatibility/performance/LODSystem.js.map +1 -0
- package/dist/rendering/threejs-compatibility/performance/OcclusionCulling.d.ts +3 -0
- package/dist/rendering/threejs-compatibility/performance/OcclusionCulling.d.ts.map +1 -0
- package/dist/rendering/threejs-compatibility/performance/OcclusionCulling.js +5 -0
- package/dist/rendering/threejs-compatibility/performance/OcclusionCulling.js.map +1 -0
- package/dist/rendering/threejs-compatibility/performance/RaycastAcceleration.d.ts +8 -0
- package/dist/rendering/threejs-compatibility/performance/RaycastAcceleration.d.ts.map +1 -0
- package/dist/rendering/threejs-compatibility/performance/RaycastAcceleration.js +11 -0
- package/dist/rendering/threejs-compatibility/performance/RaycastAcceleration.js.map +1 -0
- package/dist/rendering/threejs-compatibility/performance/RendererProfiler.d.ts +11 -0
- package/dist/rendering/threejs-compatibility/performance/RendererProfiler.d.ts.map +1 -0
- package/dist/rendering/threejs-compatibility/performance/RendererProfiler.js +10 -0
- package/dist/rendering/threejs-compatibility/performance/RendererProfiler.js.map +1 -0
- package/dist/rendering/threejs-compatibility/performance/TextureStreaming.d.ts +7 -0
- package/dist/rendering/threejs-compatibility/performance/TextureStreaming.d.ts.map +1 -0
- package/dist/rendering/threejs-compatibility/performance/TextureStreaming.js +10 -0
- package/dist/rendering/threejs-compatibility/performance/TextureStreaming.js.map +1 -0
- package/dist/rendering/threejs-compatibility/performance/index.d.ts +13 -0
- package/dist/rendering/threejs-compatibility/performance/index.d.ts.map +1 -0
- package/dist/rendering/threejs-compatibility/performance/index.js +9 -0
- package/dist/rendering/threejs-compatibility/performance/index.js.map +1 -0
- package/dist/rendering/threejs-compatibility/postprocess/BloomPass.d.ts +9 -0
- package/dist/rendering/threejs-compatibility/postprocess/BloomPass.d.ts.map +1 -0
- package/dist/rendering/threejs-compatibility/postprocess/BloomPass.js +14 -0
- package/dist/rendering/threejs-compatibility/postprocess/BloomPass.js.map +1 -0
- package/dist/rendering/threejs-compatibility/postprocess/ColorGradingPass.d.ts +10 -0
- package/dist/rendering/threejs-compatibility/postprocess/ColorGradingPass.d.ts.map +1 -0
- package/dist/rendering/threejs-compatibility/postprocess/ColorGradingPass.js +16 -0
- package/dist/rendering/threejs-compatibility/postprocess/ColorGradingPass.js.map +1 -0
- package/dist/rendering/threejs-compatibility/postprocess/DepthOfFieldPass.d.ts +9 -0
- package/dist/rendering/threejs-compatibility/postprocess/DepthOfFieldPass.d.ts.map +1 -0
- package/dist/rendering/threejs-compatibility/postprocess/DepthOfFieldPass.js +19 -0
- package/dist/rendering/threejs-compatibility/postprocess/DepthOfFieldPass.js.map +1 -0
- package/dist/rendering/threejs-compatibility/postprocess/EffectComposer.d.ts +7 -0
- package/dist/rendering/threejs-compatibility/postprocess/EffectComposer.d.ts.map +1 -0
- package/dist/rendering/threejs-compatibility/postprocess/EffectComposer.js +11 -0
- package/dist/rendering/threejs-compatibility/postprocess/EffectComposer.js.map +1 -0
- package/dist/rendering/threejs-compatibility/postprocess/FXAAPass.d.ts +7 -0
- package/dist/rendering/threejs-compatibility/postprocess/FXAAPass.d.ts.map +1 -0
- package/dist/rendering/threejs-compatibility/postprocess/FXAAPass.js +10 -0
- package/dist/rendering/threejs-compatibility/postprocess/FXAAPass.js.map +1 -0
- package/dist/rendering/threejs-compatibility/postprocess/MotionBlurPass.d.ts +9 -0
- package/dist/rendering/threejs-compatibility/postprocess/MotionBlurPass.d.ts.map +1 -0
- package/dist/rendering/threejs-compatibility/postprocess/MotionBlurPass.js +18 -0
- package/dist/rendering/threejs-compatibility/postprocess/MotionBlurPass.js.map +1 -0
- package/dist/rendering/threejs-compatibility/postprocess/OutlinePass.d.ts +9 -0
- package/dist/rendering/threejs-compatibility/postprocess/OutlinePass.d.ts.map +1 -0
- package/dist/rendering/threejs-compatibility/postprocess/OutlinePass.js +19 -0
- package/dist/rendering/threejs-compatibility/postprocess/OutlinePass.js.map +1 -0
- package/dist/rendering/threejs-compatibility/postprocess/PostProcessTypes.d.ts +42 -0
- package/dist/rendering/threejs-compatibility/postprocess/PostProcessTypes.d.ts.map +1 -0
- package/dist/rendering/threejs-compatibility/postprocess/PostProcessTypes.js +123 -0
- package/dist/rendering/threejs-compatibility/postprocess/PostProcessTypes.js.map +1 -0
- package/dist/rendering/threejs-compatibility/postprocess/RenderPass.d.ts +7 -0
- package/dist/rendering/threejs-compatibility/postprocess/RenderPass.d.ts.map +1 -0
- package/dist/rendering/threejs-compatibility/postprocess/RenderPass.js +8 -0
- package/dist/rendering/threejs-compatibility/postprocess/RenderPass.js.map +1 -0
- package/dist/rendering/threejs-compatibility/postprocess/SMAAPass.d.ts +7 -0
- package/dist/rendering/threejs-compatibility/postprocess/SMAAPass.d.ts.map +1 -0
- package/dist/rendering/threejs-compatibility/postprocess/SMAAPass.js +10 -0
- package/dist/rendering/threejs-compatibility/postprocess/SMAAPass.js.map +1 -0
- package/dist/rendering/threejs-compatibility/postprocess/SSAOPass.d.ts +9 -0
- package/dist/rendering/threejs-compatibility/postprocess/SSAOPass.d.ts.map +1 -0
- package/dist/rendering/threejs-compatibility/postprocess/SSAOPass.js +19 -0
- package/dist/rendering/threejs-compatibility/postprocess/SSAOPass.js.map +1 -0
- package/dist/rendering/threejs-compatibility/postprocess/ShaderPass.d.ts +9 -0
- package/dist/rendering/threejs-compatibility/postprocess/ShaderPass.d.ts.map +1 -0
- package/dist/rendering/threejs-compatibility/postprocess/ShaderPass.js +11 -0
- package/dist/rendering/threejs-compatibility/postprocess/ShaderPass.js.map +1 -0
- package/dist/rendering/threejs-compatibility/postprocess/TAAPass.d.ts +7 -0
- package/dist/rendering/threejs-compatibility/postprocess/TAAPass.d.ts.map +1 -0
- package/dist/rendering/threejs-compatibility/postprocess/TAAPass.js +10 -0
- package/dist/rendering/threejs-compatibility/postprocess/TAAPass.js.map +1 -0
- package/dist/rendering/threejs-compatibility/postprocess/VignettePass.d.ts +9 -0
- package/dist/rendering/threejs-compatibility/postprocess/VignettePass.d.ts.map +1 -0
- package/dist/rendering/threejs-compatibility/postprocess/VignettePass.js +14 -0
- package/dist/rendering/threejs-compatibility/postprocess/VignettePass.js.map +1 -0
- package/dist/rendering/threejs-compatibility/postprocess/index.d.ts +16 -0
- package/dist/rendering/threejs-compatibility/postprocess/index.d.ts.map +1 -0
- package/dist/rendering/threejs-compatibility/postprocess/index.js +15 -0
- package/dist/rendering/threejs-compatibility/postprocess/index.js.map +1 -0
- package/dist/rendering/threejs-compatibility/shaders/NodeMaterial.d.ts +14 -0
- package/dist/rendering/threejs-compatibility/shaders/NodeMaterial.d.ts.map +1 -0
- package/dist/rendering/threejs-compatibility/shaders/NodeMaterial.js +15 -0
- package/dist/rendering/threejs-compatibility/shaders/NodeMaterial.js.map +1 -0
- package/dist/rendering/threejs-compatibility/shaders/RawShaderMaterial.d.ts +6 -0
- package/dist/rendering/threejs-compatibility/shaders/RawShaderMaterial.d.ts.map +1 -0
- package/dist/rendering/threejs-compatibility/shaders/RawShaderMaterial.js +6 -0
- package/dist/rendering/threejs-compatibility/shaders/RawShaderMaterial.js.map +1 -0
- package/dist/rendering/threejs-compatibility/shaders/ShaderDiagnostics.d.ts +7 -0
- package/dist/rendering/threejs-compatibility/shaders/ShaderDiagnostics.d.ts.map +1 -0
- package/dist/rendering/threejs-compatibility/shaders/ShaderDiagnostics.js +12 -0
- package/dist/rendering/threejs-compatibility/shaders/ShaderDiagnostics.js.map +1 -0
- package/dist/rendering/threejs-compatibility/shaders/ShaderMaterial.d.ts +12 -0
- package/dist/rendering/threejs-compatibility/shaders/ShaderMaterial.d.ts.map +1 -0
- package/dist/rendering/threejs-compatibility/shaders/ShaderMaterial.js +20 -0
- package/dist/rendering/threejs-compatibility/shaders/ShaderMaterial.js.map +1 -0
- package/dist/rendering/threejs-compatibility/shaders/ThreeCompatShaderChunks.d.ts +7 -0
- package/dist/rendering/threejs-compatibility/shaders/ThreeCompatShaderChunks.d.ts.map +1 -0
- package/dist/rendering/threejs-compatibility/shaders/ThreeCompatShaderChunks.js +7 -0
- package/dist/rendering/threejs-compatibility/shaders/ThreeCompatShaderChunks.js.map +1 -0
- package/dist/rendering/threejs-compatibility/shaders/Uniforms.d.ts +8 -0
- package/dist/rendering/threejs-compatibility/shaders/Uniforms.d.ts.map +1 -0
- package/dist/rendering/threejs-compatibility/shaders/Uniforms.js +14 -0
- package/dist/rendering/threejs-compatibility/shaders/Uniforms.js.map +1 -0
- package/dist/rendering/threejs-compatibility/shaders/index.d.ts +10 -0
- package/dist/rendering/threejs-compatibility/shaders/index.d.ts.map +1 -0
- package/dist/rendering/threejs-compatibility/shaders/index.js +7 -0
- package/dist/rendering/threejs-compatibility/shaders/index.js.map +1 -0
- package/dist/rendering/threejs-compatibility/vfx/GPUPointCloud.d.ts +7 -0
- package/dist/rendering/threejs-compatibility/vfx/GPUPointCloud.d.ts.map +1 -0
- package/dist/rendering/threejs-compatibility/vfx/GPUPointCloud.js +12 -0
- package/dist/rendering/threejs-compatibility/vfx/GPUPointCloud.js.map +1 -0
- package/dist/rendering/threejs-compatibility/vfx/LineRenderer.d.ts +10 -0
- package/dist/rendering/threejs-compatibility/vfx/LineRenderer.d.ts.map +1 -0
- package/dist/rendering/threejs-compatibility/vfx/LineRenderer.js +7 -0
- package/dist/rendering/threejs-compatibility/vfx/LineRenderer.js.map +1 -0
- package/dist/rendering/threejs-compatibility/vfx/ParticleSystem.d.ts +12 -0
- package/dist/rendering/threejs-compatibility/vfx/ParticleSystem.d.ts.map +1 -0
- package/dist/rendering/threejs-compatibility/vfx/ParticleSystem.js +15 -0
- package/dist/rendering/threejs-compatibility/vfx/ParticleSystem.js.map +1 -0
- package/dist/rendering/threejs-compatibility/vfx/SpriteSystem.d.ts +11 -0
- package/dist/rendering/threejs-compatibility/vfx/SpriteSystem.d.ts.map +1 -0
- package/dist/rendering/threejs-compatibility/vfx/SpriteSystem.js +7 -0
- package/dist/rendering/threejs-compatibility/vfx/SpriteSystem.js.map +1 -0
- package/dist/rendering/threejs-compatibility/vfx/TrailRenderer.d.ts +5 -0
- package/dist/rendering/threejs-compatibility/vfx/TrailRenderer.d.ts.map +1 -0
- package/dist/rendering/threejs-compatibility/vfx/TrailRenderer.js +9 -0
- package/dist/rendering/threejs-compatibility/vfx/TrailRenderer.js.map +1 -0
- package/dist/rendering/threejs-compatibility/vfx/VFXDiagnostics.d.ts +21 -0
- package/dist/rendering/threejs-compatibility/vfx/VFXDiagnostics.d.ts.map +1 -0
- package/dist/rendering/threejs-compatibility/vfx/VFXDiagnostics.js +12 -0
- package/dist/rendering/threejs-compatibility/vfx/VFXDiagnostics.js.map +1 -0
- package/dist/rendering/threejs-compatibility/vfx/index.d.ts +10 -0
- package/dist/rendering/threejs-compatibility/vfx/index.d.ts.map +1 -0
- package/dist/rendering/threejs-compatibility/vfx/index.js +7 -0
- package/dist/rendering/threejs-compatibility/vfx/index.js.map +1 -0
- package/dist/rendering/threejs-example-parity/index.d.ts +57 -0
- package/dist/rendering/threejs-example-parity/index.d.ts.map +1 -0
- package/dist/rendering/threejs-example-parity/index.js +139 -0
- package/dist/rendering/threejs-example-parity/index.js.map +1 -0
- package/dist/rendering/webgpu/WebGPUBuffer.d.ts +2 -0
- package/dist/rendering/webgpu/WebGPUBuffer.d.ts.map +1 -0
- package/dist/rendering/webgpu/WebGPUBuffer.js +2 -0
- package/dist/rendering/webgpu/WebGPUBuffer.js.map +1 -0
- package/dist/rendering/webgpu/WebGPUCompute.d.ts +3 -0
- package/dist/rendering/webgpu/WebGPUCompute.d.ts.map +1 -0
- package/dist/rendering/webgpu/WebGPUCompute.js +2 -0
- package/dist/rendering/webgpu/WebGPUCompute.js.map +1 -0
- package/dist/rendering/webgpu/WebGPUPipelineCache.d.ts +6 -0
- package/dist/rendering/webgpu/WebGPUPipelineCache.d.ts.map +1 -0
- package/dist/rendering/webgpu/WebGPUPipelineCache.js +15 -0
- package/dist/rendering/webgpu/WebGPUPipelineCache.js.map +1 -0
- package/dist/rendering/webgpu/WebGPUPostProcess.d.ts +3 -0
- package/dist/rendering/webgpu/WebGPUPostProcess.d.ts.map +1 -0
- package/dist/rendering/webgpu/WebGPUPostProcess.js +2 -0
- package/dist/rendering/webgpu/WebGPUPostProcess.js.map +1 -0
- package/dist/rendering/webgpu/WebGPUTexture.d.ts +3 -0
- package/dist/rendering/webgpu/WebGPUTexture.d.ts.map +1 -0
- package/dist/rendering/webgpu/WebGPUTexture.js +2 -0
- package/dist/rendering/webgpu/WebGPUTexture.js.map +1 -0
- package/dist/scene/Bounds.d.ts +18 -0
- package/dist/scene/Bounds.d.ts.map +1 -0
- package/dist/scene/Bounds.js +55 -0
- package/dist/scene/Bounds.js.map +1 -0
- package/dist/scene/Camera.d.ts +22 -0
- package/dist/scene/Camera.d.ts.map +1 -0
- package/dist/scene/Camera.js +44 -0
- package/dist/scene/Camera.js.map +1 -0
- package/dist/scene/DirectionalLight.d.ts +7 -0
- package/dist/scene/DirectionalLight.d.ts.map +1 -0
- package/dist/scene/DirectionalLight.js +12 -0
- package/dist/scene/DirectionalLight.js.map +1 -0
- package/dist/scene/Hierarchy.d.ts +6 -0
- package/dist/scene/Hierarchy.d.ts.map +1 -0
- package/dist/scene/Hierarchy.js +19 -0
- package/dist/scene/Hierarchy.js.map +1 -0
- package/dist/scene/Layers.d.ts +8 -0
- package/dist/scene/Layers.d.ts.map +1 -0
- package/dist/scene/Layers.js +21 -0
- package/dist/scene/Layers.js.map +1 -0
- package/dist/scene/Light.d.ts +14 -0
- package/dist/scene/Light.d.ts.map +1 -0
- package/dist/scene/Light.js +23 -0
- package/dist/scene/Light.js.map +1 -0
- package/dist/scene/Lights.d.ts +6 -0
- package/dist/scene/Lights.d.ts.map +1 -0
- package/dist/scene/Lights.js +5 -0
- package/dist/scene/Lights.js.map +1 -0
- package/dist/scene/MathTypes.d.ts +52 -0
- package/dist/scene/MathTypes.d.ts.map +1 -0
- package/dist/scene/MathTypes.js +119 -0
- package/dist/scene/MathTypes.js.map +1 -0
- package/dist/scene/Object3D.d.ts +48 -0
- package/dist/scene/Object3D.d.ts.map +1 -0
- package/dist/scene/Object3D.js +122 -0
- package/dist/scene/Object3D.js.map +1 -0
- package/dist/scene/OrthographicCamera.d.ts +29 -0
- package/dist/scene/OrthographicCamera.d.ts.map +1 -0
- package/dist/scene/OrthographicCamera.js +59 -0
- package/dist/scene/OrthographicCamera.js.map +1 -0
- package/dist/scene/PerspectiveCamera.d.ts +20 -0
- package/dist/scene/PerspectiveCamera.d.ts.map +1 -0
- package/dist/scene/PerspectiveCamera.js +42 -0
- package/dist/scene/PerspectiveCamera.js.map +1 -0
- package/dist/scene/PointLight.d.ts +10 -0
- package/dist/scene/PointLight.d.ts.map +1 -0
- package/dist/scene/PointLight.js +22 -0
- package/dist/scene/PointLight.js.map +1 -0
- package/dist/scene/Renderable.d.ts +30 -0
- package/dist/scene/Renderable.d.ts.map +1 -0
- package/dist/scene/Renderable.js +54 -0
- package/dist/scene/Renderable.js.map +1 -0
- package/dist/scene/Scene.d.ts +45 -0
- package/dist/scene/Scene.d.ts.map +1 -0
- package/dist/scene/Scene.js +117 -0
- package/dist/scene/Scene.js.map +1 -0
- package/dist/scene/SceneMetadata.d.ts +79 -0
- package/dist/scene/SceneMetadata.d.ts.map +1 -0
- package/dist/scene/SceneMetadata.js +130 -0
- package/dist/scene/SceneMetadata.js.map +1 -0
- package/dist/scene/SceneNode.d.ts +42 -0
- package/dist/scene/SceneNode.d.ts.map +1 -0
- package/dist/scene/SceneNode.js +126 -0
- package/dist/scene/SceneNode.js.map +1 -0
- package/dist/scene/SceneQuery.d.ts +16 -0
- package/dist/scene/SceneQuery.d.ts.map +1 -0
- package/dist/scene/SceneQuery.js +37 -0
- package/dist/scene/SceneQuery.js.map +1 -0
- package/dist/scene/SceneSerializer.d.ts +59 -0
- package/dist/scene/SceneSerializer.d.ts.map +1 -0
- package/dist/scene/SceneSerializer.js +127 -0
- package/dist/scene/SceneSerializer.js.map +1 -0
- package/dist/scene/SpotLight.d.ts +14 -0
- package/dist/scene/SpotLight.d.ts.map +1 -0
- package/dist/scene/SpotLight.js +35 -0
- package/dist/scene/SpotLight.js.map +1 -0
- package/dist/scene/TransformNode.d.ts +26 -0
- package/dist/scene/TransformNode.d.ts.map +1 -0
- package/dist/scene/TransformNode.js +98 -0
- package/dist/scene/TransformNode.js.map +1 -0
- package/dist/scene/index.d.ts +21 -0
- package/dist/scene/index.d.ts.map +1 -0
- package/dist/scene/index.js +21 -0
- package/dist/scene/index.js.map +1 -0
- package/dist/scripting/AdaptiveDifficultyFixtures.d.ts +58 -0
- package/dist/scripting/AdaptiveDifficultyFixtures.d.ts.map +1 -0
- package/dist/scripting/AdaptiveDifficultyFixtures.js +228 -0
- package/dist/scripting/AdaptiveDifficultyFixtures.js.map +1 -0
- package/dist/scripting/AnalyticsPrivacyFixtures.d.ts +63 -0
- package/dist/scripting/AnalyticsPrivacyFixtures.d.ts.map +1 -0
- package/dist/scripting/AnalyticsPrivacyFixtures.js +120 -0
- package/dist/scripting/AnalyticsPrivacyFixtures.js.map +1 -0
- package/dist/scripting/Behavior.d.ts +10 -0
- package/dist/scripting/Behavior.d.ts.map +1 -0
- package/dist/scripting/Behavior.js +2 -0
- package/dist/scripting/Behavior.js.map +1 -0
- package/dist/scripting/BehaviorHost.d.ts +17 -0
- package/dist/scripting/BehaviorHost.d.ts.map +1 -0
- package/dist/scripting/BehaviorHost.js +39 -0
- package/dist/scripting/BehaviorHost.js.map +1 -0
- package/dist/scripting/BehaviorRegistry.d.ts +8 -0
- package/dist/scripting/BehaviorRegistry.d.ts.map +1 -0
- package/dist/scripting/BehaviorRegistry.js +17 -0
- package/dist/scripting/BehaviorRegistry.js.map +1 -0
- package/dist/scripting/BehaviorSystem.d.ts +26 -0
- package/dist/scripting/BehaviorSystem.d.ts.map +1 -0
- package/dist/scripting/BehaviorSystem.js +76 -0
- package/dist/scripting/BehaviorSystem.js.map +1 -0
- package/dist/scripting/BehaviorTree.d.ts +75 -0
- package/dist/scripting/BehaviorTree.d.ts.map +1 -0
- package/dist/scripting/BehaviorTree.js +204 -0
- package/dist/scripting/BehaviorTree.js.map +1 -0
- package/dist/scripting/CloudServiceFixtures.d.ts +81 -0
- package/dist/scripting/CloudServiceFixtures.d.ts.map +1 -0
- package/dist/scripting/CloudServiceFixtures.js +144 -0
- package/dist/scripting/CloudServiceFixtures.js.map +1 -0
- package/dist/scripting/CulturalBehaviorFixtures.d.ts +75 -0
- package/dist/scripting/CulturalBehaviorFixtures.d.ts.map +1 -0
- package/dist/scripting/CulturalBehaviorFixtures.js +180 -0
- package/dist/scripting/CulturalBehaviorFixtures.js.map +1 -0
- package/dist/scripting/DecisionTree.d.ts +42 -0
- package/dist/scripting/DecisionTree.d.ts.map +1 -0
- package/dist/scripting/DecisionTree.js +125 -0
- package/dist/scripting/DecisionTree.js.map +1 -0
- package/dist/scripting/GOAP.d.ts +51 -0
- package/dist/scripting/GOAP.d.ts.map +1 -0
- package/dist/scripting/GOAP.js +105 -0
- package/dist/scripting/GOAP.js.map +1 -0
- package/dist/scripting/HTN.d.ts +58 -0
- package/dist/scripting/HTN.d.ts.map +1 -0
- package/dist/scripting/HTN.js +115 -0
- package/dist/scripting/HTN.js.map +1 -0
- package/dist/scripting/LearningAgentFixtures.d.ts +60 -0
- package/dist/scripting/LearningAgentFixtures.d.ts.map +1 -0
- package/dist/scripting/LearningAgentFixtures.js +122 -0
- package/dist/scripting/LearningAgentFixtures.js.map +1 -0
- package/dist/scripting/NetworkReplicationFixtures.d.ts +82 -0
- package/dist/scripting/NetworkReplicationFixtures.d.ts.map +1 -0
- package/dist/scripting/NetworkReplicationFixtures.js +330 -0
- package/dist/scripting/NetworkReplicationFixtures.js.map +1 -0
- package/dist/scripting/Perception.d.ts +58 -0
- package/dist/scripting/Perception.d.ts.map +1 -0
- package/dist/scripting/Perception.js +111 -0
- package/dist/scripting/Perception.js.map +1 -0
- package/dist/scripting/PlayerBehaviorTelemetryFixtures.d.ts +74 -0
- package/dist/scripting/PlayerBehaviorTelemetryFixtures.d.ts.map +1 -0
- package/dist/scripting/PlayerBehaviorTelemetryFixtures.js +189 -0
- package/dist/scripting/PlayerBehaviorTelemetryFixtures.js.map +1 -0
- package/dist/scripting/ProceduralContentAdaptationFixtures.d.ts +52 -0
- package/dist/scripting/ProceduralContentAdaptationFixtures.d.ts.map +1 -0
- package/dist/scripting/ProceduralContentAdaptationFixtures.js +149 -0
- package/dist/scripting/ProceduralContentAdaptationFixtures.js.map +1 -0
- package/dist/scripting/ScriptContext.d.ts +18 -0
- package/dist/scripting/ScriptContext.d.ts.map +1 -0
- package/dist/scripting/ScriptContext.js +21 -0
- package/dist/scripting/ScriptContext.js.map +1 -0
- package/dist/scripting/StateMachine.d.ts +52 -0
- package/dist/scripting/StateMachine.d.ts.map +1 -0
- package/dist/scripting/StateMachine.js +117 -0
- package/dist/scripting/StateMachine.js.map +1 -0
- package/dist/scripting/UtilityAI.d.ts +55 -0
- package/dist/scripting/UtilityAI.d.ts.map +1 -0
- package/dist/scripting/UtilityAI.js +113 -0
- package/dist/scripting/UtilityAI.js.map +1 -0
- package/dist/scripting/VisualGraph.d.ts +19 -0
- package/dist/scripting/VisualGraph.d.ts.map +1 -0
- package/dist/scripting/VisualGraph.js +74 -0
- package/dist/scripting/VisualGraph.js.map +1 -0
- package/dist/scripting/VisualGraphExecutor.d.ts +11 -0
- package/dist/scripting/VisualGraphExecutor.d.ts.map +1 -0
- package/dist/scripting/VisualGraphExecutor.js +214 -0
- package/dist/scripting/VisualGraphExecutor.js.map +1 -0
- package/dist/scripting/VisualNode.d.ts +17 -0
- package/dist/scripting/VisualNode.d.ts.map +1 -0
- package/dist/scripting/VisualNode.js +24 -0
- package/dist/scripting/VisualNode.js.map +1 -0
- package/dist/scripting/VisualNodeCatalog.d.ts +14 -0
- package/dist/scripting/VisualNodeCatalog.d.ts.map +1 -0
- package/dist/scripting/VisualNodeCatalog.js +82 -0
- package/dist/scripting/VisualNodeCatalog.js.map +1 -0
- package/dist/scripting/WeaponSystem.d.ts +228 -0
- package/dist/scripting/WeaponSystem.d.ts.map +1 -0
- package/dist/scripting/WeaponSystem.js +530 -0
- package/dist/scripting/WeaponSystem.js.map +1 -0
- package/dist/scripting/index.d.ts +50 -0
- package/dist/scripting/index.d.ts.map +1 -0
- package/dist/scripting/index.js +25 -0
- package/dist/scripting/index.js.map +1 -0
- package/dist/three-compat/ThreeApiInventory.d.ts +18 -0
- package/dist/three-compat/ThreeApiInventory.d.ts.map +1 -0
- package/dist/three-compat/ThreeApiInventory.js +99 -0
- package/dist/three-compat/ThreeApiInventory.js.map +1 -0
- package/dist/three-compat/ThreeCompatibilityMatrix.d.ts +30 -0
- package/dist/three-compat/ThreeCompatibilityMatrix.d.ts.map +1 -0
- package/dist/three-compat/ThreeCompatibilityMatrix.js +69 -0
- package/dist/three-compat/ThreeCompatibilityMatrix.js.map +1 -0
- package/dist/three-compat/animation/index.d.ts +3 -0
- package/dist/three-compat/animation/index.d.ts.map +1 -0
- package/dist/three-compat/animation/index.js +2 -0
- package/dist/three-compat/animation/index.js.map +1 -0
- package/dist/three-compat/cameras/index.d.ts +24 -0
- package/dist/three-compat/cameras/index.d.ts.map +1 -0
- package/dist/three-compat/cameras/index.js +44 -0
- package/dist/three-compat/cameras/index.js.map +1 -0
- package/dist/three-compat/controls/index.d.ts +3 -0
- package/dist/three-compat/controls/index.d.ts.map +1 -0
- package/dist/three-compat/controls/index.js +2 -0
- package/dist/three-compat/controls/index.js.map +1 -0
- package/dist/three-compat/core/Object3DCompat.d.ts +62 -0
- package/dist/three-compat/core/Object3DCompat.d.ts.map +1 -0
- package/dist/three-compat/core/Object3DCompat.js +112 -0
- package/dist/three-compat/core/Object3DCompat.js.map +1 -0
- package/dist/three-compat/core/RaycasterCompat.d.ts +18 -0
- package/dist/three-compat/core/RaycasterCompat.d.ts.map +1 -0
- package/dist/three-compat/core/RaycasterCompat.js +28 -0
- package/dist/three-compat/core/RaycasterCompat.js.map +1 -0
- package/dist/three-compat/core/SceneCompat.d.ts +8 -0
- package/dist/three-compat/core/SceneCompat.d.ts.map +1 -0
- package/dist/three-compat/core/SceneCompat.js +8 -0
- package/dist/three-compat/core/SceneCompat.js.map +1 -0
- package/dist/three-compat/geometries/index.d.ts +67 -0
- package/dist/three-compat/geometries/index.d.ts.map +1 -0
- package/dist/three-compat/geometries/index.js +114 -0
- package/dist/three-compat/geometries/index.js.map +1 -0
- package/dist/three-compat/helpers/index.d.ts +40 -0
- package/dist/three-compat/helpers/index.d.ts.map +1 -0
- package/dist/three-compat/helpers/index.js +129 -0
- package/dist/three-compat/helpers/index.js.map +1 -0
- package/dist/three-compat/index.d.ts +32 -0
- package/dist/three-compat/index.d.ts.map +1 -0
- package/dist/three-compat/index.js +22 -0
- package/dist/three-compat/index.js.map +1 -0
- package/dist/three-compat/lights/index.d.ts +35 -0
- package/dist/three-compat/lights/index.d.ts.map +1 -0
- package/dist/three-compat/lights/index.js +39 -0
- package/dist/three-compat/lights/index.js.map +1 -0
- package/dist/three-compat/loaders/index.d.ts +54 -0
- package/dist/three-compat/loaders/index.d.ts.map +1 -0
- package/dist/three-compat/loaders/index.js +79 -0
- package/dist/three-compat/loaders/index.js.map +1 -0
- package/dist/three-compat/materials/index.d.ts +70 -0
- package/dist/three-compat/materials/index.d.ts.map +1 -0
- package/dist/three-compat/materials/index.js +85 -0
- package/dist/three-compat/materials/index.js.map +1 -0
- package/dist/three-compat/math/index.d.ts +34 -0
- package/dist/three-compat/math/index.d.ts.map +1 -0
- package/dist/three-compat/math/index.js +90 -0
- package/dist/three-compat/math/index.js.map +1 -0
- package/dist/three-compat/migration/CompatibilityWarnings.d.ts +6 -0
- package/dist/three-compat/migration/CompatibilityWarnings.d.ts.map +1 -0
- package/dist/three-compat/migration/CompatibilityWarnings.js +8 -0
- package/dist/three-compat/migration/CompatibilityWarnings.js.map +1 -0
- package/dist/three-compat/migration/ImportMap.d.ts +2 -0
- package/dist/three-compat/migration/ImportMap.d.ts.map +1 -0
- package/dist/three-compat/migration/ImportMap.js +10 -0
- package/dist/three-compat/migration/ImportMap.js.map +1 -0
- package/dist/three-compat/migration/ThreeToA3DAdapter.d.ts +8 -0
- package/dist/three-compat/migration/ThreeToA3DAdapter.d.ts.map +1 -0
- package/dist/three-compat/migration/ThreeToA3DAdapter.js +20 -0
- package/dist/three-compat/migration/ThreeToA3DAdapter.js.map +1 -0
- package/dist/three-compat/postprocessing/index.d.ts +2 -0
- package/dist/three-compat/postprocessing/index.d.ts.map +1 -0
- package/dist/three-compat/postprocessing/index.js +2 -0
- package/dist/three-compat/postprocessing/index.js.map +1 -0
- package/dist/three-compat/render-targets/index.d.ts +17 -0
- package/dist/three-compat/render-targets/index.d.ts.map +1 -0
- package/dist/three-compat/render-targets/index.js +29 -0
- package/dist/three-compat/render-targets/index.js.map +1 -0
- package/dist/three-compat/shaders/index.d.ts +3 -0
- package/dist/three-compat/shaders/index.d.ts.map +1 -0
- package/dist/three-compat/shaders/index.js +3 -0
- package/dist/three-compat/shaders/index.js.map +1 -0
- package/dist/three-compat/textures/index.d.ts +19 -0
- package/dist/three-compat/textures/index.d.ts.map +1 -0
- package/dist/three-compat/textures/index.js +24 -0
- package/dist/three-compat/textures/index.js.map +1 -0
- package/dist/workflows/AnimationLabWorkflow.d.ts +3 -0
- package/dist/workflows/AnimationLabWorkflow.d.ts.map +1 -0
- package/dist/workflows/AnimationLabWorkflow.js +156 -0
- package/dist/workflows/AnimationLabWorkflow.js.map +1 -0
- package/dist/workflows/AssetViewerWorkflow.d.ts +3 -0
- package/dist/workflows/AssetViewerWorkflow.d.ts.map +1 -0
- package/dist/workflows/AssetViewerWorkflow.js +35 -0
- package/dist/workflows/AssetViewerWorkflow.js.map +1 -0
- package/dist/workflows/ComparisonWorkflow.d.ts +3 -0
- package/dist/workflows/ComparisonWorkflow.d.ts.map +1 -0
- package/dist/workflows/ComparisonWorkflow.js +67 -0
- package/dist/workflows/ComparisonWorkflow.js.map +1 -0
- package/dist/workflows/InteractiveSceneWorkflow.d.ts +3 -0
- package/dist/workflows/InteractiveSceneWorkflow.d.ts.map +1 -0
- package/dist/workflows/InteractiveSceneWorkflow.js +43 -0
- package/dist/workflows/InteractiveSceneWorkflow.js.map +1 -0
- package/dist/workflows/MaterialStudioWorkflow.d.ts +3 -0
- package/dist/workflows/MaterialStudioWorkflow.d.ts.map +1 -0
- package/dist/workflows/MaterialStudioWorkflow.js +47 -0
- package/dist/workflows/MaterialStudioWorkflow.js.map +1 -0
- package/dist/workflows/ProductConfiguratorWorkflow.d.ts +3 -0
- package/dist/workflows/ProductConfiguratorWorkflow.d.ts.map +1 -0
- package/dist/workflows/ProductConfiguratorWorkflow.js +25 -0
- package/dist/workflows/ProductConfiguratorWorkflow.js.map +1 -0
- package/dist/workflows/SceneShowcaseWorkflow.d.ts +3 -0
- package/dist/workflows/SceneShowcaseWorkflow.d.ts.map +1 -0
- package/dist/workflows/SceneShowcaseWorkflow.js +44 -0
- package/dist/workflows/SceneShowcaseWorkflow.js.map +1 -0
- package/dist/workflows/WorkflowDiagnostics.d.ts +11 -0
- package/dist/workflows/WorkflowDiagnostics.d.ts.map +1 -0
- package/dist/workflows/WorkflowDiagnostics.js +34 -0
- package/dist/workflows/WorkflowDiagnostics.js.map +1 -0
- package/dist/workflows/WorkflowTypes.d.ts +90 -0
- package/dist/workflows/WorkflowTypes.d.ts.map +1 -0
- package/dist/workflows/WorkflowTypes.js +2 -0
- package/dist/workflows/WorkflowTypes.js.map +1 -0
- package/dist/workflows/index.d.ts +13 -0
- package/dist/workflows/index.d.ts.map +1 -0
- package/dist/workflows/index.js +11 -0
- package/dist/workflows/index.js.map +1 -0
- package/dist/workflows/production-runtime/ArchitectureWorkflow.d.ts +7 -0
- package/dist/workflows/production-runtime/ArchitectureWorkflow.d.ts.map +1 -0
- package/dist/workflows/production-runtime/ArchitectureWorkflow.js +2 -0
- package/dist/workflows/production-runtime/ArchitectureWorkflow.js.map +1 -0
- package/dist/workflows/production-runtime/AssetInspectionWorkflow.d.ts +7 -0
- package/dist/workflows/production-runtime/AssetInspectionWorkflow.d.ts.map +1 -0
- package/dist/workflows/production-runtime/AssetInspectionWorkflow.js +2 -0
- package/dist/workflows/production-runtime/AssetInspectionWorkflow.js.map +1 -0
- package/dist/workflows/production-runtime/CinematicWorkflow.d.ts +7 -0
- package/dist/workflows/production-runtime/CinematicWorkflow.d.ts.map +1 -0
- package/dist/workflows/production-runtime/CinematicWorkflow.js +2 -0
- package/dist/workflows/production-runtime/CinematicWorkflow.js.map +1 -0
- package/dist/workflows/production-runtime/MaterialAuthoringWorkflow.d.ts +7 -0
- package/dist/workflows/production-runtime/MaterialAuthoringWorkflow.d.ts.map +1 -0
- package/dist/workflows/production-runtime/MaterialAuthoringWorkflow.js +2 -0
- package/dist/workflows/production-runtime/MaterialAuthoringWorkflow.js.map +1 -0
- package/dist/workflows/production-runtime/ProductRenderWorkflow.d.ts +7 -0
- package/dist/workflows/production-runtime/ProductRenderWorkflow.d.ts.map +1 -0
- package/dist/workflows/production-runtime/ProductRenderWorkflow.js +2 -0
- package/dist/workflows/production-runtime/ProductRenderWorkflow.js.map +1 -0
- package/dist/workflows/production-runtime/ProductionExampleRuntime.d.ts +66 -0
- package/dist/workflows/production-runtime/ProductionExampleRuntime.d.ts.map +1 -0
- package/dist/workflows/production-runtime/ProductionExampleRuntime.js +189 -0
- package/dist/workflows/production-runtime/ProductionExampleRuntime.js.map +1 -0
- package/dist/workflows/production-runtime/ProductionWorkflows.d.ts +69 -0
- package/dist/workflows/production-runtime/ProductionWorkflows.d.ts.map +1 -0
- package/dist/workflows/production-runtime/ProductionWorkflows.js +128 -0
- package/dist/workflows/production-runtime/ProductionWorkflows.js.map +1 -0
- package/dist/workflows/production-runtime/WorkflowDiagnostics.d.ts +7 -0
- package/dist/workflows/production-runtime/WorkflowDiagnostics.d.ts.map +1 -0
- package/dist/workflows/production-runtime/WorkflowDiagnostics.js +2 -0
- package/dist/workflows/production-runtime/WorkflowDiagnostics.js.map +1 -0
- package/dist/workflows/production-runtime/index.d.ts +11 -0
- package/dist/workflows/production-runtime/index.d.ts.map +1 -0
- package/dist/workflows/production-runtime/index.js +9 -0
- package/dist/workflows/production-runtime/index.js.map +1 -0
- package/dist/workflows/workflow-foundation/index.d.ts +26 -0
- package/dist/workflows/workflow-foundation/index.d.ts.map +1 -0
- package/dist/workflows/workflow-foundation/index.js +25 -0
- package/dist/workflows/workflow-foundation/index.js.map +1 -0
- package/package.json +490 -0
- package/templates/cinematic-scene/README.md +11 -0
- package/templates/cinematic-scene/index.html +13 -0
- package/templates/cinematic-scene/package.json +21 -0
- package/templates/cinematic-scene/playwright.config.ts +14 -0
- package/templates/cinematic-scene/public/aura-assets/hero-fixture.glb +0 -0
- package/templates/cinematic-scene/public/aura-assets/hero.thumb.svg +1 -0
- package/templates/cinematic-scene/src/aura-assets.ts +17 -0
- package/templates/cinematic-scene/src/main.ts +27 -0
- package/templates/cinematic-scene/tests/route-health.spec.ts +16 -0
- package/templates/cinematic-scene/tests/screenshot.spec.ts +56 -0
- package/templates/cinematic-scene/tsconfig.json +15 -0
- package/templates/mini-game/README.md +10 -0
- package/templates/mini-game/index.html +13 -0
- package/templates/mini-game/package.json +21 -0
- package/templates/mini-game/playwright.config.ts +14 -0
- package/templates/mini-game/public/aura-assets/player-fixture.glb +0 -0
- package/templates/mini-game/public/aura-assets/player.thumb.svg +8 -0
- package/templates/mini-game/src/aura-assets.ts +17 -0
- package/templates/mini-game/src/main.ts +27 -0
- package/templates/mini-game/tests/route-health.spec.ts +16 -0
- package/templates/mini-game/tests/screenshot.spec.ts +63 -0
- package/templates/mini-game/tsconfig.json +15 -0
- package/templates/product-viewer/README.md +16 -0
- package/templates/product-viewer/index.html +16 -0
- package/templates/product-viewer/package.json +21 -0
- package/templates/product-viewer/playwright.config.ts +14 -0
- package/templates/product-viewer/public/aura-assets/product-fixture.glb +0 -0
- package/templates/product-viewer/public/aura-assets/product.thumb.svg +1 -0
- package/templates/product-viewer/src/aura-assets.ts +17 -0
- package/templates/product-viewer/src/main.ts +27 -0
- package/templates/product-viewer/tests/route-health.spec.ts +16 -0
- package/templates/product-viewer/tests/screenshot.spec.ts +60 -0
- package/templates/product-viewer/tsconfig.json +15 -0
|
@@ -0,0 +1,1592 @@
|
|
|
1
|
+
import { type Collider, type ColliderDescriptor, type CollisionEvent, type Constraint, type ConstraintDescriptor, type Contact, type DebugLine, type PhysicsBackendSelection, type PhysicsShape, type PhysicsSnapshot, type PhysicsWorldDescriptor, type RaycastHit, type RaycastOptions, type RigidBody, type RigidBodyDescriptor, type RigidBodyType, type ScenePhysicsNode, type SphereCastHit } from "@aura3d/physics";
|
|
2
|
+
import type { GLTFSceneAnimationRuntime, GLTFSceneAnimationRuntimeOptions } from "@aura3d/assets/browser";
|
|
3
|
+
export type AuraVec3 = readonly [number, number, number];
|
|
4
|
+
export type AuraColor = `#${string}` | string;
|
|
5
|
+
export type AuraAssetType = "model" | "texture" | "environment" | "audio";
|
|
6
|
+
export type AuraModelFormat = "glb" | "gltf";
|
|
7
|
+
export type AuraTextureFormat = "png" | "jpg" | "jpeg" | "webp" | "ktx2";
|
|
8
|
+
export type AuraProceduralTextureKind = "fabric-normal" | "rubber-roughness" | "brushed-metal-anisotropy" | "plastic-micro-scratch";
|
|
9
|
+
export interface AuraProceduralTextureSpec {
|
|
10
|
+
readonly kind: "aura-procedural-texture";
|
|
11
|
+
readonly texture: AuraProceduralTextureKind;
|
|
12
|
+
readonly scale: number;
|
|
13
|
+
readonly strength: number;
|
|
14
|
+
readonly contrast?: number;
|
|
15
|
+
readonly direction?: AuraVec3;
|
|
16
|
+
readonly colorA?: AuraColor;
|
|
17
|
+
readonly colorB?: AuraColor;
|
|
18
|
+
}
|
|
19
|
+
export type AuraMaterialTextureInput = AuraAssetRef<"texture"> | AuraProceduralTextureSpec;
|
|
20
|
+
export interface AuraAssetDefinition {
|
|
21
|
+
readonly type: AuraAssetType;
|
|
22
|
+
readonly format: string;
|
|
23
|
+
readonly url: string;
|
|
24
|
+
readonly hash?: string;
|
|
25
|
+
readonly bounds?: AuraVec3;
|
|
26
|
+
readonly sizeBytes?: number;
|
|
27
|
+
readonly optional?: boolean;
|
|
28
|
+
readonly metadata?: AuraAssetMetadata;
|
|
29
|
+
}
|
|
30
|
+
export interface AuraAssetMetadata {
|
|
31
|
+
readonly materials?: readonly string[];
|
|
32
|
+
readonly animations?: readonly string[];
|
|
33
|
+
readonly textures?: readonly string[];
|
|
34
|
+
readonly thumbnailUrl?: string;
|
|
35
|
+
readonly license?: string;
|
|
36
|
+
}
|
|
37
|
+
declare const auraAssetRefBrand: unique symbol;
|
|
38
|
+
export type AuraAssetRef<TType extends AuraAssetType = AuraAssetType, TId extends string = string> = AuraAssetDefinition & {
|
|
39
|
+
readonly kind: "aura-asset-ref";
|
|
40
|
+
readonly id: TId;
|
|
41
|
+
readonly type: TType;
|
|
42
|
+
readonly [auraAssetRefBrand]: {
|
|
43
|
+
readonly type: TType;
|
|
44
|
+
readonly id: TId;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
export type AuraAssetMap<T extends Record<string, AuraAssetDefinition>> = {
|
|
48
|
+
readonly [K in keyof T]: AuraAssetRef<T[K]["type"], Extract<K, string>> & T[K];
|
|
49
|
+
};
|
|
50
|
+
export declare function defineAuraAssets<const T extends Record<string, AuraAssetDefinition>>(definitions: T): AuraAssetMap<T>;
|
|
51
|
+
export interface AuraTransformSpec {
|
|
52
|
+
readonly position?: AuraVec3;
|
|
53
|
+
readonly rotation?: AuraVec3;
|
|
54
|
+
readonly scale?: number | AuraVec3;
|
|
55
|
+
readonly lookAt?: AuraVec3;
|
|
56
|
+
}
|
|
57
|
+
export interface AuraMaterialSpec {
|
|
58
|
+
readonly name?: string;
|
|
59
|
+
readonly shader?: "solar-sun" | "solar-corona";
|
|
60
|
+
readonly color?: AuraColor;
|
|
61
|
+
readonly coreColor?: AuraColor;
|
|
62
|
+
readonly rimColor?: AuraColor;
|
|
63
|
+
readonly noiseStrength?: number;
|
|
64
|
+
readonly falloff?: number;
|
|
65
|
+
readonly roughness?: number;
|
|
66
|
+
readonly metallic?: number;
|
|
67
|
+
readonly metalness?: number;
|
|
68
|
+
readonly emissive?: AuraColor;
|
|
69
|
+
readonly emissiveIntensity?: number;
|
|
70
|
+
readonly opacity?: number;
|
|
71
|
+
readonly transmission?: number;
|
|
72
|
+
readonly clearcoat?: number;
|
|
73
|
+
readonly clearcoatRoughness?: number;
|
|
74
|
+
readonly thickness?: number;
|
|
75
|
+
readonly ior?: number;
|
|
76
|
+
readonly sheen?: number;
|
|
77
|
+
readonly sheenRoughness?: number;
|
|
78
|
+
readonly sheenColor?: AuraColor;
|
|
79
|
+
readonly iridescence?: number;
|
|
80
|
+
readonly iridescenceIOR?: number;
|
|
81
|
+
readonly iridescenceThicknessRange?: readonly [number, number];
|
|
82
|
+
readonly anisotropy?: number;
|
|
83
|
+
readonly anisotropyRotation?: number;
|
|
84
|
+
readonly attenuationColor?: AuraColor;
|
|
85
|
+
readonly attenuationDistance?: number;
|
|
86
|
+
readonly envMapIntensity?: number;
|
|
87
|
+
readonly normal?: AuraMaterialTextureInput;
|
|
88
|
+
readonly normalScale?: number;
|
|
89
|
+
readonly roughnessMap?: AuraMaterialTextureInput;
|
|
90
|
+
readonly metalnessMap?: AuraMaterialTextureInput;
|
|
91
|
+
readonly texture?: AuraAssetRef<"texture">;
|
|
92
|
+
}
|
|
93
|
+
export interface AuraEditableMaterialParameters {
|
|
94
|
+
readonly kind: "aura-material-parameters";
|
|
95
|
+
readonly name: string;
|
|
96
|
+
readonly material: AuraMaterialSpec;
|
|
97
|
+
readonly roughness: number;
|
|
98
|
+
readonly metallic: number;
|
|
99
|
+
readonly metalness: number;
|
|
100
|
+
readonly transmission: number;
|
|
101
|
+
readonly clearcoat: number;
|
|
102
|
+
readonly clearcoatRoughness: number;
|
|
103
|
+
readonly thickness: number;
|
|
104
|
+
readonly ior: number;
|
|
105
|
+
readonly sheen: number;
|
|
106
|
+
readonly iridescence: number;
|
|
107
|
+
readonly anisotropy: number;
|
|
108
|
+
readonly envMapIntensity: number;
|
|
109
|
+
readonly emissiveIntensity: number;
|
|
110
|
+
}
|
|
111
|
+
export interface AuraMaterialInspectorParameter {
|
|
112
|
+
readonly name: keyof AuraMaterialSpec | "metalness";
|
|
113
|
+
readonly value: number | string | boolean | readonly number[] | undefined;
|
|
114
|
+
readonly min?: number;
|
|
115
|
+
readonly max?: number;
|
|
116
|
+
readonly step?: number;
|
|
117
|
+
readonly unit?: string;
|
|
118
|
+
readonly visible: boolean;
|
|
119
|
+
}
|
|
120
|
+
export interface AuraMaterialInspectorPanel {
|
|
121
|
+
readonly kind: "aura-material-inspector";
|
|
122
|
+
readonly name: string;
|
|
123
|
+
readonly material: AuraMaterialSpec;
|
|
124
|
+
readonly parameters: readonly AuraMaterialInspectorParameter[];
|
|
125
|
+
readonly liveValues: Record<string, number | string | boolean | readonly number[] | undefined>;
|
|
126
|
+
readonly summary: string;
|
|
127
|
+
}
|
|
128
|
+
export interface AuraMaterialVisualQAResult {
|
|
129
|
+
readonly passes: boolean;
|
|
130
|
+
readonly score: number;
|
|
131
|
+
readonly classes: readonly string[];
|
|
132
|
+
readonly plinths: number;
|
|
133
|
+
readonly labels: number;
|
|
134
|
+
readonly reflectionCards: number;
|
|
135
|
+
readonly chromeReflectsEnvironment: boolean;
|
|
136
|
+
readonly glassTransparent: boolean;
|
|
137
|
+
readonly rubberNonReflective: boolean;
|
|
138
|
+
readonly emissiveGlows: boolean;
|
|
139
|
+
readonly clearcoatLayeredHighlight: boolean;
|
|
140
|
+
readonly minimumMaterialDistance: number;
|
|
141
|
+
readonly problems: readonly string[];
|
|
142
|
+
}
|
|
143
|
+
export interface AuraModelOptions extends AuraTransformSpec {
|
|
144
|
+
readonly name?: string;
|
|
145
|
+
readonly material?: AuraMaterialSpec;
|
|
146
|
+
readonly castShadow?: boolean;
|
|
147
|
+
readonly receiveShadow?: boolean;
|
|
148
|
+
readonly visible?: boolean;
|
|
149
|
+
readonly physics?: AuraNodePhysicsSpec;
|
|
150
|
+
}
|
|
151
|
+
export interface AuraPrimitiveOptions extends AuraTransformSpec {
|
|
152
|
+
readonly name?: string;
|
|
153
|
+
readonly material?: AuraMaterialSpec;
|
|
154
|
+
readonly size?: number | AuraVec3;
|
|
155
|
+
readonly castShadow?: boolean;
|
|
156
|
+
readonly receiveShadow?: boolean;
|
|
157
|
+
readonly physics?: AuraNodePhysicsSpec;
|
|
158
|
+
}
|
|
159
|
+
export interface AuraAnimationSpec {
|
|
160
|
+
readonly clip?: string;
|
|
161
|
+
readonly loop?: boolean;
|
|
162
|
+
readonly speed?: number;
|
|
163
|
+
readonly startTime?: number;
|
|
164
|
+
readonly duration?: number;
|
|
165
|
+
readonly easing?: "linear" | "easeInOut";
|
|
166
|
+
readonly captureTime?: number;
|
|
167
|
+
readonly orbitCenter?: AuraVec3;
|
|
168
|
+
readonly orbitPhase?: number;
|
|
169
|
+
readonly orbitRadius?: number;
|
|
170
|
+
readonly joint?: AuraCharacterJointName;
|
|
171
|
+
readonly chain?: "root" | "left-arm" | "right-arm" | "left-leg" | "right-leg";
|
|
172
|
+
readonly rootBob?: boolean;
|
|
173
|
+
readonly jointHierarchy?: boolean;
|
|
174
|
+
}
|
|
175
|
+
export interface AuraInteractionSpec {
|
|
176
|
+
readonly cursor?: string;
|
|
177
|
+
readonly onClick?: string;
|
|
178
|
+
readonly onHover?: string;
|
|
179
|
+
}
|
|
180
|
+
export type AuraCharacterClipName = "idle" | "walk" | "run" | "wave" | "turn" | "pose" | "benchmark-pose";
|
|
181
|
+
export type AuraCharacterStyle = "simple" | "athletic" | "robot" | "mannequin";
|
|
182
|
+
export type AuraCharacterPose = "mid-stride" | "planted-foot" | "side-view" | "three-quarter";
|
|
183
|
+
export type AuraCharacterJointName = "root" | "pelvis" | "spine" | "neck" | "head" | "left-shoulder" | "left-elbow" | "left-wrist" | "right-shoulder" | "right-elbow" | "right-wrist" | "left-hip" | "left-knee" | "left-ankle" | "right-hip" | "right-knee" | "right-ankle";
|
|
184
|
+
export interface AuraCharacterJoint {
|
|
185
|
+
readonly name: AuraCharacterJointName;
|
|
186
|
+
readonly parent?: AuraCharacterJointName;
|
|
187
|
+
readonly position: AuraVec3;
|
|
188
|
+
}
|
|
189
|
+
export interface AuraCharacterClip {
|
|
190
|
+
readonly name: AuraCharacterClipName;
|
|
191
|
+
readonly duration: number;
|
|
192
|
+
readonly captureTime: number;
|
|
193
|
+
readonly loop: boolean;
|
|
194
|
+
}
|
|
195
|
+
export interface AuraCharacterSkeleton {
|
|
196
|
+
readonly kind: "aura-character-skeleton";
|
|
197
|
+
readonly style: AuraCharacterStyle;
|
|
198
|
+
readonly joints: readonly AuraCharacterJoint[];
|
|
199
|
+
readonly clips: readonly AuraCharacterClip[];
|
|
200
|
+
}
|
|
201
|
+
export interface AuraCharacterRigSpec {
|
|
202
|
+
readonly skeleton: AuraCharacterSkeleton;
|
|
203
|
+
readonly clip: AuraCharacterClipName;
|
|
204
|
+
readonly pose: AuraCharacterPose;
|
|
205
|
+
readonly rootBob?: boolean;
|
|
206
|
+
readonly limbSwing?: "joint-hierarchy";
|
|
207
|
+
readonly footPlanting?: AuraCharacterFootPlantingSpec;
|
|
208
|
+
readonly rootMotion?: AuraCharacterRootMotionSpec;
|
|
209
|
+
readonly constraints?: AuraCharacterConstraintCorrectionSpec;
|
|
210
|
+
}
|
|
211
|
+
export interface AuraCharacterFootPlantingSpec {
|
|
212
|
+
readonly enabled: boolean;
|
|
213
|
+
readonly groundY: number;
|
|
214
|
+
readonly plantedFeet: readonly ("left" | "right")[];
|
|
215
|
+
readonly captureTime: number;
|
|
216
|
+
readonly evidence: string;
|
|
217
|
+
}
|
|
218
|
+
export interface AuraCharacterRootMotionSpec {
|
|
219
|
+
readonly enabled: boolean;
|
|
220
|
+
readonly bodyBob: boolean;
|
|
221
|
+
readonly torsoMovesAsSingleBody: boolean;
|
|
222
|
+
readonly strideLength: number;
|
|
223
|
+
readonly evidence: string;
|
|
224
|
+
}
|
|
225
|
+
export interface AuraCharacterConstraintCorrectionSpec {
|
|
226
|
+
readonly enabled: boolean;
|
|
227
|
+
readonly correctedChains: readonly ("spine" | "left-arm" | "right-arm" | "left-leg" | "right-leg")[];
|
|
228
|
+
readonly maxJointGap: number;
|
|
229
|
+
readonly evidence: string;
|
|
230
|
+
}
|
|
231
|
+
export interface AuraCharacterVisualQAGap {
|
|
232
|
+
readonly id: string;
|
|
233
|
+
readonly from: string;
|
|
234
|
+
readonly to: string;
|
|
235
|
+
readonly distance: number;
|
|
236
|
+
readonly maxDistance: number;
|
|
237
|
+
}
|
|
238
|
+
export interface AuraCharacterVisualQAResult {
|
|
239
|
+
readonly connected: boolean;
|
|
240
|
+
readonly impossibleProportions: boolean;
|
|
241
|
+
readonly score: number;
|
|
242
|
+
readonly gaps: readonly AuraCharacterVisualQAGap[];
|
|
243
|
+
readonly problems: readonly string[];
|
|
244
|
+
}
|
|
245
|
+
export type AuraProceduralHumanMeshPartName = "torso" | "pelvis" | "neck" | "head" | "left-shoulder" | "right-shoulder" | "left-upper-arm" | "left-lower-arm" | "right-upper-arm" | "right-lower-arm" | "left-hand" | "right-hand" | "left-hip" | "right-hip" | "left-upper-leg" | "left-lower-leg" | "right-upper-leg" | "right-lower-leg" | "left-foot" | "right-foot";
|
|
246
|
+
export interface AuraProceduralHumanMeshPart {
|
|
247
|
+
readonly name: AuraProceduralHumanMeshPartName;
|
|
248
|
+
readonly parent?: AuraProceduralHumanMeshPartName;
|
|
249
|
+
readonly joint: AuraCharacterJointName;
|
|
250
|
+
readonly center: AuraVec3;
|
|
251
|
+
readonly size: AuraVec3;
|
|
252
|
+
readonly vertices: readonly AuraVec3[];
|
|
253
|
+
readonly indices: readonly number[];
|
|
254
|
+
readonly material: AuraMaterialSpec;
|
|
255
|
+
}
|
|
256
|
+
export interface AuraProceduralHumanMeshDescriptor {
|
|
257
|
+
readonly kind: "aura-procedural-human-mesh";
|
|
258
|
+
readonly style: AuraCharacterStyle;
|
|
259
|
+
readonly skeleton: AuraCharacterSkeleton;
|
|
260
|
+
readonly clips: readonly AuraCharacterClip[];
|
|
261
|
+
readonly parts: readonly AuraProceduralHumanMeshPart[];
|
|
262
|
+
readonly evidence: readonly string[];
|
|
263
|
+
}
|
|
264
|
+
export type AuraHelperBudgetId = "physicsPlayground" | "particleFountain" | "solarSystem" | "dataBars3D" | "neonTunnel" | "miniGolfHole" | "materialSwatches" | "cityBlock" | "lowPolyHumanoid" | "primitiveHumanoid" | "productStage";
|
|
265
|
+
export interface AuraHelperPerformanceBudget {
|
|
266
|
+
readonly helper: AuraHelperBudgetId;
|
|
267
|
+
readonly maxDrawCalls: number;
|
|
268
|
+
readonly maxNodes: number;
|
|
269
|
+
readonly targetFpsP50: number;
|
|
270
|
+
readonly maxBundleBytes?: number;
|
|
271
|
+
readonly evidence: string;
|
|
272
|
+
}
|
|
273
|
+
export type AuraSceneNode = AuraModelNode | AuraPrimitiveNode | AuraGroupNode | AuraLightNode | AuraEffectNode | AuraInteractionNode | AuraLabelNode | AuraEnvironmentNode;
|
|
274
|
+
export interface AuraModelNode extends AuraTransformSpec {
|
|
275
|
+
readonly kind: "model";
|
|
276
|
+
readonly name?: string;
|
|
277
|
+
readonly asset: AuraAssetRef<"model">;
|
|
278
|
+
readonly material?: AuraMaterialSpec;
|
|
279
|
+
readonly castShadow: boolean;
|
|
280
|
+
readonly receiveShadow: boolean;
|
|
281
|
+
readonly visible: boolean;
|
|
282
|
+
readonly animation?: AuraAnimationSpec;
|
|
283
|
+
readonly interaction?: AuraInteractionSpec;
|
|
284
|
+
readonly physics?: AuraNodePhysicsSpec;
|
|
285
|
+
}
|
|
286
|
+
export interface AuraPrimitiveNode extends AuraTransformSpec {
|
|
287
|
+
readonly kind: "primitive";
|
|
288
|
+
readonly primitive: "box" | "sphere" | "plane" | "cylinder" | "capsule" | "torus";
|
|
289
|
+
readonly name?: string;
|
|
290
|
+
readonly material?: AuraMaterialSpec;
|
|
291
|
+
readonly size?: number | AuraVec3;
|
|
292
|
+
readonly castShadow?: boolean;
|
|
293
|
+
readonly receiveShadow?: boolean;
|
|
294
|
+
readonly animation?: AuraAnimationSpec;
|
|
295
|
+
readonly interaction?: AuraInteractionSpec;
|
|
296
|
+
readonly physics?: AuraNodePhysicsSpec;
|
|
297
|
+
}
|
|
298
|
+
export interface AuraGroupNode extends AuraTransformSpec {
|
|
299
|
+
readonly kind: "group";
|
|
300
|
+
readonly name?: string;
|
|
301
|
+
readonly children: readonly AuraSceneNode[];
|
|
302
|
+
readonly animation?: AuraAnimationSpec;
|
|
303
|
+
readonly character?: AuraCharacterRigSpec;
|
|
304
|
+
}
|
|
305
|
+
export type AuraLightType = "ambient" | "directional" | "point" | "studio" | "rect" | "softbox";
|
|
306
|
+
export interface AuraLightNode extends AuraTransformSpec {
|
|
307
|
+
readonly kind: "light";
|
|
308
|
+
readonly light: AuraLightType;
|
|
309
|
+
readonly name?: string;
|
|
310
|
+
readonly color?: AuraColor;
|
|
311
|
+
readonly intensity: number;
|
|
312
|
+
readonly width?: number;
|
|
313
|
+
readonly height?: number;
|
|
314
|
+
}
|
|
315
|
+
export type AuraEffectType = "fog" | "bloom" | "rain" | "particles" | "ambient-occlusion" | "contact-occlusion";
|
|
316
|
+
export type AuraParticleMaterialMode = "additive-glow" | "soft-alpha" | "spark" | "smoke" | "splash" | "dust" | "star";
|
|
317
|
+
export interface AuraEffectNode {
|
|
318
|
+
readonly kind: "effect";
|
|
319
|
+
readonly effect: AuraEffectType;
|
|
320
|
+
readonly name?: string;
|
|
321
|
+
readonly intensity?: number;
|
|
322
|
+
readonly density?: number;
|
|
323
|
+
readonly color?: AuraColor;
|
|
324
|
+
readonly speed?: number;
|
|
325
|
+
readonly wind?: AuraVec3;
|
|
326
|
+
readonly particleCount?: number;
|
|
327
|
+
readonly emitter?: "fountain" | "swirl" | "ambient";
|
|
328
|
+
readonly radius?: number;
|
|
329
|
+
readonly height?: number;
|
|
330
|
+
readonly threshold?: number;
|
|
331
|
+
readonly antiBlowout?: boolean;
|
|
332
|
+
readonly maxIntensity?: number;
|
|
333
|
+
readonly emissionRate?: number;
|
|
334
|
+
readonly gravity?: number;
|
|
335
|
+
readonly groundCollision?: boolean;
|
|
336
|
+
readonly lifetimeColorRamp?: readonly AuraColor[];
|
|
337
|
+
readonly materialMode?: AuraParticleMaterialMode;
|
|
338
|
+
readonly texturedBillboard?: boolean;
|
|
339
|
+
readonly sizeOverLife?: readonly number[];
|
|
340
|
+
readonly alphaOverLife?: readonly number[];
|
|
341
|
+
readonly velocityOverLife?: readonly number[];
|
|
342
|
+
readonly turbulence?: number;
|
|
343
|
+
readonly noise?: number;
|
|
344
|
+
readonly splashes?: boolean;
|
|
345
|
+
readonly mist?: boolean;
|
|
346
|
+
}
|
|
347
|
+
export interface AuraParticleBudgetDiagnostics {
|
|
348
|
+
readonly kind: "aura-particle-budget";
|
|
349
|
+
readonly effectCount: number;
|
|
350
|
+
readonly totalParticles: number;
|
|
351
|
+
readonly estimatedDrawCalls: number;
|
|
352
|
+
readonly estimatedUpdateCostMs: number;
|
|
353
|
+
readonly modes: readonly AuraParticleMaterialMode[];
|
|
354
|
+
readonly texturedBillboards: number;
|
|
355
|
+
readonly gpuReady: boolean;
|
|
356
|
+
}
|
|
357
|
+
export interface AuraLabelNode extends AuraTransformSpec {
|
|
358
|
+
readonly kind: "label";
|
|
359
|
+
readonly label: "billboard" | "anchor" | "axis-tick" | "callout" | "hud";
|
|
360
|
+
readonly name?: string;
|
|
361
|
+
readonly text: string;
|
|
362
|
+
readonly target?: string;
|
|
363
|
+
readonly color?: AuraColor;
|
|
364
|
+
readonly background?: AuraColor;
|
|
365
|
+
readonly size?: number;
|
|
366
|
+
readonly leader?: boolean;
|
|
367
|
+
readonly screenAnchor?: "top-left" | "top-right" | "bottom-left" | "bottom-right";
|
|
368
|
+
readonly occlusionAware?: boolean;
|
|
369
|
+
readonly collisionAvoidance?: boolean;
|
|
370
|
+
readonly animation?: AuraAnimationSpec;
|
|
371
|
+
}
|
|
372
|
+
export interface AuraEnvironmentNode {
|
|
373
|
+
readonly kind: "environment";
|
|
374
|
+
readonly environment: "studio" | "material-lab" | "product-hero" | "night-cinematic" | "metal-studio" | "glass-studio";
|
|
375
|
+
readonly name?: string;
|
|
376
|
+
readonly intensity: number;
|
|
377
|
+
readonly color?: AuraColor;
|
|
378
|
+
}
|
|
379
|
+
export type AuraSceneCategory = "product" | "material" | "neon" | "city-night" | "city-day" | "space" | "physics" | "chart" | "game";
|
|
380
|
+
export interface AuraRendererColorManagementPreset {
|
|
381
|
+
readonly kind: "aura-renderer-color-management";
|
|
382
|
+
readonly workflow: "linear";
|
|
383
|
+
readonly outputColorSpace: "srgb";
|
|
384
|
+
readonly toneMapping: "aces-filmic";
|
|
385
|
+
readonly defaultExposure: number;
|
|
386
|
+
readonly notes: readonly string[];
|
|
387
|
+
}
|
|
388
|
+
export interface AuraSceneExposurePreset {
|
|
389
|
+
readonly category: AuraSceneCategory;
|
|
390
|
+
readonly exposure: number;
|
|
391
|
+
readonly evidence: string;
|
|
392
|
+
}
|
|
393
|
+
export interface AuraEnvironmentMapPreset {
|
|
394
|
+
readonly id: AuraEnvironmentNode["environment"];
|
|
395
|
+
readonly label: string;
|
|
396
|
+
readonly purpose: readonly string[];
|
|
397
|
+
readonly intensity: number;
|
|
398
|
+
readonly color: AuraColor;
|
|
399
|
+
readonly evidence: string;
|
|
400
|
+
}
|
|
401
|
+
export interface AuraRendererQualityPreset {
|
|
402
|
+
readonly kind: "aura-renderer-quality";
|
|
403
|
+
readonly id: "interactive" | "screenshot";
|
|
404
|
+
readonly antialiasing: "msaa" | "msaa-plus-high-dpi";
|
|
405
|
+
readonly shadowMap: "pcf-soft";
|
|
406
|
+
readonly pixelRatio: number;
|
|
407
|
+
readonly preserveDrawingBuffer: boolean;
|
|
408
|
+
readonly maxRecommendedDrawCalls: number;
|
|
409
|
+
readonly evidence: string;
|
|
410
|
+
}
|
|
411
|
+
export interface AuraRendererDiagnosticReport {
|
|
412
|
+
readonly kind: "aura-renderer-diagnostics";
|
|
413
|
+
readonly colorManagement: AuraRendererColorManagementPreset;
|
|
414
|
+
readonly sceneCategory: AuraSceneCategory;
|
|
415
|
+
readonly exposure: AuraSceneExposurePreset;
|
|
416
|
+
readonly toneMapping: "aces-filmic";
|
|
417
|
+
readonly outputColorSpace: "srgb";
|
|
418
|
+
readonly linearWorkflow: true;
|
|
419
|
+
readonly bloom: {
|
|
420
|
+
readonly enabled: boolean;
|
|
421
|
+
readonly rendered: boolean;
|
|
422
|
+
readonly intensity: number;
|
|
423
|
+
readonly threshold: number;
|
|
424
|
+
readonly radius: number;
|
|
425
|
+
readonly antiBlowout: boolean;
|
|
426
|
+
};
|
|
427
|
+
readonly shadows: {
|
|
428
|
+
readonly enabled: boolean;
|
|
429
|
+
readonly contactShadows: number;
|
|
430
|
+
readonly mapType: "pcf-soft";
|
|
431
|
+
};
|
|
432
|
+
readonly occlusion: {
|
|
433
|
+
readonly enabled: boolean;
|
|
434
|
+
readonly contactOcclusion: boolean;
|
|
435
|
+
readonly ambientOcclusion: boolean;
|
|
436
|
+
readonly evidence: string;
|
|
437
|
+
};
|
|
438
|
+
readonly fog: {
|
|
439
|
+
readonly enabled: boolean;
|
|
440
|
+
readonly density: number;
|
|
441
|
+
readonly preset: "none" | "depth" | "volumetric";
|
|
442
|
+
};
|
|
443
|
+
readonly postprocess: {
|
|
444
|
+
readonly enabled: boolean;
|
|
445
|
+
readonly requested: boolean;
|
|
446
|
+
readonly renderPass: boolean;
|
|
447
|
+
readonly outputPass: boolean;
|
|
448
|
+
readonly bloomPass: boolean;
|
|
449
|
+
readonly ambientOcclusionPass: boolean;
|
|
450
|
+
readonly contactOcclusionReceiver: boolean;
|
|
451
|
+
readonly pixelBacked: boolean;
|
|
452
|
+
readonly runtimeStatus: "not-mounted" | "active" | "fallback" | "disabled";
|
|
453
|
+
readonly requestedPasses: readonly string[];
|
|
454
|
+
readonly actualPasses: readonly string[];
|
|
455
|
+
readonly fallbackPasses: readonly string[];
|
|
456
|
+
readonly evidence: string;
|
|
457
|
+
};
|
|
458
|
+
readonly runtime: {
|
|
459
|
+
readonly mounted: boolean;
|
|
460
|
+
readonly backend: "scene-plan" | "three-webgl" | "webgl2-fallback";
|
|
461
|
+
readonly postprocessVerified: boolean;
|
|
462
|
+
readonly passNames: readonly string[];
|
|
463
|
+
readonly warnings: readonly string[];
|
|
464
|
+
};
|
|
465
|
+
readonly environment: {
|
|
466
|
+
readonly enabled: boolean;
|
|
467
|
+
readonly preset?: AuraEnvironmentNode["environment"];
|
|
468
|
+
readonly intensity?: number;
|
|
469
|
+
readonly evidence: string;
|
|
470
|
+
};
|
|
471
|
+
readonly antialiasing: AuraRendererQualityPreset["antialiasing"];
|
|
472
|
+
readonly screenshotQuality: AuraRendererQualityPreset;
|
|
473
|
+
readonly warnings: readonly string[];
|
|
474
|
+
}
|
|
475
|
+
declare global {
|
|
476
|
+
interface HTMLStrongElement extends HTMLElement {
|
|
477
|
+
}
|
|
478
|
+
}
|
|
479
|
+
export interface AuraInteractionNode {
|
|
480
|
+
readonly kind: "interaction";
|
|
481
|
+
readonly mode: "orbit" | "pointer" | "keyboard" | "drag-vector" | "click-impulse" | "hover";
|
|
482
|
+
readonly target?: string;
|
|
483
|
+
readonly vector?: AuraVec3;
|
|
484
|
+
readonly impulse?: number;
|
|
485
|
+
readonly selected?: string;
|
|
486
|
+
}
|
|
487
|
+
export type AuraPhysicsShapeKind = "box" | "sphere" | "capsule" | "plane";
|
|
488
|
+
export interface AuraNodePhysicsSpec {
|
|
489
|
+
readonly type?: RigidBodyType;
|
|
490
|
+
readonly shape?: AuraPhysicsShapeKind | PhysicsShape;
|
|
491
|
+
readonly mass?: number;
|
|
492
|
+
readonly friction?: number;
|
|
493
|
+
readonly restitution?: number;
|
|
494
|
+
readonly density?: number;
|
|
495
|
+
readonly sensor?: boolean;
|
|
496
|
+
readonly halfExtents?: AuraVec3;
|
|
497
|
+
readonly radius?: number;
|
|
498
|
+
readonly halfHeight?: number;
|
|
499
|
+
readonly normal?: AuraVec3;
|
|
500
|
+
readonly constant?: number;
|
|
501
|
+
}
|
|
502
|
+
export interface AuraPhysicsStepOptions {
|
|
503
|
+
readonly dt?: number;
|
|
504
|
+
readonly steps?: number;
|
|
505
|
+
}
|
|
506
|
+
export interface AuraPhysicsDebugSnapshot {
|
|
507
|
+
readonly bodyCount: number;
|
|
508
|
+
readonly colliderCount: number;
|
|
509
|
+
readonly contactCount: number;
|
|
510
|
+
readonly sleepingBodyCount: number;
|
|
511
|
+
readonly lines: readonly DebugLine[];
|
|
512
|
+
readonly nodes: readonly AuraSceneNode[];
|
|
513
|
+
}
|
|
514
|
+
export interface AuraPhysicsSceneSummary {
|
|
515
|
+
readonly kind: "aura-physics-world";
|
|
516
|
+
readonly backend: PhysicsBackendSelection;
|
|
517
|
+
readonly bodies: number;
|
|
518
|
+
readonly colliders: number;
|
|
519
|
+
readonly contacts: number;
|
|
520
|
+
readonly steps: number;
|
|
521
|
+
readonly resets: number;
|
|
522
|
+
readonly debugLines: number;
|
|
523
|
+
readonly snapshot: PhysicsSnapshot;
|
|
524
|
+
}
|
|
525
|
+
export interface AuraPhysicsWorldController {
|
|
526
|
+
readonly kind: "aura-physics-world";
|
|
527
|
+
createBody(options?: RigidBodyDescriptor & {
|
|
528
|
+
readonly shape?: PhysicsShape;
|
|
529
|
+
readonly sensor?: boolean;
|
|
530
|
+
readonly material?: ColliderDescriptor["material"];
|
|
531
|
+
}): RigidBody;
|
|
532
|
+
createCollider(body: RigidBody | number, descriptor: ColliderDescriptor): Collider;
|
|
533
|
+
createConstraint(descriptor: ConstraintDescriptor): Constraint;
|
|
534
|
+
bindNode(body: RigidBody | number, node: ScenePhysicsNode, mode?: "dynamic" | "kinematic"): void;
|
|
535
|
+
step(options?: number | AuraPhysicsStepOptions): readonly CollisionEvent[];
|
|
536
|
+
reset(): void;
|
|
537
|
+
contacts(): readonly Contact[];
|
|
538
|
+
liveContactCount(): number;
|
|
539
|
+
raycast(origin: AuraVec3, direction: AuraVec3, options?: RaycastOptions): RaycastHit | undefined;
|
|
540
|
+
sphereCast(origin: AuraVec3, radius: number, direction: AuraVec3, options?: RaycastOptions): SphereCastHit | undefined;
|
|
541
|
+
debug(): AuraPhysicsDebugSnapshot;
|
|
542
|
+
debugNodes(): readonly AuraSceneNode[];
|
|
543
|
+
snapshot(): AuraPhysicsSceneSummary;
|
|
544
|
+
}
|
|
545
|
+
export declare class AuraNodeBuilder<TNode extends AuraSceneNode> {
|
|
546
|
+
private readonly value;
|
|
547
|
+
constructor(value: TNode);
|
|
548
|
+
position(x: number, y: number, z: number): AuraNodeBuilder<TNode & {
|
|
549
|
+
readonly position: AuraVec3;
|
|
550
|
+
}>;
|
|
551
|
+
rotate(x: number, y: number, z: number): AuraNodeBuilder<TNode & {
|
|
552
|
+
readonly rotation: AuraVec3;
|
|
553
|
+
}>;
|
|
554
|
+
scale(value: number | AuraVec3): AuraNodeBuilder<TNode & {
|
|
555
|
+
readonly scale: number | AuraVec3;
|
|
556
|
+
}>;
|
|
557
|
+
lookAt(x: number, y: number, z: number): AuraNodeBuilder<TNode & {
|
|
558
|
+
readonly lookAt: AuraVec3;
|
|
559
|
+
}>;
|
|
560
|
+
material(material: AuraMaterialSpec): AuraNodeBuilder<TNode & {
|
|
561
|
+
readonly material: AuraMaterialSpec;
|
|
562
|
+
}>;
|
|
563
|
+
animate(animation: AuraAnimationSpec): AuraNodeBuilder<TNode & {
|
|
564
|
+
readonly animation: AuraAnimationSpec;
|
|
565
|
+
}>;
|
|
566
|
+
onPointer(interaction: AuraInteractionSpec): AuraNodeBuilder<TNode & {
|
|
567
|
+
readonly interaction: AuraInteractionSpec;
|
|
568
|
+
}>;
|
|
569
|
+
physics(spec: AuraNodePhysicsSpec): AuraNodeBuilder<TNode & {
|
|
570
|
+
readonly physics: AuraNodePhysicsSpec;
|
|
571
|
+
}>;
|
|
572
|
+
toJSON(): TNode;
|
|
573
|
+
private with;
|
|
574
|
+
}
|
|
575
|
+
export declare function model<TAsset extends AuraAssetRef<"model">>(asset: TAsset, options?: AuraModelOptions): AuraNodeBuilder<AuraModelNode>;
|
|
576
|
+
export declare function unsafeModelUrl(url: string, options?: Omit<AuraAssetDefinition, "type" | "format" | "url">): AuraAssetRef<"model", "unsafe">;
|
|
577
|
+
export type AuraNodeInput = AuraNodeBuilder<AuraSceneNode> | AuraSceneNode;
|
|
578
|
+
export declare function group(name: string, children?: readonly AuraNodeInput[], options?: AuraTransformSpec & {
|
|
579
|
+
readonly animation?: AuraAnimationSpec;
|
|
580
|
+
readonly character?: AuraCharacterRigSpec;
|
|
581
|
+
}): AuraNodeBuilder<AuraGroupNode>;
|
|
582
|
+
export declare const primitives: {
|
|
583
|
+
readonly box: (options?: AuraPrimitiveOptions) => AuraNodeBuilder<AuraPrimitiveNode>;
|
|
584
|
+
readonly sphere: (options?: AuraPrimitiveOptions) => AuraNodeBuilder<AuraPrimitiveNode>;
|
|
585
|
+
readonly plane: (options?: AuraPrimitiveOptions) => AuraNodeBuilder<AuraPrimitiveNode>;
|
|
586
|
+
readonly cylinder: (options?: AuraPrimitiveOptions) => AuraNodeBuilder<AuraPrimitiveNode>;
|
|
587
|
+
readonly capsule: (options?: AuraPrimitiveOptions) => AuraNodeBuilder<AuraPrimitiveNode>;
|
|
588
|
+
readonly torus: (options?: AuraPrimitiveOptions) => AuraNodeBuilder<AuraPrimitiveNode>;
|
|
589
|
+
};
|
|
590
|
+
export declare const groups: {
|
|
591
|
+
readonly create: typeof group;
|
|
592
|
+
readonly flatten: (nodes: readonly AuraSceneNode[]) => readonly AuraSceneNode[];
|
|
593
|
+
};
|
|
594
|
+
export declare const shadows: {
|
|
595
|
+
readonly contact: (options?: {
|
|
596
|
+
readonly name?: string;
|
|
597
|
+
readonly position?: AuraVec3;
|
|
598
|
+
readonly footprint?: readonly [number, number];
|
|
599
|
+
readonly opacity?: number;
|
|
600
|
+
readonly color?: AuraColor;
|
|
601
|
+
}) => AuraNodeBuilder<AuraPrimitiveNode>;
|
|
602
|
+
};
|
|
603
|
+
declare function proceduralTexture(texture: AuraProceduralTextureKind, options?: Partial<Omit<AuraProceduralTextureSpec, "kind" | "texture">>): AuraProceduralTextureSpec;
|
|
604
|
+
export declare const material: {
|
|
605
|
+
readonly pbr: (options?: AuraMaterialSpec) => AuraMaterialSpec;
|
|
606
|
+
readonly physical: (options?: AuraMaterialSpec) => AuraMaterialSpec;
|
|
607
|
+
readonly emissive: (options?: AuraMaterialSpec) => AuraMaterialSpec;
|
|
608
|
+
readonly metal: (options?: AuraMaterialSpec) => AuraMaterialSpec;
|
|
609
|
+
readonly rubber: (options?: AuraMaterialSpec) => AuraMaterialSpec;
|
|
610
|
+
readonly glass: (options?: AuraMaterialSpec) => AuraMaterialSpec;
|
|
611
|
+
readonly clearcoat: (options?: AuraMaterialSpec) => AuraMaterialSpec;
|
|
612
|
+
readonly neon: (options?: AuraMaterialSpec) => AuraMaterialSpec;
|
|
613
|
+
readonly reflectiveFloor: (options?: AuraMaterialSpec) => AuraMaterialSpec;
|
|
614
|
+
readonly solarSun: (options?: AuraMaterialSpec) => AuraMaterialSpec;
|
|
615
|
+
readonly solarCorona: (options?: AuraMaterialSpec) => AuraMaterialSpec;
|
|
616
|
+
readonly fabric: (options?: AuraMaterialSpec) => AuraMaterialSpec;
|
|
617
|
+
readonly chrome: (options?: AuraMaterialSpec) => AuraMaterialSpec;
|
|
618
|
+
readonly brushedMetal: (options?: AuraMaterialSpec) => AuraMaterialSpec;
|
|
619
|
+
readonly frostedGlass: (options?: AuraMaterialSpec) => AuraMaterialSpec;
|
|
620
|
+
readonly clearGlass: (options?: AuraMaterialSpec) => AuraMaterialSpec;
|
|
621
|
+
readonly blackRubber: (options?: AuraMaterialSpec) => AuraMaterialSpec;
|
|
622
|
+
readonly matteClay: (options?: AuraMaterialSpec) => AuraMaterialSpec;
|
|
623
|
+
readonly ceramic: (options?: AuraMaterialSpec) => AuraMaterialSpec;
|
|
624
|
+
readonly glowingEmissive: (options?: AuraMaterialSpec) => AuraMaterialSpec;
|
|
625
|
+
readonly clearcoatPaint: (options?: AuraMaterialSpec) => AuraMaterialSpec;
|
|
626
|
+
readonly sneakerMesh: (options?: AuraMaterialSpec) => AuraMaterialSpec;
|
|
627
|
+
readonly sneakerRubber: (options?: AuraMaterialSpec) => AuraMaterialSpec;
|
|
628
|
+
readonly proceduralTexture: typeof proceduralTexture;
|
|
629
|
+
readonly proceduralTextures: {
|
|
630
|
+
readonly fabric: (options?: Partial<Omit<AuraProceduralTextureSpec, "kind" | "texture">>) => AuraProceduralTextureSpec;
|
|
631
|
+
readonly rubber: (options?: Partial<Omit<AuraProceduralTextureSpec, "kind" | "texture">>) => AuraProceduralTextureSpec;
|
|
632
|
+
readonly brushedMetal: (options?: Partial<Omit<AuraProceduralTextureSpec, "kind" | "texture">>) => AuraProceduralTextureSpec;
|
|
633
|
+
readonly plastic: (options?: Partial<Omit<AuraProceduralTextureSpec, "kind" | "texture">>) => AuraProceduralTextureSpec;
|
|
634
|
+
};
|
|
635
|
+
readonly parameters: (name: string, spec: AuraMaterialSpec) => AuraEditableMaterialParameters;
|
|
636
|
+
readonly fromParameters: (parameters: AuraEditableMaterialParameters) => AuraMaterialSpec;
|
|
637
|
+
readonly labParameters: () => readonly AuraEditableMaterialParameters[];
|
|
638
|
+
readonly presets: () => Readonly<Record<string, AuraMaterialSpec>>;
|
|
639
|
+
readonly inspector: (name: string, spec: AuraMaterialSpec) => AuraMaterialInspectorPanel;
|
|
640
|
+
readonly visualQA: (nodes: readonly AuraSceneNode[]) => AuraMaterialVisualQAResult;
|
|
641
|
+
};
|
|
642
|
+
export declare const lights: {
|
|
643
|
+
readonly ambient: (options?: {
|
|
644
|
+
readonly name?: string;
|
|
645
|
+
readonly intensity?: number;
|
|
646
|
+
readonly color?: AuraColor;
|
|
647
|
+
}) => AuraNodeBuilder<AuraLightNode>;
|
|
648
|
+
readonly directional: (options?: {
|
|
649
|
+
readonly name?: string;
|
|
650
|
+
readonly position?: AuraVec3;
|
|
651
|
+
readonly intensity?: number;
|
|
652
|
+
readonly color?: AuraColor;
|
|
653
|
+
}) => AuraNodeBuilder<AuraLightNode>;
|
|
654
|
+
readonly point: (options?: {
|
|
655
|
+
readonly name?: string;
|
|
656
|
+
readonly position?: AuraVec3;
|
|
657
|
+
readonly intensity?: number;
|
|
658
|
+
readonly color?: AuraColor;
|
|
659
|
+
}) => AuraNodeBuilder<AuraLightNode>;
|
|
660
|
+
readonly studio: (options?: {
|
|
661
|
+
readonly intensity?: number;
|
|
662
|
+
}) => AuraNodeBuilder<AuraLightNode>;
|
|
663
|
+
readonly rect: (options?: {
|
|
664
|
+
readonly name?: string;
|
|
665
|
+
readonly position?: AuraVec3;
|
|
666
|
+
readonly intensity?: number;
|
|
667
|
+
readonly color?: AuraColor;
|
|
668
|
+
readonly width?: number;
|
|
669
|
+
readonly height?: number;
|
|
670
|
+
}) => AuraNodeBuilder<AuraLightNode>;
|
|
671
|
+
readonly softbox: (options?: {
|
|
672
|
+
readonly name?: string;
|
|
673
|
+
readonly position?: AuraVec3;
|
|
674
|
+
readonly intensity?: number;
|
|
675
|
+
readonly color?: AuraColor;
|
|
676
|
+
readonly width?: number;
|
|
677
|
+
readonly height?: number;
|
|
678
|
+
}) => AuraNodeBuilder<AuraLightNode>;
|
|
679
|
+
readonly productStudio: (options?: {
|
|
680
|
+
readonly intensity?: number;
|
|
681
|
+
}) => AuraNodeBuilder<AuraLightNode>;
|
|
682
|
+
readonly materialLab: (options?: {
|
|
683
|
+
readonly intensity?: number;
|
|
684
|
+
}) => AuraNodeBuilder<AuraLightNode>;
|
|
685
|
+
};
|
|
686
|
+
export type AuraCameraMode = "perspective" | "orbit" | "dolly" | "follow" | "path" | "flythrough";
|
|
687
|
+
export interface AuraCameraSpec {
|
|
688
|
+
readonly mode: AuraCameraMode;
|
|
689
|
+
readonly position?: AuraVec3;
|
|
690
|
+
readonly target?: AuraVec3;
|
|
691
|
+
readonly fov?: number;
|
|
692
|
+
readonly distance?: number;
|
|
693
|
+
readonly from?: AuraVec3;
|
|
694
|
+
readonly to?: AuraVec3;
|
|
695
|
+
readonly seconds?: number;
|
|
696
|
+
readonly targetNode?: string;
|
|
697
|
+
readonly easing?: "linear" | "easeInOut";
|
|
698
|
+
readonly captureTime?: number;
|
|
699
|
+
readonly smoothing?: number;
|
|
700
|
+
readonly subjectEmphasis?: number;
|
|
701
|
+
}
|
|
702
|
+
export interface AuraBoundsSpec {
|
|
703
|
+
readonly min: AuraVec3;
|
|
704
|
+
readonly max: AuraVec3;
|
|
705
|
+
}
|
|
706
|
+
export declare const camera: {
|
|
707
|
+
readonly perspective: (options?: Omit<AuraCameraSpec, "mode">) => AuraCameraSpec;
|
|
708
|
+
readonly orbit: (options?: Omit<AuraCameraSpec, "mode">) => AuraCameraSpec;
|
|
709
|
+
readonly dolly: (options: Omit<AuraCameraSpec, "mode"> & {
|
|
710
|
+
readonly from: AuraVec3;
|
|
711
|
+
readonly to: AuraVec3;
|
|
712
|
+
}) => AuraCameraSpec;
|
|
713
|
+
readonly follow: (options: Omit<AuraCameraSpec, "mode"> & {
|
|
714
|
+
readonly targetNode: string;
|
|
715
|
+
}) => AuraCameraSpec;
|
|
716
|
+
readonly path: (options: Omit<AuraCameraSpec, "mode"> & {
|
|
717
|
+
readonly from: AuraVec3;
|
|
718
|
+
readonly to: AuraVec3;
|
|
719
|
+
}) => AuraCameraSpec;
|
|
720
|
+
readonly flythrough: (options?: Omit<AuraCameraSpec, "mode"> & {
|
|
721
|
+
readonly from?: AuraVec3;
|
|
722
|
+
readonly to?: AuraVec3;
|
|
723
|
+
}) => AuraCameraSpec;
|
|
724
|
+
readonly autoFrame: (options?: {
|
|
725
|
+
readonly bounds?: AuraBoundsSpec;
|
|
726
|
+
readonly target?: AuraVec3;
|
|
727
|
+
readonly padding?: number;
|
|
728
|
+
readonly fov?: number;
|
|
729
|
+
}) => AuraCameraSpec;
|
|
730
|
+
readonly physics: () => AuraCameraSpec;
|
|
731
|
+
readonly charts: () => AuraCameraSpec;
|
|
732
|
+
readonly materials: () => AuraCameraSpec;
|
|
733
|
+
readonly city: () => AuraCameraSpec;
|
|
734
|
+
readonly product: () => AuraCameraSpec;
|
|
735
|
+
readonly solar: () => AuraCameraSpec;
|
|
736
|
+
readonly humanoid: () => AuraCameraSpec;
|
|
737
|
+
readonly miniGolf: () => AuraCameraSpec;
|
|
738
|
+
readonly neon: () => AuraCameraSpec;
|
|
739
|
+
};
|
|
740
|
+
export interface AuraTimelineSpec {
|
|
741
|
+
readonly mode: "loop" | "once";
|
|
742
|
+
readonly seconds?: number;
|
|
743
|
+
readonly startTime?: number;
|
|
744
|
+
readonly duration?: number;
|
|
745
|
+
readonly loop?: boolean;
|
|
746
|
+
readonly easing?: "linear" | "easeInOut";
|
|
747
|
+
readonly captureTime?: number;
|
|
748
|
+
}
|
|
749
|
+
export declare const timeline: {
|
|
750
|
+
readonly loop: (options?: Omit<AuraTimelineSpec, "mode">) => AuraTimelineSpec;
|
|
751
|
+
readonly once: (options?: Omit<AuraTimelineSpec, "mode">) => AuraTimelineSpec;
|
|
752
|
+
};
|
|
753
|
+
export declare const effects: {
|
|
754
|
+
readonly fog: (options?: Omit<AuraEffectNode, "kind" | "effect">) => AuraNodeBuilder<AuraEffectNode>;
|
|
755
|
+
readonly bloom: (options?: Omit<AuraEffectNode, "kind" | "effect">) => AuraNodeBuilder<AuraEffectNode>;
|
|
756
|
+
readonly cinematicBloom: (options?: Omit<AuraEffectNode, "kind" | "effect">) => AuraNodeBuilder<AuraEffectNode>;
|
|
757
|
+
readonly neonBloom: (options?: Omit<AuraEffectNode, "kind" | "effect">) => AuraNodeBuilder<AuraEffectNode>;
|
|
758
|
+
readonly volumetricFog: (options?: Omit<AuraEffectNode, "kind" | "effect">) => AuraNodeBuilder<AuraEffectNode>;
|
|
759
|
+
readonly depthFog: (options?: Omit<AuraEffectNode, "kind" | "effect">) => AuraNodeBuilder<AuraEffectNode>;
|
|
760
|
+
readonly ambientOcclusion: (options?: Omit<AuraEffectNode, "kind" | "effect">) => AuraNodeBuilder<AuraEffectNode>;
|
|
761
|
+
readonly contactOcclusion: (options?: Omit<AuraEffectNode, "kind" | "effect">) => AuraNodeBuilder<AuraEffectNode>;
|
|
762
|
+
readonly rain: (options?: Omit<AuraEffectNode, "kind" | "effect">) => AuraNodeBuilder<AuraEffectNode>;
|
|
763
|
+
readonly particles: (options?: Omit<AuraEffectNode, "kind" | "effect">) => AuraNodeBuilder<AuraEffectNode>;
|
|
764
|
+
};
|
|
765
|
+
export declare const interactions: {
|
|
766
|
+
readonly orbit: (options?: {
|
|
767
|
+
readonly target?: string;
|
|
768
|
+
}) => AuraNodeBuilder<AuraInteractionNode>;
|
|
769
|
+
readonly pointer: (options?: {
|
|
770
|
+
readonly target?: string;
|
|
771
|
+
}) => AuraNodeBuilder<AuraInteractionNode>;
|
|
772
|
+
readonly keyboard: (options?: {
|
|
773
|
+
readonly target?: string;
|
|
774
|
+
}) => AuraNodeBuilder<AuraInteractionNode>;
|
|
775
|
+
readonly hover: (options?: {
|
|
776
|
+
readonly target?: string;
|
|
777
|
+
readonly selected?: string;
|
|
778
|
+
}) => AuraNodeBuilder<AuraInteractionNode>;
|
|
779
|
+
readonly raycastHover: (options?: {
|
|
780
|
+
readonly target?: string;
|
|
781
|
+
readonly selected?: string;
|
|
782
|
+
}) => AuraNodeBuilder<AuraInteractionNode>;
|
|
783
|
+
readonly highlight: (options?: {
|
|
784
|
+
readonly target?: string;
|
|
785
|
+
readonly selected?: string;
|
|
786
|
+
}) => AuraNodeBuilder<AuraInteractionNode>;
|
|
787
|
+
readonly dragVector: (options?: {
|
|
788
|
+
readonly target?: string;
|
|
789
|
+
readonly vector?: AuraVec3;
|
|
790
|
+
}) => AuraNodeBuilder<AuraInteractionNode>;
|
|
791
|
+
readonly clickImpulse: (options?: {
|
|
792
|
+
readonly target?: string;
|
|
793
|
+
readonly impulse?: number;
|
|
794
|
+
readonly vector?: AuraVec3;
|
|
795
|
+
}) => AuraNodeBuilder<AuraInteractionNode>;
|
|
796
|
+
};
|
|
797
|
+
type AuraUiTarget<TElement extends HTMLElement = HTMLElement> = string | TElement;
|
|
798
|
+
export declare const ui: {
|
|
799
|
+
readonly root: (selector?: string) => HTMLElement;
|
|
800
|
+
readonly text: (selector: string) => HTMLElement;
|
|
801
|
+
readonly button: (selector: string) => HTMLButtonElement;
|
|
802
|
+
readonly html: (target: AuraUiTarget, markup: string, position?: InsertPosition) => HTMLElement;
|
|
803
|
+
readonly setText: (target: AuraUiTarget, value: string | number) => void;
|
|
804
|
+
readonly setPressed: (target: AuraUiTarget<HTMLButtonElement>, pressed: boolean) => void;
|
|
805
|
+
readonly onClick: (target: AuraUiTarget<HTMLButtonElement>, handler: (button: HTMLButtonElement, event: MouseEvent) => void) => HTMLButtonElement;
|
|
806
|
+
readonly range: (selector: string) => HTMLInputElement;
|
|
807
|
+
readonly onInput: (target: AuraUiTarget<HTMLInputElement>, handler: (input: HTMLInputElement, event: Event) => void) => HTMLInputElement;
|
|
808
|
+
readonly scoreCounter: (target: AuraUiTarget, options?: {
|
|
809
|
+
readonly initial?: number;
|
|
810
|
+
readonly label?: string;
|
|
811
|
+
}) => {
|
|
812
|
+
readonly element: HTMLElement;
|
|
813
|
+
get value(): number;
|
|
814
|
+
set(value: number): void;
|
|
815
|
+
increment(amount?: number): number;
|
|
816
|
+
};
|
|
817
|
+
readonly powerMeter: (target: AuraUiTarget<HTMLInputElement>, options?: {
|
|
818
|
+
readonly min?: number;
|
|
819
|
+
readonly max?: number;
|
|
820
|
+
readonly value?: number;
|
|
821
|
+
}) => HTMLInputElement;
|
|
822
|
+
readonly slider: (target: AuraUiTarget<HTMLInputElement>, options?: {
|
|
823
|
+
readonly min?: number;
|
|
824
|
+
readonly max?: number;
|
|
825
|
+
readonly value?: number;
|
|
826
|
+
readonly metric?: string;
|
|
827
|
+
}) => HTMLInputElement;
|
|
828
|
+
readonly resetButton: (target: AuraUiTarget<HTMLButtonElement>, handler?: (button: HTMLButtonElement, event: MouseEvent) => void) => HTMLButtonElement;
|
|
829
|
+
readonly hoverReadout: (target: AuraUiTarget, value?: string) => HTMLElement;
|
|
830
|
+
readonly toggle: (target: AuraUiTarget<HTMLButtonElement>, options?: {
|
|
831
|
+
readonly pressed?: boolean;
|
|
832
|
+
readonly onLabel?: string;
|
|
833
|
+
readonly offLabel?: string;
|
|
834
|
+
}) => HTMLButtonElement;
|
|
835
|
+
};
|
|
836
|
+
type AuraLabelOptions = Partial<Omit<AuraLabelNode, "kind" | "label" | "text">>;
|
|
837
|
+
type AuraAnchorLabelOptions = Partial<Omit<AuraLabelNode, "kind" | "label" | "text" | "target">>;
|
|
838
|
+
type AuraEnvironmentOptions = Partial<Omit<AuraEnvironmentNode, "kind" | "environment">>;
|
|
839
|
+
export declare const labels: {
|
|
840
|
+
readonly billboard: (text: string, options?: AuraLabelOptions) => AuraNodeBuilder<AuraLabelNode>;
|
|
841
|
+
readonly anchor: (text: string, target: string, options?: AuraAnchorLabelOptions) => AuraNodeBuilder<AuraLabelNode>;
|
|
842
|
+
readonly axisTick: (text: string, options?: AuraLabelOptions) => AuraNodeBuilder<AuraLabelNode>;
|
|
843
|
+
readonly callout: (text: string, target: string, options?: AuraAnchorLabelOptions) => AuraNodeBuilder<AuraLabelNode>;
|
|
844
|
+
readonly hud: (text: string, options?: AuraLabelOptions) => AuraNodeBuilder<AuraLabelNode>;
|
|
845
|
+
};
|
|
846
|
+
export declare const environments: {
|
|
847
|
+
readonly studio: (options?: AuraEnvironmentOptions) => AuraNodeBuilder<AuraEnvironmentNode>;
|
|
848
|
+
readonly materialLab: (options?: AuraEnvironmentOptions) => AuraNodeBuilder<AuraEnvironmentNode>;
|
|
849
|
+
readonly productHero: (options?: AuraEnvironmentOptions) => AuraNodeBuilder<AuraEnvironmentNode>;
|
|
850
|
+
readonly nightCinematic: (options?: AuraEnvironmentOptions) => AuraNodeBuilder<AuraEnvironmentNode>;
|
|
851
|
+
readonly metalStudio: (options?: AuraEnvironmentOptions) => AuraNodeBuilder<AuraEnvironmentNode>;
|
|
852
|
+
readonly glassStudio: (options?: AuraEnvironmentOptions) => AuraNodeBuilder<AuraEnvironmentNode>;
|
|
853
|
+
readonly presets: () => readonly AuraEnvironmentMapPreset[];
|
|
854
|
+
readonly forMaterial: (materialClass: "metal" | "glass" | "product" | "studio") => AuraNodeBuilder<AuraEnvironmentNode>;
|
|
855
|
+
};
|
|
856
|
+
export declare const renderer: {
|
|
857
|
+
readonly colorManagementPreset: () => AuraRendererColorManagementPreset;
|
|
858
|
+
readonly exposurePresets: () => Readonly<Record<AuraSceneCategory, AuraSceneExposurePreset>>;
|
|
859
|
+
readonly exposureFor: (category: AuraSceneCategory) => AuraSceneExposurePreset;
|
|
860
|
+
readonly qualityPresets: () => Readonly<Record<"interactive" | "screenshot", AuraRendererQualityPreset>>;
|
|
861
|
+
readonly screenshotQuality: () => AuraRendererQualityPreset;
|
|
862
|
+
readonly diagnostics: (sceneValue: AuraSceneBuilder | AuraSceneSnapshot) => AuraRendererDiagnosticReport;
|
|
863
|
+
};
|
|
864
|
+
export interface AuraSceneSnapshot {
|
|
865
|
+
readonly schema: "aura3d-scene-snapshot/1.0";
|
|
866
|
+
readonly background: AuraColor;
|
|
867
|
+
readonly camera: AuraCameraSpec;
|
|
868
|
+
readonly timeline?: AuraTimelineSpec;
|
|
869
|
+
readonly physics?: AuraPhysicsSceneSummary;
|
|
870
|
+
readonly nodes: readonly AuraSceneNode[];
|
|
871
|
+
readonly diagnostics: {
|
|
872
|
+
readonly enabled: boolean;
|
|
873
|
+
};
|
|
874
|
+
}
|
|
875
|
+
export declare class AuraSceneBuilder {
|
|
876
|
+
private readonly nodes;
|
|
877
|
+
private backgroundColor;
|
|
878
|
+
private cameraSpec;
|
|
879
|
+
private timelineSpec;
|
|
880
|
+
private physicsController;
|
|
881
|
+
private diagnosticsEnabled;
|
|
882
|
+
background(color: AuraColor): this;
|
|
883
|
+
add(node: AuraNodeBuilder<AuraSceneNode> | AuraSceneNode): this;
|
|
884
|
+
addMany(nodes: readonly (AuraNodeBuilder<AuraSceneNode> | AuraSceneNode)[]): this;
|
|
885
|
+
camera(next: AuraCameraSpec): this;
|
|
886
|
+
timeline(next: AuraTimelineSpec): this;
|
|
887
|
+
physics(next: AuraPhysicsWorldController): this;
|
|
888
|
+
diagnostics(enabled?: boolean): this;
|
|
889
|
+
toJSON(): AuraSceneSnapshot;
|
|
890
|
+
getPhysicsController(): AuraPhysicsWorldController | undefined;
|
|
891
|
+
}
|
|
892
|
+
export declare function scene(): AuraSceneBuilder;
|
|
893
|
+
type AuraPhysicsBodyOptions = RigidBodyDescriptor & {
|
|
894
|
+
readonly shape?: PhysicsShape;
|
|
895
|
+
readonly sensor?: boolean;
|
|
896
|
+
readonly material?: ColliderDescriptor["material"];
|
|
897
|
+
};
|
|
898
|
+
declare function resolveAgentPhysicsShape(spec: AuraNodePhysicsSpec): PhysicsShape;
|
|
899
|
+
export declare const physics: {
|
|
900
|
+
readonly world: (descriptor?: PhysicsWorldDescriptor) => AuraPhysicsWorldController;
|
|
901
|
+
readonly worldAsync: (descriptor?: PhysicsWorldDescriptor) => Promise<AuraPhysicsWorldController>;
|
|
902
|
+
readonly worldFromScene: (sceneValue: AuraSceneBuilder | AuraSceneSnapshot, descriptor?: PhysicsWorldDescriptor) => AuraPhysicsWorldController;
|
|
903
|
+
readonly worldFromSceneAsync: (sceneValue: AuraSceneBuilder | AuraSceneSnapshot, descriptor?: PhysicsWorldDescriptor) => Promise<AuraPhysicsWorldController>;
|
|
904
|
+
readonly body: (options?: AuraPhysicsBodyOptions) => AuraPhysicsBodyOptions;
|
|
905
|
+
readonly collider: (descriptor: ColliderDescriptor) => ColliderDescriptor;
|
|
906
|
+
readonly box: (x?: number, y?: number, z?: number) => PhysicsShape;
|
|
907
|
+
readonly sphere: (radius?: number) => PhysicsShape;
|
|
908
|
+
readonly capsule: (radius?: number, halfHeight?: number) => PhysicsShape;
|
|
909
|
+
readonly plane: (normal?: AuraVec3, constant?: number) => PhysicsShape;
|
|
910
|
+
readonly constraint: (descriptor: ConstraintDescriptor) => ConstraintDescriptor;
|
|
911
|
+
readonly bindNode: (world: AuraPhysicsWorldController, body: RigidBody | number, node: ScenePhysicsNode, mode?: "dynamic" | "kinematic") => void;
|
|
912
|
+
readonly step: (world: AuraPhysicsWorldController, options?: number | AuraPhysicsStepOptions) => readonly CollisionEvent[];
|
|
913
|
+
readonly contacts: (world: AuraPhysicsWorldController) => readonly Contact[];
|
|
914
|
+
readonly liveContactCount: (world: AuraPhysicsWorldController) => number;
|
|
915
|
+
readonly raycast: (world: AuraPhysicsWorldController, origin: AuraVec3, direction: AuraVec3, options?: RaycastOptions) => RaycastHit | undefined;
|
|
916
|
+
readonly sphereCast: (world: AuraPhysicsWorldController, origin: AuraVec3, radius: number, direction: AuraVec3, options?: RaycastOptions) => SphereCastHit | undefined;
|
|
917
|
+
readonly debug: (world: AuraPhysicsWorldController) => AuraPhysicsDebugSnapshot;
|
|
918
|
+
readonly debugNodes: (world: AuraPhysicsWorldController) => readonly AuraSceneNode[];
|
|
919
|
+
readonly sceneBinding: (node: ScenePhysicsNode) => ScenePhysicsNode;
|
|
920
|
+
readonly nodeSpec: (spec: AuraNodePhysicsSpec) => AuraNodePhysicsSpec;
|
|
921
|
+
readonly resolveShape: typeof resolveAgentPhysicsShape;
|
|
922
|
+
};
|
|
923
|
+
export type CityBlockTimeOfDay = "day" | "night";
|
|
924
|
+
export type AuraCityCameraPreset = "overview" | "street-level" | "cinematic-night";
|
|
925
|
+
export interface AuraCityBlockOptions {
|
|
926
|
+
readonly blocks?: number;
|
|
927
|
+
readonly litWindows?: boolean;
|
|
928
|
+
readonly timeOfDay?: CityBlockTimeOfDay;
|
|
929
|
+
}
|
|
930
|
+
export interface AuraCityStateChangeEvidence {
|
|
931
|
+
readonly from: CityBlockTimeOfDay;
|
|
932
|
+
readonly to: CityBlockTimeOfDay;
|
|
933
|
+
readonly revision: number;
|
|
934
|
+
readonly changedNodeNames: readonly string[];
|
|
935
|
+
}
|
|
936
|
+
export interface AuraCityInstancingPlan {
|
|
937
|
+
readonly kind: "aura-city-instancing-plan";
|
|
938
|
+
readonly rendererPath: "createThreePrimitiveBatches";
|
|
939
|
+
readonly windows: number;
|
|
940
|
+
readonly props: number;
|
|
941
|
+
readonly roadMarkings: number;
|
|
942
|
+
readonly lights: number;
|
|
943
|
+
readonly groups: readonly string[];
|
|
944
|
+
readonly instanced: boolean;
|
|
945
|
+
}
|
|
946
|
+
export interface AuraCityVisualQAResult {
|
|
947
|
+
readonly passes: boolean;
|
|
948
|
+
readonly score: number;
|
|
949
|
+
readonly buildings: number;
|
|
950
|
+
readonly windows: number;
|
|
951
|
+
readonly streets: number;
|
|
952
|
+
readonly crosswalks: number;
|
|
953
|
+
readonly lights: number;
|
|
954
|
+
readonly props: number;
|
|
955
|
+
readonly facadeDetails: number;
|
|
956
|
+
readonly dayNightChanged: boolean;
|
|
957
|
+
readonly instancing: AuraCityInstancingPlan;
|
|
958
|
+
readonly problems: readonly string[];
|
|
959
|
+
}
|
|
960
|
+
export interface AuraCityStateController {
|
|
961
|
+
readonly kind: "aura-city-state";
|
|
962
|
+
readonly blocks: number;
|
|
963
|
+
readonly litWindows: boolean;
|
|
964
|
+
readonly timeOfDay: CityBlockTimeOfDay;
|
|
965
|
+
readonly revision: number;
|
|
966
|
+
readonly lastChange?: AuraCityStateChangeEvidence;
|
|
967
|
+
setTimeOfDay(next: CityBlockTimeOfDay): readonly AuraSceneNode[];
|
|
968
|
+
toggleTimeOfDay(): readonly AuraSceneNode[];
|
|
969
|
+
scene(): AuraSceneBuilder;
|
|
970
|
+
applyTo(builder: AuraSceneBuilder): AuraSceneBuilder;
|
|
971
|
+
nodes(): readonly AuraSceneNode[];
|
|
972
|
+
}
|
|
973
|
+
export interface AuraSolarSystemPrefabOptions {
|
|
974
|
+
readonly orbitSegments?: number;
|
|
975
|
+
readonly starCount?: number;
|
|
976
|
+
readonly dustCount?: number;
|
|
977
|
+
readonly capturePhase?: number;
|
|
978
|
+
readonly labels?: "attached" | "none";
|
|
979
|
+
}
|
|
980
|
+
export type AuraSolarPlanetMaterialPreset = "rocky" | "gas-giant" | "ice" | "moon" | "ringed" | "lava-venus";
|
|
981
|
+
export interface AuraSolarVisualQAResult {
|
|
982
|
+
readonly passes: boolean;
|
|
983
|
+
readonly score: number;
|
|
984
|
+
readonly planets: number;
|
|
985
|
+
readonly materialPresets: readonly AuraSolarPlanetMaterialPreset[];
|
|
986
|
+
readonly orbitSegments: number;
|
|
987
|
+
readonly labels: number;
|
|
988
|
+
readonly leaderLines: number;
|
|
989
|
+
readonly stars: number;
|
|
990
|
+
readonly dust: number;
|
|
991
|
+
readonly hasSunCorona: boolean;
|
|
992
|
+
readonly hasBloom: boolean;
|
|
993
|
+
readonly deterministicCapturePhase: boolean;
|
|
994
|
+
readonly problems: readonly string[];
|
|
995
|
+
}
|
|
996
|
+
export type AuraNeonPalettePreset = "cyan-magenta" | "sunset-grid" | "acid-aurora";
|
|
997
|
+
export interface AuraNeonTunnelOptions {
|
|
998
|
+
readonly rings?: number;
|
|
999
|
+
readonly palette?: AuraNeonPalettePreset;
|
|
1000
|
+
readonly bloomIntensity?: number;
|
|
1001
|
+
readonly captureFrame?: number;
|
|
1002
|
+
}
|
|
1003
|
+
export interface AuraNeonVisualQAResult {
|
|
1004
|
+
readonly passes: boolean;
|
|
1005
|
+
readonly score: number;
|
|
1006
|
+
readonly ringCount: number;
|
|
1007
|
+
readonly hasFog: boolean;
|
|
1008
|
+
readonly hasBloom: boolean;
|
|
1009
|
+
readonly hasReflections: boolean;
|
|
1010
|
+
readonly hasDepthCues: boolean;
|
|
1011
|
+
readonly overexposureRisk: boolean;
|
|
1012
|
+
readonly problems: readonly string[];
|
|
1013
|
+
}
|
|
1014
|
+
export interface AuraPrimitiveHumanoidPrefabOptions {
|
|
1015
|
+
readonly showJoints?: boolean;
|
|
1016
|
+
readonly motionTrail?: boolean;
|
|
1017
|
+
readonly clip?: AuraCharacterClipName;
|
|
1018
|
+
readonly pose?: AuraCharacterPose;
|
|
1019
|
+
readonly style?: AuraCharacterStyle;
|
|
1020
|
+
}
|
|
1021
|
+
export interface AuraDataBars3DPrefabOptions {
|
|
1022
|
+
readonly grid?: number;
|
|
1023
|
+
readonly selected?: false | {
|
|
1024
|
+
readonly row?: number;
|
|
1025
|
+
readonly col?: number;
|
|
1026
|
+
};
|
|
1027
|
+
readonly dataset?: readonly (readonly number[])[];
|
|
1028
|
+
readonly title?: string;
|
|
1029
|
+
readonly subtitle?: string;
|
|
1030
|
+
readonly units?: string;
|
|
1031
|
+
readonly valueRange?: readonly [number, number];
|
|
1032
|
+
readonly theme?: AuraChartTheme;
|
|
1033
|
+
readonly colorScale?: readonly AuraColor[];
|
|
1034
|
+
}
|
|
1035
|
+
export type AuraChartTheme = "dark-analytics" | "light-analytics" | "neon-analytics";
|
|
1036
|
+
export interface AuraChartVisualQAResult {
|
|
1037
|
+
readonly passes: boolean;
|
|
1038
|
+
readonly score: number;
|
|
1039
|
+
readonly bars: number;
|
|
1040
|
+
readonly labels: number;
|
|
1041
|
+
readonly legends: number;
|
|
1042
|
+
readonly selectedOutlines: number;
|
|
1043
|
+
readonly problems: readonly string[];
|
|
1044
|
+
}
|
|
1045
|
+
export type AuraProductStageStyle = "hero-clean" | "clean" | "inspection";
|
|
1046
|
+
export interface AuraProductViewerOptions {
|
|
1047
|
+
readonly stageStyle?: AuraProductStageStyle;
|
|
1048
|
+
readonly provenanceBadge?: boolean;
|
|
1049
|
+
readonly captureFrame?: number;
|
|
1050
|
+
}
|
|
1051
|
+
export interface AuraProductPlacement {
|
|
1052
|
+
readonly kind: "aura-product-placement";
|
|
1053
|
+
readonly assetId: string;
|
|
1054
|
+
readonly bounds: AuraVec3;
|
|
1055
|
+
readonly position: AuraVec3;
|
|
1056
|
+
readonly scale: number;
|
|
1057
|
+
readonly plinthSeatY: number;
|
|
1058
|
+
readonly centered: boolean;
|
|
1059
|
+
readonly seatedOnPlinth: boolean;
|
|
1060
|
+
readonly normalizedFromBounds: boolean;
|
|
1061
|
+
}
|
|
1062
|
+
export interface AuraProductDiagnostics {
|
|
1063
|
+
readonly kind: "aura-product-diagnostics";
|
|
1064
|
+
readonly stageStyle: AuraProductStageStyle;
|
|
1065
|
+
readonly placement: AuraProductPlacement;
|
|
1066
|
+
readonly provenance: AuraAssetProvenance;
|
|
1067
|
+
readonly orbitEnabled: boolean;
|
|
1068
|
+
readonly turntableEnabled: boolean;
|
|
1069
|
+
readonly turntableCaptureFrame: number;
|
|
1070
|
+
readonly inspectionGuidesVisible: boolean;
|
|
1071
|
+
readonly provenanceBadgeVisible: boolean;
|
|
1072
|
+
readonly cleanHeroMode: boolean;
|
|
1073
|
+
}
|
|
1074
|
+
export interface AuraProductVisualQAResult {
|
|
1075
|
+
readonly passes: boolean;
|
|
1076
|
+
readonly score: number;
|
|
1077
|
+
readonly modelCount: number;
|
|
1078
|
+
readonly softboxes: number;
|
|
1079
|
+
readonly reflectionCards: number;
|
|
1080
|
+
readonly contactShadows: number;
|
|
1081
|
+
readonly materialReadabilityCues: number;
|
|
1082
|
+
readonly inspectionGuides: number;
|
|
1083
|
+
readonly cleanHeroMode: boolean;
|
|
1084
|
+
readonly centeredAndSeated: boolean;
|
|
1085
|
+
readonly typedAssetProvenance: boolean;
|
|
1086
|
+
readonly problems: readonly string[];
|
|
1087
|
+
}
|
|
1088
|
+
declare function solarPlanetMaterial(preset: AuraSolarPlanetMaterialPreset): AuraMaterialSpec;
|
|
1089
|
+
interface AuraMiniGolfPrefabOptions {
|
|
1090
|
+
readonly ballPosition?: AuraVec3;
|
|
1091
|
+
readonly shots?: number;
|
|
1092
|
+
readonly score?: number;
|
|
1093
|
+
readonly collisions?: number;
|
|
1094
|
+
readonly contacts?: number;
|
|
1095
|
+
readonly cupTriggered?: boolean;
|
|
1096
|
+
readonly aimVector?: AuraVec3;
|
|
1097
|
+
}
|
|
1098
|
+
export declare const prefabs: {
|
|
1099
|
+
readonly particleFountain: (options?: {
|
|
1100
|
+
readonly color?: AuraColor;
|
|
1101
|
+
readonly count?: number;
|
|
1102
|
+
readonly emissionRate?: number;
|
|
1103
|
+
}) => readonly AuraSceneNode[];
|
|
1104
|
+
readonly cityBlock: (options?: AuraCityBlockOptions) => readonly AuraSceneNode[];
|
|
1105
|
+
readonly materialSwatches: () => readonly AuraSceneNode[];
|
|
1106
|
+
readonly productStage: (options?: {
|
|
1107
|
+
readonly style?: AuraProductStageStyle;
|
|
1108
|
+
readonly showStudioRig?: boolean;
|
|
1109
|
+
}) => readonly AuraSceneNode[];
|
|
1110
|
+
readonly productViewer: (asset: AuraAssetRef<"model">, options?: AuraProductViewerOptions) => readonly AuraSceneNode[];
|
|
1111
|
+
readonly physicsRamp: () => readonly AuraSceneNode[];
|
|
1112
|
+
readonly physicsPlayground: (options?: {
|
|
1113
|
+
readonly cubes?: number;
|
|
1114
|
+
}) => readonly AuraSceneNode[];
|
|
1115
|
+
readonly solarSystem: (options?: AuraSolarSystemPrefabOptions) => readonly AuraSceneNode[];
|
|
1116
|
+
readonly dataBars3D: (options?: AuraDataBars3DPrefabOptions) => readonly AuraSceneNode[];
|
|
1117
|
+
readonly neonTunnel: (options?: AuraNeonTunnelOptions) => readonly AuraSceneNode[];
|
|
1118
|
+
readonly miniGolfHole: (options?: AuraMiniGolfPrefabOptions) => readonly AuraSceneNode[];
|
|
1119
|
+
readonly miniGolfCourse: () => readonly AuraSceneNode[];
|
|
1120
|
+
readonly primitiveHumanoid: (options?: AuraPrimitiveHumanoidPrefabOptions) => readonly AuraSceneNode[];
|
|
1121
|
+
readonly lowPolyHumanoid: (options?: AuraPrimitiveHumanoidPrefabOptions) => readonly AuraSceneNode[];
|
|
1122
|
+
};
|
|
1123
|
+
export interface AuraMiniGolfMetrics {
|
|
1124
|
+
readonly physicsBackend: string;
|
|
1125
|
+
readonly deterministicReplayId: string;
|
|
1126
|
+
readonly replayFrame: number;
|
|
1127
|
+
readonly captureTime: number;
|
|
1128
|
+
readonly shots: number;
|
|
1129
|
+
readonly score: number;
|
|
1130
|
+
readonly collisions: number;
|
|
1131
|
+
readonly contacts: number;
|
|
1132
|
+
readonly cupTriggered: boolean;
|
|
1133
|
+
readonly resets: number;
|
|
1134
|
+
readonly selected: string;
|
|
1135
|
+
readonly aimVector: AuraVec3;
|
|
1136
|
+
readonly ballPosition: AuraVec3;
|
|
1137
|
+
readonly followCameraTarget: string;
|
|
1138
|
+
readonly settled: boolean;
|
|
1139
|
+
}
|
|
1140
|
+
export interface AuraMiniGolfStateController {
|
|
1141
|
+
readonly kind: "aura-mini-golf-state";
|
|
1142
|
+
shoot(options?: {
|
|
1143
|
+
readonly vector?: AuraVec3;
|
|
1144
|
+
readonly power?: number;
|
|
1145
|
+
}): AuraMiniGolfMetrics;
|
|
1146
|
+
step(steps?: number): AuraMiniGolfMetrics;
|
|
1147
|
+
reset(): AuraMiniGolfMetrics;
|
|
1148
|
+
nodes(): readonly AuraSceneNode[];
|
|
1149
|
+
snapshot(): AuraMiniGolfMetrics;
|
|
1150
|
+
}
|
|
1151
|
+
export interface AuraMiniGolfPointerPoint {
|
|
1152
|
+
readonly x: number;
|
|
1153
|
+
readonly y: number;
|
|
1154
|
+
}
|
|
1155
|
+
export interface AuraMiniGolfShotInput {
|
|
1156
|
+
readonly vector: AuraVec3;
|
|
1157
|
+
readonly power: number;
|
|
1158
|
+
}
|
|
1159
|
+
declare function miniGolfPointerShotFromDrag(start: AuraMiniGolfPointerPoint, end: AuraMiniGolfPointerPoint): AuraMiniGolfShotInput;
|
|
1160
|
+
export declare const games: {
|
|
1161
|
+
readonly miniGolf: () => readonly AuraSceneNode[];
|
|
1162
|
+
readonly miniGolfHole: () => readonly AuraSceneNode[];
|
|
1163
|
+
readonly miniGolfCourse: () => readonly AuraSceneNode[];
|
|
1164
|
+
readonly createMiniGolfState: () => AuraMiniGolfStateController;
|
|
1165
|
+
readonly miniGolfPointerShot: typeof miniGolfPointerShotFromDrag;
|
|
1166
|
+
readonly miniGolfScene: () => AuraSceneBuilder;
|
|
1167
|
+
};
|
|
1168
|
+
declare function collectParticleBudgetDiagnostics(nodes: readonly AuraSceneNode[]): AuraParticleBudgetDiagnostics;
|
|
1169
|
+
export declare const particles: {
|
|
1170
|
+
readonly materialModes: () => readonly AuraParticleMaterialMode[];
|
|
1171
|
+
readonly fountain: (options?: {
|
|
1172
|
+
readonly color?: AuraColor;
|
|
1173
|
+
readonly count?: number;
|
|
1174
|
+
readonly emissionRate?: number;
|
|
1175
|
+
}) => readonly AuraSceneNode[];
|
|
1176
|
+
readonly diagnostics: typeof collectParticleBudgetDiagnostics;
|
|
1177
|
+
};
|
|
1178
|
+
declare function validateNeonVisualQA(nodes: readonly AuraSceneNode[]): AuraNeonVisualQAResult;
|
|
1179
|
+
export declare const neon: {
|
|
1180
|
+
readonly tunnel: (options?: AuraNeonTunnelOptions) => readonly AuraSceneNode[];
|
|
1181
|
+
readonly palettes: () => readonly AuraNeonPalettePreset[];
|
|
1182
|
+
readonly bloomPreset: (intensity?: number) => AuraNodeBuilder<AuraEffectNode>;
|
|
1183
|
+
readonly cameraFlythrough: (options?: {
|
|
1184
|
+
readonly seconds?: number;
|
|
1185
|
+
readonly captureFrame?: number;
|
|
1186
|
+
}) => AuraCameraSpec;
|
|
1187
|
+
readonly visualQA: typeof validateNeonVisualQA;
|
|
1188
|
+
};
|
|
1189
|
+
export declare const charts: {
|
|
1190
|
+
readonly barGrid3D: (options?: AuraDataBars3DPrefabOptions) => readonly AuraSceneNode[];
|
|
1191
|
+
readonly dataBars3D: (options?: AuraDataBars3DPrefabOptions) => readonly AuraSceneNode[];
|
|
1192
|
+
readonly configure: (options?: AuraDataBars3DPrefabOptions) => AuraDataBars3DPrefabOptions;
|
|
1193
|
+
readonly withDataset: (dataset: readonly (readonly number[])[], options?: Omit<AuraDataBars3DPrefabOptions, "dataset">) => AuraDataBars3DPrefabOptions;
|
|
1194
|
+
readonly themes: () => readonly AuraChartTheme[];
|
|
1195
|
+
readonly cameraPreset: (preset?: "readable-6x6" | "dashboard" | "hover-detail") => AuraCameraSpec;
|
|
1196
|
+
readonly visualQA: (nodes: readonly AuraSceneNode[]) => AuraChartVisualQAResult;
|
|
1197
|
+
};
|
|
1198
|
+
declare function createPrimitiveHumanoidSkeleton(style?: AuraCharacterStyle): AuraCharacterSkeleton;
|
|
1199
|
+
declare function createProceduralHumanMesh(options?: AuraPrimitiveHumanoidPrefabOptions): AuraProceduralHumanMeshDescriptor;
|
|
1200
|
+
declare function validatePrimitiveHumanoidVisualQA(nodes: readonly AuraSceneNode[]): AuraCharacterVisualQAResult;
|
|
1201
|
+
export declare const character: {
|
|
1202
|
+
readonly builtInHumanoidAsset: () => AuraAssetRef<"model", "humanoid">;
|
|
1203
|
+
readonly skeleton: typeof createPrimitiveHumanoidSkeleton;
|
|
1204
|
+
readonly clips: () => readonly AuraCharacterClip[];
|
|
1205
|
+
readonly proceduralHumanMesh: typeof createProceduralHumanMesh;
|
|
1206
|
+
readonly lowPolyHumanoid: (options?: AuraPrimitiveHumanoidPrefabOptions) => readonly AuraSceneNode[];
|
|
1207
|
+
readonly authoredHumanoid: (options?: AuraPrimitiveHumanoidPrefabOptions) => readonly AuraSceneNode[];
|
|
1208
|
+
readonly primitiveHumanoid: (options?: AuraPrimitiveHumanoidPrefabOptions) => readonly AuraSceneNode[];
|
|
1209
|
+
readonly importedRigRuntime: (options: GLTFSceneAnimationRuntimeOptions) => Promise<GLTFSceneAnimationRuntime>;
|
|
1210
|
+
readonly visualQA: typeof validatePrimitiveHumanoidVisualQA;
|
|
1211
|
+
readonly validatePrimitiveHumanoid: typeof validatePrimitiveHumanoidVisualQA;
|
|
1212
|
+
};
|
|
1213
|
+
declare function cityCameraPreset(preset?: AuraCityCameraPreset, timeOfDay?: CityBlockTimeOfDay): AuraCameraSpec;
|
|
1214
|
+
declare function cityScene(options?: AuraCityBlockOptions & {
|
|
1215
|
+
readonly cameraPreset?: AuraCityCameraPreset;
|
|
1216
|
+
}): AuraSceneBuilder;
|
|
1217
|
+
declare function collectCityInstancingPlan(nodes: readonly AuraSceneNode[]): AuraCityInstancingPlan;
|
|
1218
|
+
declare function validateCityVisualQA(nodes: readonly AuraSceneNode[], options?: {
|
|
1219
|
+
readonly changed?: AuraCityStateChangeEvidence;
|
|
1220
|
+
}): AuraCityVisualQAResult;
|
|
1221
|
+
declare function createCityStateController(options?: AuraCityBlockOptions): AuraCityStateController;
|
|
1222
|
+
export interface AuraCityBrowserRuntimeState {
|
|
1223
|
+
readonly kind: "aura-city-browser-runtime";
|
|
1224
|
+
readonly mounted: true;
|
|
1225
|
+
readonly timeOfDay: CityBlockTimeOfDay;
|
|
1226
|
+
readonly revision: number;
|
|
1227
|
+
readonly changedNodeNames: readonly string[];
|
|
1228
|
+
}
|
|
1229
|
+
export interface AuraCityDayNightToggleOptions {
|
|
1230
|
+
readonly onChange?: (timeOfDay: CityBlockTimeOfDay, state: AuraCityBrowserRuntimeState) => void;
|
|
1231
|
+
}
|
|
1232
|
+
declare function bindCityDayNightToggle(target: AuraUiTarget<HTMLButtonElement>, app: AuraApp, state?: AuraCityStateController, options?: AuraCityDayNightToggleOptions): HTMLButtonElement;
|
|
1233
|
+
export declare const city: {
|
|
1234
|
+
readonly createState: typeof createCityStateController;
|
|
1235
|
+
readonly bindDayNightToggle: typeof bindCityDayNightToggle;
|
|
1236
|
+
readonly block: (options?: AuraCityBlockOptions) => readonly AuraSceneNode[];
|
|
1237
|
+
readonly cityBlock: (options?: AuraCityBlockOptions) => readonly AuraSceneNode[];
|
|
1238
|
+
readonly scene: typeof cityScene;
|
|
1239
|
+
readonly cameraPreset: typeof cityCameraPreset;
|
|
1240
|
+
readonly cameras: (timeOfDay?: CityBlockTimeOfDay) => Record<AuraCityCameraPreset, AuraCameraSpec>;
|
|
1241
|
+
readonly instancing: typeof collectCityInstancingPlan;
|
|
1242
|
+
readonly visualQA: typeof validateCityVisualQA;
|
|
1243
|
+
};
|
|
1244
|
+
declare function productPlacement(asset: AuraAssetRef<"model">): AuraProductPlacement;
|
|
1245
|
+
declare function productScene(asset: AuraAssetRef<"model">, options?: AuraProductViewerOptions): AuraSceneBuilder;
|
|
1246
|
+
declare function productDiagnostics(asset: AuraAssetRef<"model">, nodes: readonly AuraSceneNode[], options?: AuraProductViewerOptions): AuraProductDiagnostics;
|
|
1247
|
+
declare function validateProductVisualQA(nodes: readonly AuraSceneNode[], diagnostics?: AuraProductDiagnostics): AuraProductVisualQAResult;
|
|
1248
|
+
export declare const product: {
|
|
1249
|
+
readonly placement: typeof productPlacement;
|
|
1250
|
+
readonly stage: (options?: {
|
|
1251
|
+
readonly style?: AuraProductStageStyle;
|
|
1252
|
+
}) => readonly AuraSceneNode[];
|
|
1253
|
+
readonly viewer: (asset: AuraAssetRef<"model">, options?: AuraProductViewerOptions) => readonly AuraSceneNode[];
|
|
1254
|
+
readonly scene: typeof productScene;
|
|
1255
|
+
readonly diagnostics: typeof productDiagnostics;
|
|
1256
|
+
readonly visualQA: typeof validateProductVisualQA;
|
|
1257
|
+
};
|
|
1258
|
+
declare function solarCameraPreset(): AuraCameraSpec;
|
|
1259
|
+
declare function solarScene(options?: AuraSolarSystemPrefabOptions): AuraSceneBuilder;
|
|
1260
|
+
declare function validateSolarVisualQA(nodes: readonly AuraSceneNode[]): AuraSolarVisualQAResult;
|
|
1261
|
+
export declare const solar: {
|
|
1262
|
+
readonly system: (options?: AuraSolarSystemPrefabOptions) => readonly AuraSceneNode[];
|
|
1263
|
+
readonly scene: typeof solarScene;
|
|
1264
|
+
readonly cameraPreset: typeof solarCameraPreset;
|
|
1265
|
+
readonly materialPresets: () => readonly AuraSolarPlanetMaterialPreset[];
|
|
1266
|
+
readonly planetMaterial: typeof solarPlanetMaterial;
|
|
1267
|
+
readonly visualQA: typeof validateSolarVisualQA;
|
|
1268
|
+
};
|
|
1269
|
+
export type AuraSceneKitId = "physicsPlayground" | "particleFountain" | "solarSystem" | "neonTunnel" | "dataViz" | "miniGolf" | "materialLab" | "cityBlock" | "humanoidWalk" | "productViewer";
|
|
1270
|
+
export interface AuraSceneKitCustomizeOptions {
|
|
1271
|
+
readonly dataset?: readonly (readonly number[])[];
|
|
1272
|
+
readonly colors?: readonly AuraColor[];
|
|
1273
|
+
readonly camera?: AuraCameraSpec;
|
|
1274
|
+
readonly timeOfDay?: CityBlockTimeOfDay;
|
|
1275
|
+
readonly particleCount?: number;
|
|
1276
|
+
readonly emissionRate?: number;
|
|
1277
|
+
readonly materialSettings?: Partial<AuraMaterialSpec>;
|
|
1278
|
+
readonly animationState?: AuraCharacterClipName | string;
|
|
1279
|
+
readonly asset?: AuraAssetRef<"model">;
|
|
1280
|
+
readonly stageStyle?: AuraProductStageStyle;
|
|
1281
|
+
readonly captureFrame?: number;
|
|
1282
|
+
readonly blocks?: number;
|
|
1283
|
+
readonly cubes?: number;
|
|
1284
|
+
}
|
|
1285
|
+
export interface AuraSceneKitDiagnostics {
|
|
1286
|
+
readonly kind: "aura-scene-kit-diagnostics";
|
|
1287
|
+
readonly id: AuraSceneKitId;
|
|
1288
|
+
readonly nodeCount: number;
|
|
1289
|
+
readonly lightCount: number;
|
|
1290
|
+
readonly effectCount: number;
|
|
1291
|
+
readonly interactionCount: number;
|
|
1292
|
+
readonly uiCount: number;
|
|
1293
|
+
readonly cameraMode: AuraCameraMode;
|
|
1294
|
+
readonly structuralScore?: number;
|
|
1295
|
+
readonly problems: readonly string[];
|
|
1296
|
+
readonly performance: AuraSceneKitPerformanceDiagnostics;
|
|
1297
|
+
}
|
|
1298
|
+
export interface AuraSceneKitPerformanceDiagnostics {
|
|
1299
|
+
readonly kind: "aura-scene-kit-performance-diagnostics";
|
|
1300
|
+
readonly drawCalls: AuraSceneKitDrawCallBudget;
|
|
1301
|
+
readonly bundle: AuraSceneKitBundleBudget;
|
|
1302
|
+
readonly fps: AuraSceneKitFpsBudget;
|
|
1303
|
+
readonly instancing: AuraSceneKitInstancingEvidence;
|
|
1304
|
+
readonly lod: AuraSceneKitLodEvidence;
|
|
1305
|
+
readonly lazyLoading: AuraSceneKitLazyLoadingPlan;
|
|
1306
|
+
}
|
|
1307
|
+
export interface AuraSceneKitDrawCallBudget {
|
|
1308
|
+
readonly kind: "aura-scene-kit-draw-call-budget";
|
|
1309
|
+
readonly maxDrawCalls: number;
|
|
1310
|
+
readonly estimatedDrawCalls: number;
|
|
1311
|
+
readonly pass: boolean;
|
|
1312
|
+
readonly evidence: string;
|
|
1313
|
+
}
|
|
1314
|
+
export interface AuraSceneKitBundleBudget {
|
|
1315
|
+
readonly kind: "aura-scene-kit-bundle-budget";
|
|
1316
|
+
readonly maxGzipBytes: number;
|
|
1317
|
+
readonly estimatedGzipBytes: number;
|
|
1318
|
+
readonly pass: boolean;
|
|
1319
|
+
readonly evidence: string;
|
|
1320
|
+
}
|
|
1321
|
+
export interface AuraSceneKitFpsBudget {
|
|
1322
|
+
readonly kind: "aura-scene-kit-fps-budget";
|
|
1323
|
+
readonly targetP50Fps: number;
|
|
1324
|
+
readonly calibrationRequired: boolean;
|
|
1325
|
+
readonly p50Metric: "metrics.p50Fps";
|
|
1326
|
+
readonly calibrationSource: "benchmark/runner/fps-calibration.mjs";
|
|
1327
|
+
}
|
|
1328
|
+
export interface AuraSceneKitInstancingFamilyEvidence {
|
|
1329
|
+
readonly family: string;
|
|
1330
|
+
readonly instanceCount: number;
|
|
1331
|
+
readonly estimatedDrawCallsWithoutInstancing: number;
|
|
1332
|
+
readonly estimatedDrawCallsWithInstancing: number;
|
|
1333
|
+
readonly evidence: string;
|
|
1334
|
+
}
|
|
1335
|
+
export interface AuraSceneKitInstancingEvidence {
|
|
1336
|
+
readonly kind: "aura-scene-kit-instancing-evidence";
|
|
1337
|
+
readonly applied: boolean;
|
|
1338
|
+
readonly families: readonly AuraSceneKitInstancingFamilyEvidence[];
|
|
1339
|
+
readonly estimatedDrawCallsWithoutInstancing: number;
|
|
1340
|
+
readonly estimatedDrawCallsWithInstancing: number;
|
|
1341
|
+
readonly estimatedDrawCallSavings: number;
|
|
1342
|
+
}
|
|
1343
|
+
export interface AuraSceneKitLodEvidence {
|
|
1344
|
+
readonly kind: "aura-scene-kit-lod-evidence";
|
|
1345
|
+
readonly applied: boolean;
|
|
1346
|
+
readonly strategy: "dense-impostors" | "bounded-static-scene";
|
|
1347
|
+
readonly levels: readonly string[];
|
|
1348
|
+
readonly evidence: string;
|
|
1349
|
+
}
|
|
1350
|
+
export type AuraSceneKitLazySystemId = "physics-backend" | "product-gltf-loader" | "postprocess" | "character-rig";
|
|
1351
|
+
export interface AuraSceneKitLazyLoadingEntry {
|
|
1352
|
+
readonly system: AuraSceneKitLazySystemId;
|
|
1353
|
+
readonly trigger: string;
|
|
1354
|
+
readonly loadedByDefault: false;
|
|
1355
|
+
readonly evidence: string;
|
|
1356
|
+
}
|
|
1357
|
+
export interface AuraSceneKitLazyLoadingPlan {
|
|
1358
|
+
readonly kind: "aura-scene-kit-lazy-loading-plan";
|
|
1359
|
+
readonly systems: readonly AuraSceneKitLazyLoadingEntry[];
|
|
1360
|
+
readonly allOptional: boolean;
|
|
1361
|
+
}
|
|
1362
|
+
export interface AuraLazySystemEvidence {
|
|
1363
|
+
readonly kind: "aura-lazy-system-evidence";
|
|
1364
|
+
readonly system: AuraSceneKitLazySystemId;
|
|
1365
|
+
readonly requested: boolean;
|
|
1366
|
+
readonly loaded: boolean;
|
|
1367
|
+
readonly requestCount: number;
|
|
1368
|
+
readonly loadCount: number;
|
|
1369
|
+
readonly lastReason?: string;
|
|
1370
|
+
readonly lastLoadMs?: number;
|
|
1371
|
+
}
|
|
1372
|
+
export declare function markAuraLazySystemRequested(system: AuraSceneKitLazySystemId, reason?: string): void;
|
|
1373
|
+
export declare function markAuraLazySystemLoaded(system: AuraSceneKitLazySystemId, loadMs?: number): void;
|
|
1374
|
+
export declare function collectAuraLazySystemEvidence(): readonly AuraLazySystemEvidence[];
|
|
1375
|
+
export declare const lazySystems: {
|
|
1376
|
+
readonly markRequested: typeof markAuraLazySystemRequested;
|
|
1377
|
+
readonly markLoaded: typeof markAuraLazySystemLoaded;
|
|
1378
|
+
readonly collect: typeof collectAuraLazySystemEvidence;
|
|
1379
|
+
};
|
|
1380
|
+
export interface AuraSceneKit {
|
|
1381
|
+
readonly kind: "aura-scene-kit";
|
|
1382
|
+
readonly id: AuraSceneKitId;
|
|
1383
|
+
readonly nodes: readonly AuraSceneNode[];
|
|
1384
|
+
readonly camera: AuraCameraSpec;
|
|
1385
|
+
readonly lights: readonly AuraSceneNode[];
|
|
1386
|
+
readonly effects: readonly AuraSceneNode[];
|
|
1387
|
+
readonly interactions: readonly AuraSceneNode[];
|
|
1388
|
+
readonly ui: readonly AuraSceneNode[];
|
|
1389
|
+
readonly diagnostics: AuraSceneKitDiagnostics;
|
|
1390
|
+
readonly evidence: readonly string[];
|
|
1391
|
+
readonly acceptanceEvidence: readonly string[];
|
|
1392
|
+
scene(): AuraSceneBuilder;
|
|
1393
|
+
toAppOptions(): AuraCreateAppOptions;
|
|
1394
|
+
customize(options: AuraSceneKitCustomizeOptions): AuraSceneKit;
|
|
1395
|
+
}
|
|
1396
|
+
export interface AuraSceneKitBudgetDefaults {
|
|
1397
|
+
readonly maxDrawCalls: number;
|
|
1398
|
+
readonly estimatedDrawCalls: number;
|
|
1399
|
+
readonly maxGzipBytes: number;
|
|
1400
|
+
readonly estimatedGzipBytes: number;
|
|
1401
|
+
readonly targetP50Fps: number;
|
|
1402
|
+
readonly evidence: string;
|
|
1403
|
+
}
|
|
1404
|
+
export declare function sceneKitPerformanceBudget(id: AuraSceneKitId): AuraSceneKitBudgetDefaults;
|
|
1405
|
+
export declare const sceneKits: {
|
|
1406
|
+
readonly physicsPlayground: (options?: AuraSceneKitCustomizeOptions) => AuraSceneKit;
|
|
1407
|
+
readonly particleFountain: (options?: AuraSceneKitCustomizeOptions) => AuraSceneKit;
|
|
1408
|
+
readonly solarSystem: (options?: AuraSceneKitCustomizeOptions) => AuraSceneKit;
|
|
1409
|
+
readonly neonTunnel: (options?: AuraSceneKitCustomizeOptions) => AuraSceneKit;
|
|
1410
|
+
readonly dataViz: (options?: AuraSceneKitCustomizeOptions) => AuraSceneKit;
|
|
1411
|
+
readonly miniGolf: (options?: AuraSceneKitCustomizeOptions) => AuraSceneKit;
|
|
1412
|
+
readonly materialLab: (options?: AuraSceneKitCustomizeOptions) => AuraSceneKit;
|
|
1413
|
+
readonly cityBlock: (options?: AuraSceneKitCustomizeOptions) => AuraSceneKit;
|
|
1414
|
+
readonly humanoidWalk: (options?: AuraSceneKitCustomizeOptions) => AuraSceneKit;
|
|
1415
|
+
readonly productViewer: (asset: AuraAssetRef<"model">, options?: Omit<AuraSceneKitCustomizeOptions, "asset">) => AuraSceneKit;
|
|
1416
|
+
};
|
|
1417
|
+
export type AuraPromptSceneType = "product-viewer" | "cinematic-scene" | "mini-game" | "material-studio";
|
|
1418
|
+
export type AuraPromptEffectId = "rain" | "fog" | "bloom" | "particles" | "wet-reflection" | "motion-trail" | "hud";
|
|
1419
|
+
export type AuraPromptCameraPreset = "product-orbit" | "cinematic-dolly" | "game-board" | "material-inspection";
|
|
1420
|
+
export type AuraPromptLightingPreset = "studio-softbox" | "neon-practicals" | "game-readable" | "material-studio";
|
|
1421
|
+
export type AuraPromptInteractionMode = "orbit" | "keyboard" | "pointer";
|
|
1422
|
+
export interface AuraPromptPlanSubject {
|
|
1423
|
+
readonly asset: AuraAssetRef<"model">;
|
|
1424
|
+
readonly label?: string;
|
|
1425
|
+
}
|
|
1426
|
+
export interface AuraPromptPlan {
|
|
1427
|
+
readonly sceneType: AuraPromptSceneType;
|
|
1428
|
+
readonly subject: AuraPromptPlanSubject;
|
|
1429
|
+
readonly style?: string;
|
|
1430
|
+
readonly environment?: string;
|
|
1431
|
+
readonly camera?: {
|
|
1432
|
+
readonly preset: AuraPromptCameraPreset;
|
|
1433
|
+
readonly note?: string;
|
|
1434
|
+
};
|
|
1435
|
+
readonly lighting?: {
|
|
1436
|
+
readonly preset: AuraPromptLightingPreset;
|
|
1437
|
+
readonly note?: string;
|
|
1438
|
+
};
|
|
1439
|
+
readonly effects?: readonly AuraPromptEffectId[];
|
|
1440
|
+
readonly interaction?: AuraPromptInteractionMode;
|
|
1441
|
+
readonly acceptanceCriteria: readonly string[];
|
|
1442
|
+
readonly negativeCriteria?: readonly string[];
|
|
1443
|
+
}
|
|
1444
|
+
export interface AuraPromptPlanReport {
|
|
1445
|
+
readonly schema: "aura3d-prompt-plan-report/1.0";
|
|
1446
|
+
readonly sceneType: AuraPromptSceneType;
|
|
1447
|
+
readonly subjectAssetId: string;
|
|
1448
|
+
readonly recipe: AuraPromptSceneType;
|
|
1449
|
+
readonly cameraPreset: AuraPromptCameraPreset;
|
|
1450
|
+
readonly lightingPreset: AuraPromptLightingPreset;
|
|
1451
|
+
readonly effects: readonly AuraPromptEffectId[];
|
|
1452
|
+
readonly acceptanceCriteria: readonly string[];
|
|
1453
|
+
readonly negativeCriteria: readonly string[];
|
|
1454
|
+
readonly warnings: readonly string[];
|
|
1455
|
+
readonly visualSystems: readonly string[];
|
|
1456
|
+
readonly repairHints: readonly string[];
|
|
1457
|
+
}
|
|
1458
|
+
export interface AuraCompiledPromptPlan {
|
|
1459
|
+
readonly scene: AuraSceneBuilder;
|
|
1460
|
+
readonly report: AuraPromptPlanReport;
|
|
1461
|
+
}
|
|
1462
|
+
export declare function definePromptPlan<const TPlan extends AuraPromptPlan>(plan: TPlan): TPlan;
|
|
1463
|
+
export declare function compilePromptPlan(plan: AuraPromptPlan): AuraCompiledPromptPlan;
|
|
1464
|
+
export declare function promptPlanToScene(plan: AuraPromptPlan): AuraSceneBuilder;
|
|
1465
|
+
export declare const promptRecipes: {
|
|
1466
|
+
readonly "product-viewer": (asset: AuraAssetRef<"model">, plan: AuraPromptPlan) => AuraSceneBuilder;
|
|
1467
|
+
readonly "cinematic-scene": (asset: AuraAssetRef<"model">, plan: AuraPromptPlan) => AuraSceneBuilder;
|
|
1468
|
+
readonly "mini-game": (asset: AuraAssetRef<"model">, plan: AuraPromptPlan) => AuraSceneBuilder;
|
|
1469
|
+
readonly "material-studio": (asset: AuraAssetRef<"model">, plan: AuraPromptPlan) => AuraSceneBuilder;
|
|
1470
|
+
};
|
|
1471
|
+
export type AuraBackend = "webgl2" | "webgpu" | "canvas2d" | "headless";
|
|
1472
|
+
export interface AuraDiagnostics {
|
|
1473
|
+
readonly backend: AuraBackend;
|
|
1474
|
+
readonly fps: number;
|
|
1475
|
+
readonly drawCalls: number;
|
|
1476
|
+
readonly renderSize: readonly [number, number];
|
|
1477
|
+
readonly assets: readonly AuraAssetLoadState[];
|
|
1478
|
+
readonly evidence?: AuraSceneEvidence;
|
|
1479
|
+
readonly renderer?: AuraRendererDiagnosticReport;
|
|
1480
|
+
readonly warnings: readonly string[];
|
|
1481
|
+
readonly errors: readonly string[];
|
|
1482
|
+
}
|
|
1483
|
+
export interface AuraAssetProvenance {
|
|
1484
|
+
readonly source: "typed-aura-assets-manifest" | "unsafe-url" | "inline-definition";
|
|
1485
|
+
readonly id: string;
|
|
1486
|
+
readonly url: string;
|
|
1487
|
+
readonly hash?: string;
|
|
1488
|
+
readonly bounds?: AuraVec3;
|
|
1489
|
+
}
|
|
1490
|
+
export interface AuraAssetLoadState {
|
|
1491
|
+
readonly id: string;
|
|
1492
|
+
readonly type: AuraAssetType;
|
|
1493
|
+
readonly url: string;
|
|
1494
|
+
readonly status: "ready" | "optional-missing" | "error";
|
|
1495
|
+
readonly hash?: string;
|
|
1496
|
+
readonly provenance?: AuraAssetProvenance;
|
|
1497
|
+
readonly message?: string;
|
|
1498
|
+
}
|
|
1499
|
+
export interface AuraSceneEvidence {
|
|
1500
|
+
readonly physics: {
|
|
1501
|
+
readonly worldAttached: boolean;
|
|
1502
|
+
readonly bodies: number;
|
|
1503
|
+
readonly colliders: number;
|
|
1504
|
+
readonly contacts: number;
|
|
1505
|
+
readonly steps: number;
|
|
1506
|
+
readonly resets: number;
|
|
1507
|
+
readonly nodesWithPhysics: number;
|
|
1508
|
+
readonly sensors: number;
|
|
1509
|
+
};
|
|
1510
|
+
readonly interactions: {
|
|
1511
|
+
readonly modes: readonly AuraInteractionNode["mode"][];
|
|
1512
|
+
readonly orbitEnabled: boolean;
|
|
1513
|
+
readonly hoverTargets: readonly string[];
|
|
1514
|
+
readonly dragTargets: readonly string[];
|
|
1515
|
+
readonly impulseTargets: readonly string[];
|
|
1516
|
+
};
|
|
1517
|
+
readonly camera: {
|
|
1518
|
+
readonly mode: AuraCameraMode;
|
|
1519
|
+
readonly orbitEnabled: boolean;
|
|
1520
|
+
readonly followTarget?: string;
|
|
1521
|
+
readonly captureTime?: number;
|
|
1522
|
+
};
|
|
1523
|
+
readonly animation: {
|
|
1524
|
+
readonly animatedNodes: number;
|
|
1525
|
+
readonly turntableEnabled: boolean;
|
|
1526
|
+
readonly walkEnabled: boolean;
|
|
1527
|
+
readonly clips: readonly string[];
|
|
1528
|
+
};
|
|
1529
|
+
readonly labels: {
|
|
1530
|
+
readonly count: number;
|
|
1531
|
+
readonly kinds: readonly AuraLabelNode["label"][];
|
|
1532
|
+
readonly occlusionAware: number;
|
|
1533
|
+
readonly collisionAvoidance: number;
|
|
1534
|
+
};
|
|
1535
|
+
readonly performance: {
|
|
1536
|
+
readonly budgets: readonly AuraHelperPerformanceBudget[];
|
|
1537
|
+
readonly helperCount: number;
|
|
1538
|
+
readonly nodeBudgetExceeded: readonly AuraHelperBudgetId[];
|
|
1539
|
+
};
|
|
1540
|
+
readonly rendering: AuraRendererDiagnosticReport;
|
|
1541
|
+
readonly assets: readonly AuraAssetProvenance[];
|
|
1542
|
+
}
|
|
1543
|
+
export interface AuraApp {
|
|
1544
|
+
readonly canvas?: HTMLCanvasElement;
|
|
1545
|
+
readonly scene: AuraSceneSnapshot;
|
|
1546
|
+
readonly backend: AuraBackend;
|
|
1547
|
+
setScene(scene: AuraSceneBuilder | AuraSceneSnapshot): void;
|
|
1548
|
+
diagnostics(): AuraDiagnostics;
|
|
1549
|
+
screenshot(): AuraScreenshot;
|
|
1550
|
+
dispose(): void;
|
|
1551
|
+
}
|
|
1552
|
+
export interface AuraCreateAppOptions {
|
|
1553
|
+
readonly scene: AuraSceneBuilder | AuraSceneSnapshot;
|
|
1554
|
+
readonly diagnostics?: boolean | AuraDiagnosticsOptions;
|
|
1555
|
+
readonly pixelRatio?: number;
|
|
1556
|
+
readonly autoStart?: boolean;
|
|
1557
|
+
readonly resize?: boolean;
|
|
1558
|
+
}
|
|
1559
|
+
export interface AuraDiagnosticsOptions {
|
|
1560
|
+
readonly overlay?: boolean;
|
|
1561
|
+
readonly assetPanel?: boolean;
|
|
1562
|
+
readonly performancePanel?: boolean;
|
|
1563
|
+
}
|
|
1564
|
+
export interface AuraScreenshot {
|
|
1565
|
+
readonly mimeType: "image/png";
|
|
1566
|
+
readonly dataUrl: string;
|
|
1567
|
+
readonly width: number;
|
|
1568
|
+
readonly height: number;
|
|
1569
|
+
}
|
|
1570
|
+
export type AuraAppTarget = string | HTMLElement | HTMLCanvasElement | null | undefined;
|
|
1571
|
+
export declare class AuraRuntimeError extends Error {
|
|
1572
|
+
readonly code: "missing-canvas" | "missing-asset" | "failed-glb-load" | "unsupported-texture" | "backend-fallback";
|
|
1573
|
+
constructor(code: AuraRuntimeError["code"], message: string);
|
|
1574
|
+
}
|
|
1575
|
+
export declare function createAuraApp(target: AuraAppTarget, options: AuraCreateAppOptions): AuraApp;
|
|
1576
|
+
export declare function createAuraRouteHealthSnapshot(app: AuraApp): {
|
|
1577
|
+
readonly status: "ready" | "error";
|
|
1578
|
+
readonly diagnostics: AuraDiagnostics;
|
|
1579
|
+
readonly scene: AuraSceneSnapshot;
|
|
1580
|
+
};
|
|
1581
|
+
export declare function collectAuraSceneEvidence(sceneValue: AuraSceneBuilder | AuraSceneSnapshot): AuraSceneEvidence;
|
|
1582
|
+
export declare const performance: {
|
|
1583
|
+
readonly helperBudgets: () => readonly AuraHelperPerformanceBudget[];
|
|
1584
|
+
readonly budgetFor: (helper: AuraHelperBudgetId) => AuraHelperPerformanceBudget | undefined;
|
|
1585
|
+
readonly sceneKitBudgets: () => Readonly<Record<AuraSceneKitId, AuraSceneKitBudgetDefaults>>;
|
|
1586
|
+
readonly budgetForSceneKit: (id: AuraSceneKitId) => AuraSceneKitBudgetDefaults;
|
|
1587
|
+
readonly budgetsForScene: (sceneValue: AuraSceneBuilder | AuraSceneSnapshot) => readonly AuraHelperPerformanceBudget[];
|
|
1588
|
+
};
|
|
1589
|
+
export declare function captureAuraScreenshot(target?: HTMLCanvasElement): AuraScreenshot;
|
|
1590
|
+
export declare function createAuraAssetLoadError(asset: AuraAssetRef<"model">, reason: string): AuraRuntimeError;
|
|
1591
|
+
export {};
|
|
1592
|
+
//# sourceMappingURL=index.d.ts.map
|