@needle-tools/engine 5.1.0-canary.30cc545 → 5.1.0-canary.40da791
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/.needle/generated/needle-bindings.gen.d.ts +5 -0
- package/CHANGELOG.md +91 -0
- package/SKILL.md +4 -1
- package/components.needle.json +1 -1
- package/dist/{needle-engine.bundle-d_9mSxN4.js → needle-engine.bundle-Cu2B9CsR.js} +16112 -15269
- package/dist/needle-engine.bundle-ZoVUaB89.umd.cjs +1733 -0
- package/dist/needle-engine.bundle-hBWUJPxm.min.js +1733 -0
- package/dist/needle-engine.d.ts +1527 -384
- package/dist/needle-engine.js +573 -569
- package/dist/needle-engine.min.js +1 -1
- package/dist/needle-engine.umd.cjs +1 -1
- package/dist/three.js +1 -0
- package/dist/three.min.js +21 -21
- package/dist/three.umd.cjs +16 -16
- package/lib/engine/api.d.ts +8 -1
- package/lib/engine/api.js +6 -0
- package/lib/engine/api.js.map +1 -1
- package/lib/engine/codegen/register_types.js +10 -18
- package/lib/engine/codegen/register_types.js.map +1 -1
- package/lib/engine/debug/debug_spatial_console.d.ts +2 -0
- package/lib/engine/debug/debug_spatial_console.js +10 -7
- package/lib/engine/debug/debug_spatial_console.js.map +1 -1
- package/lib/engine/engine_addressables.d.ts +2 -0
- package/lib/engine/engine_addressables.js +6 -3
- package/lib/engine/engine_addressables.js.map +1 -1
- package/lib/engine/engine_audio.d.ts +68 -0
- package/lib/engine/engine_audio.js +172 -0
- package/lib/engine/engine_audio.js.map +1 -1
- package/lib/engine/engine_camera.fit.js +16 -4
- package/lib/engine/engine_camera.fit.js.map +1 -1
- package/lib/engine/engine_components.js +1 -1
- package/lib/engine/engine_components.js.map +1 -1
- package/lib/engine/engine_context.d.ts +41 -27
- package/lib/engine/engine_context.js +57 -30
- package/lib/engine/engine_context.js.map +1 -1
- package/lib/engine/engine_context_eventbus.d.ts +47 -0
- package/lib/engine/engine_context_eventbus.js +47 -0
- package/lib/engine/engine_context_eventbus.js.map +1 -0
- package/lib/engine/engine_disposable.d.ts +172 -0
- package/lib/engine/engine_disposable.js +136 -0
- package/lib/engine/engine_disposable.js.map +1 -0
- package/lib/engine/engine_gameobject.d.ts +1 -10
- package/lib/engine/engine_gameobject.js +22 -120
- package/lib/engine/engine_gameobject.js.map +1 -1
- package/lib/engine/engine_gltf_builtin_components.js +7 -69
- package/lib/engine/engine_gltf_builtin_components.js.map +1 -1
- package/lib/engine/engine_init.js +16 -1
- package/lib/engine/engine_init.js.map +1 -1
- package/lib/engine/engine_input.d.ts +24 -5
- package/lib/engine/engine_input.js +3 -2
- package/lib/engine/engine_input.js.map +1 -1
- package/lib/engine/engine_instantiate_resolve.d.ts +42 -0
- package/lib/engine/engine_instantiate_resolve.js +372 -0
- package/lib/engine/engine_instantiate_resolve.js.map +1 -0
- package/lib/engine/engine_license.d.ts +2 -0
- package/lib/engine/engine_license.js +14 -6
- package/lib/engine/engine_license.js.map +1 -1
- package/lib/engine/engine_lifecycle_functions_internal.js +5 -0
- package/lib/engine/engine_lifecycle_functions_internal.js.map +1 -1
- package/lib/engine/engine_mainloop_utils.js +7 -4
- package/lib/engine/engine_mainloop_utils.js.map +1 -1
- package/lib/engine/engine_networking.d.ts +51 -37
- package/lib/engine/engine_networking.js +132 -82
- package/lib/engine/engine_networking.js.map +1 -1
- package/lib/engine/engine_networking.transport.websocket.d.ts +15 -0
- package/lib/engine/engine_networking.transport.websocket.js +38 -0
- package/lib/engine/engine_networking.transport.websocket.js.map +1 -0
- package/lib/engine/engine_networking_blob.js +1 -1
- package/lib/engine/engine_networking_blob.js.map +1 -1
- package/lib/engine/engine_networking_instantiate.js +2 -2
- package/lib/engine/engine_networking_instantiate.js.map +1 -1
- package/lib/engine/engine_networking_types.d.ts +39 -1
- package/lib/engine/engine_networking_types.js +7 -0
- package/lib/engine/engine_networking_types.js.map +1 -1
- package/lib/engine/engine_physics_rapier.d.ts +21 -3
- package/lib/engine/engine_physics_rapier.js +94 -25
- package/lib/engine/engine_physics_rapier.js.map +1 -1
- package/lib/engine/engine_scenedata.d.ts +13 -17
- package/lib/engine/engine_scenedata.js +58 -31
- package/lib/engine/engine_scenedata.js.map +1 -1
- package/lib/engine/engine_serialization_builtin_serializer.d.ts +10 -16
- package/lib/engine/engine_serialization_builtin_serializer.js +56 -46
- package/lib/engine/engine_serialization_builtin_serializer.js.map +1 -1
- package/lib/engine/engine_serialization_core.d.ts +1 -0
- package/lib/engine/engine_serialization_core.js +7 -0
- package/lib/engine/engine_serialization_core.js.map +1 -1
- package/lib/engine/engine_ssr.d.ts +2 -0
- package/lib/engine/engine_ssr.js +2 -0
- package/lib/engine/engine_ssr.js.map +1 -1
- package/lib/engine/engine_types.d.ts +31 -11
- package/lib/engine/engine_types.js +1 -1
- package/lib/engine/engine_types.js.map +1 -1
- package/lib/engine/engine_util_decorator.js +7 -2
- package/lib/engine/engine_util_decorator.js.map +1 -1
- package/lib/engine/engine_utils.d.ts +1 -1
- package/lib/engine/engine_utils.js +19 -5
- package/lib/engine/engine_utils.js.map +1 -1
- package/lib/engine/physics/workers/mesh-bvh/GenerateMeshBVHWorker.js +1 -1
- package/lib/engine/physics/workers/mesh-bvh/GenerateMeshBVHWorker.js.map +1 -1
- package/lib/engine/webcomponents/jsx.d.ts +51 -0
- package/lib/engine/webcomponents/logo-element.js.map +1 -1
- package/lib/engine/webcomponents/needle menu/needle-menu.d.ts +3 -4
- package/lib/engine/webcomponents/needle menu/needle-menu.js +1 -1
- package/lib/engine/webcomponents/needle menu/needle-menu.js.map +1 -1
- package/lib/engine/webcomponents/needle-button.js.map +1 -1
- package/lib/engine/webcomponents/needle-engine.d.ts +10 -4
- package/lib/engine/webcomponents/needle-engine.js +1 -1
- package/lib/engine/webcomponents/needle-engine.js.map +1 -1
- package/lib/engine/xr/NeedleXRSession.d.ts +3 -2
- package/lib/engine/xr/NeedleXRSession.js +50 -14
- package/lib/engine/xr/NeedleXRSession.js.map +1 -1
- package/lib/engine/xr/events.d.ts +1 -1
- package/lib/engine/xr/events.js.map +1 -1
- package/lib/engine-components/Animation.js +17 -16
- package/lib/engine-components/Animation.js.map +1 -1
- package/lib/engine-components/AnimationBuilder.d.ts +158 -0
- package/lib/engine-components/AnimationBuilder.js +305 -0
- package/lib/engine-components/AnimationBuilder.js.map +1 -0
- package/lib/engine-components/Animator.d.ts +6 -0
- package/lib/engine-components/Animator.js +23 -13
- package/lib/engine-components/Animator.js.map +1 -1
- package/lib/engine-components/AnimatorController.builder.d.ts +191 -0
- package/lib/engine-components/AnimatorController.builder.js +263 -0
- package/lib/engine-components/AnimatorController.builder.js.map +1 -0
- package/lib/engine-components/AnimatorController.d.ts +4 -119
- package/lib/engine-components/AnimatorController.js +37 -233
- package/lib/engine-components/AnimatorController.js.map +1 -1
- package/lib/engine-components/AudioSource.d.ts +19 -3
- package/lib/engine-components/AudioSource.js +121 -68
- package/lib/engine-components/AudioSource.js.map +1 -1
- package/lib/engine-components/Collider.d.ts +18 -9
- package/lib/engine-components/Collider.js +61 -14
- package/lib/engine-components/Collider.js.map +1 -1
- package/lib/engine-components/Component.d.ts +72 -9
- package/lib/engine-components/Component.js +114 -10
- package/lib/engine-components/Component.js.map +1 -1
- package/lib/engine-components/ContactShadows.d.ts +1 -0
- package/lib/engine-components/ContactShadows.js +14 -1
- package/lib/engine-components/ContactShadows.js.map +1 -1
- package/lib/engine-components/DragControls.d.ts +7 -0
- package/lib/engine-components/DragControls.js +19 -7
- package/lib/engine-components/DragControls.js.map +1 -1
- package/lib/engine-components/DropListener.js +3 -0
- package/lib/engine-components/DropListener.js.map +1 -1
- package/lib/engine-components/EventList.d.ts +31 -9
- package/lib/engine-components/EventList.js +37 -76
- package/lib/engine-components/EventList.js.map +1 -1
- package/lib/engine-components/Joints.d.ts +4 -2
- package/lib/engine-components/Joints.js +19 -3
- package/lib/engine-components/Joints.js.map +1 -1
- package/lib/engine-components/Light.d.ts +6 -8
- package/lib/engine-components/Light.js +48 -27
- package/lib/engine-components/Light.js.map +1 -1
- package/lib/engine-components/Networking.d.ts +1 -1
- package/lib/engine-components/Networking.js +1 -1
- package/lib/engine-components/OrbitControls.d.ts +0 -2
- package/lib/engine-components/OrbitControls.js +30 -12
- package/lib/engine-components/OrbitControls.js.map +1 -1
- package/lib/engine-components/ReflectionProbe.js +2 -0
- package/lib/engine-components/ReflectionProbe.js.map +1 -1
- package/lib/engine-components/RigidBody.d.ts +12 -4
- package/lib/engine-components/RigidBody.js +18 -4
- package/lib/engine-components/RigidBody.js.map +1 -1
- package/lib/engine-components/SceneSwitcher.js +3 -0
- package/lib/engine-components/SceneSwitcher.js.map +1 -1
- package/lib/engine-components/SeeThrough.js +2 -2
- package/lib/engine-components/SeeThrough.js.map +1 -1
- package/lib/engine-components/api.d.ts +2 -1
- package/lib/engine-components/api.js +2 -1
- package/lib/engine-components/api.js.map +1 -1
- package/lib/engine-components/codegen/components.d.ts +7 -13
- package/lib/engine-components/codegen/components.js +7 -13
- package/lib/engine-components/codegen/components.js.map +1 -1
- package/lib/engine-components/postprocessing/Effects/Tonemapping.utils.d.ts +1 -1
- package/lib/engine-components/postprocessing/VolumeParameter.d.ts +2 -0
- package/lib/engine-components/postprocessing/VolumeParameter.js +4 -1
- package/lib/engine-components/postprocessing/VolumeParameter.js.map +1 -1
- package/lib/engine-components/timeline/PlayableDirector.d.ts +21 -11
- package/lib/engine-components/timeline/PlayableDirector.js +75 -67
- package/lib/engine-components/timeline/PlayableDirector.js.map +1 -1
- package/lib/engine-components/timeline/SignalAsset.d.ts +3 -1
- package/lib/engine-components/timeline/SignalAsset.js +1 -0
- package/lib/engine-components/timeline/SignalAsset.js.map +1 -1
- package/lib/engine-components/timeline/TimelineBuilder.d.ts +413 -0
- package/lib/engine-components/timeline/TimelineBuilder.js +506 -0
- package/lib/engine-components/timeline/TimelineBuilder.js.map +1 -0
- package/lib/engine-components/timeline/TimelineModels.d.ts +2 -1
- package/lib/engine-components/timeline/TimelineModels.js +3 -0
- package/lib/engine-components/timeline/TimelineModels.js.map +1 -1
- package/lib/engine-components/timeline/TimelineTracks.d.ts +37 -6
- package/lib/engine-components/timeline/TimelineTracks.js +92 -26
- package/lib/engine-components/timeline/TimelineTracks.js.map +1 -1
- package/lib/engine-components/timeline/index.d.ts +2 -1
- package/lib/engine-components/timeline/index.js +2 -0
- package/lib/engine-components/timeline/index.js.map +1 -1
- package/lib/engine-components/ui/Canvas.d.ts +1 -1
- package/lib/engine-components/ui/Canvas.js +2 -8
- package/lib/engine-components/ui/Canvas.js.map +1 -1
- package/lib/engine-components/ui/Text.d.ts +1 -0
- package/lib/engine-components/ui/Text.js +10 -7
- package/lib/engine-components/ui/Text.js.map +1 -1
- package/lib/engine-components/web/CursorFollow.d.ts +0 -1
- package/lib/engine-components/web/CursorFollow.js +21 -13
- package/lib/engine-components/web/CursorFollow.js.map +1 -1
- package/lib/engine-components/webxr/WebXRImageTracking.js +4 -0
- package/lib/engine-components/webxr/WebXRImageTracking.js.map +1 -1
- package/lib/needle-engine.d.ts +2 -0
- package/lib/needle-engine.js +2 -0
- package/lib/needle-engine.js.map +1 -1
- package/package.json +3 -83
- package/plugins/common/license.js +5 -2
- package/plugins/common/worker.js +9 -4
- package/plugins/dts-generator/dts.codegen.js +255 -50
- package/plugins/dts-generator/dts.scan.js +37 -9
- package/plugins/dts-generator/dts.writer.js +1 -1
- package/plugins/dts-generator/glb.discovery.js +140 -23
- package/plugins/dts-generator/glb.extractor.js +48 -8
- package/plugins/dts-generator/glb.reader.js +80 -27
- package/plugins/dts-generator/index.js +1 -1
- package/plugins/types/needle-bindings.d.ts +25 -14
- package/plugins/types/userconfig.d.ts +12 -0
- package/plugins/vite/asap.js +18 -9
- package/plugins/vite/dependencies.js +29 -10
- package/plugins/vite/dependency-watcher.d.ts +2 -2
- package/plugins/vite/dependency-watcher.js +5 -6
- package/plugins/vite/drop.d.ts +2 -2
- package/plugins/vite/drop.js +3 -4
- package/plugins/vite/dts-generator.d.ts +2 -2
- package/plugins/vite/dts-generator.js +43 -9
- package/plugins/vite/editor-connection.js +3 -3
- package/plugins/vite/index.d.ts +9 -3
- package/plugins/vite/index.js +23 -10
- package/plugins/vite/license.js +19 -1
- package/plugins/vite/local-files-core.js +3 -3
- package/plugins/vite/local-files-utils.d.ts +3 -1
- package/plugins/vite/local-files-utils.js +29 -5
- package/plugins/vite/meta.js +4 -2
- package/plugins/vite/poster.d.ts +2 -2
- package/plugins/vite/poster.js +3 -5
- package/plugins/vite/reload.d.ts +2 -2
- package/plugins/vite/reload.js +23 -23
- package/plugins/vite/server.js +2 -1
- package/src/engine/api.ts +11 -1
- package/src/engine/codegen/register_types.ts +10 -18
- package/src/engine/debug/debug_spatial_console.ts +10 -7
- package/src/engine/engine_addressables.ts +6 -3
- package/src/engine/engine_audio.ts +184 -0
- package/src/engine/engine_camera.fit.ts +15 -4
- package/src/engine/engine_components.ts +1 -1
- package/src/engine/engine_context.ts +67 -37
- package/src/engine/engine_context_eventbus.ts +73 -0
- package/src/engine/engine_disposable.ts +214 -0
- package/src/engine/engine_gameobject.ts +54 -159
- package/src/engine/engine_gltf_builtin_components.ts +7 -76
- package/src/engine/engine_init.ts +15 -1
- package/src/engine/engine_input.ts +28 -7
- package/src/engine/engine_instantiate_resolve.ts +407 -0
- package/src/engine/engine_license.ts +12 -10
- package/src/engine/engine_lifecycle_functions_internal.ts +7 -0
- package/src/engine/engine_mainloop_utils.ts +7 -4
- package/src/engine/engine_networking.transport.websocket.ts +45 -0
- package/src/engine/engine_networking.ts +161 -137
- package/src/engine/engine_networking_blob.ts +1 -1
- package/src/engine/engine_networking_instantiate.ts +2 -2
- package/src/engine/engine_networking_types.ts +41 -1
- package/src/engine/engine_physics_rapier.ts +102 -33
- package/src/engine/engine_scenedata.ts +56 -30
- package/src/engine/engine_serialization_builtin_serializer.ts +64 -52
- package/src/engine/engine_serialization_core.ts +9 -0
- package/src/engine/engine_ssr.ts +3 -0
- package/src/engine/engine_types.ts +48 -27
- package/src/engine/engine_util_decorator.ts +7 -2
- package/src/engine/engine_utils.ts +16 -5
- package/src/engine/physics/workers/mesh-bvh/GenerateMeshBVHWorker.js +1 -1
- package/src/engine/webcomponents/jsx.d.ts +51 -0
- package/src/engine/webcomponents/logo-element.ts +1 -0
- package/src/engine/webcomponents/needle menu/needle-menu.ts +3 -2
- package/src/engine/webcomponents/needle-button.ts +1 -0
- package/src/engine/webcomponents/needle-engine.ts +11 -4
- package/src/engine/xr/NeedleXRSession.ts +48 -13
- package/src/engine/xr/events.ts +1 -1
- package/src/engine-components/Animation.ts +19 -16
- package/src/engine-components/AnimationBuilder.ts +472 -0
- package/src/engine-components/Animator.ts +24 -12
- package/src/engine-components/AnimatorController.builder.ts +387 -0
- package/src/engine-components/AnimatorController.ts +24 -292
- package/src/engine-components/AudioSource.ts +130 -79
- package/src/engine-components/Collider.ts +66 -18
- package/src/engine-components/Component.ts +118 -20
- package/src/engine-components/ContactShadows.ts +15 -1
- package/src/engine-components/DragControls.ts +18 -11
- package/src/engine-components/DropListener.ts +3 -0
- package/src/engine-components/EventList.ts +45 -83
- package/src/engine-components/Joints.ts +20 -4
- package/src/engine-components/Light.ts +49 -27
- package/src/engine-components/Networking.ts +1 -1
- package/src/engine-components/OrbitControls.ts +34 -14
- package/src/engine-components/ReflectionProbe.ts +2 -0
- package/src/engine-components/RigidBody.ts +18 -4
- package/src/engine-components/SceneSwitcher.ts +3 -0
- package/src/engine-components/SeeThrough.ts +2 -2
- package/src/engine-components/api.ts +2 -1
- package/src/engine-components/codegen/components.ts +7 -13
- package/src/engine-components/postprocessing/VolumeParameter.ts +4 -1
- package/src/engine-components/timeline/PlayableDirector.ts +83 -81
- package/src/engine-components/timeline/SignalAsset.ts +4 -1
- package/src/engine-components/timeline/TimelineBuilder.ts +824 -0
- package/src/engine-components/timeline/TimelineModels.ts +5 -1
- package/src/engine-components/timeline/TimelineTracks.ts +96 -27
- package/src/engine-components/timeline/index.ts +2 -1
- package/src/engine-components/ui/Canvas.ts +2 -8
- package/src/engine-components/ui/Text.ts +12 -8
- package/src/engine-components/web/CursorFollow.ts +21 -14
- package/src/engine-components/webxr/WebXRImageTracking.ts +2 -0
- package/src/needle-engine.ts +3 -0
- package/dist/needle-engine.bundle-BMlLSACE.umd.cjs +0 -1732
- package/dist/needle-engine.bundle-BXPPQRer.min.js +0 -1732
- package/lib/engine-components/AvatarLoader.d.ts +0 -80
- package/lib/engine-components/AvatarLoader.js +0 -232
- package/lib/engine-components/AvatarLoader.js.map +0 -1
- package/lib/engine-components/avatar/AvatarBlink_Simple.d.ts +0 -11
- package/lib/engine-components/avatar/AvatarBlink_Simple.js +0 -77
- package/lib/engine-components/avatar/AvatarBlink_Simple.js.map +0 -1
- package/lib/engine-components/avatar/AvatarEyeLook_Rotation.d.ts +0 -14
- package/lib/engine-components/avatar/AvatarEyeLook_Rotation.js +0 -69
- package/lib/engine-components/avatar/AvatarEyeLook_Rotation.js.map +0 -1
- package/lib/engine-components/avatar/Avatar_Brain_LookAt.d.ts +0 -29
- package/lib/engine-components/avatar/Avatar_Brain_LookAt.js +0 -122
- package/lib/engine-components/avatar/Avatar_Brain_LookAt.js.map +0 -1
- package/lib/engine-components/avatar/Avatar_MouthShapes.d.ts +0 -15
- package/lib/engine-components/avatar/Avatar_MouthShapes.js +0 -80
- package/lib/engine-components/avatar/Avatar_MouthShapes.js.map +0 -1
- package/lib/engine-components/avatar/Avatar_MustacheShake.d.ts +0 -9
- package/lib/engine-components/avatar/Avatar_MustacheShake.js +0 -30
- package/lib/engine-components/avatar/Avatar_MustacheShake.js.map +0 -1
- package/src/engine-components/AvatarLoader.ts +0 -264
- package/src/engine-components/avatar/AvatarBlink_Simple.ts +0 -70
- package/src/engine-components/avatar/AvatarEyeLook_Rotation.ts +0 -64
- package/src/engine-components/avatar/Avatar_Brain_LookAt.ts +0 -140
- package/src/engine-components/avatar/Avatar_MouthShapes.ts +0 -84
- package/src/engine-components/avatar/Avatar_MustacheShake.ts +0 -32
package/dist/needle-engine.js
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { initEngine as i, GameObject as r, onClear as a, onDestroy as s, onInitialized as l, onAfterRender as d, onBeforeRender as c, onUpdate as m, onStart as p, TypeStore as g, loadAsset as
|
|
2
|
-
import { $componentName as T, $physicsKey as b, ActionBuilder as M, ActionCollection as I, ActionModel as D, Addressables as O, AlignmentConstraint as x, AmbientMode as k, Animation as L, AnimationCurve as B, AnimationExtension as N, AnimationTrackHandler as F, AnimationUtils as w, Animator as U, AnimatorConditionMode as W, AnimatorController as G, AnimatorControllerBuilder as H, AnimatorControllerParameterType as X, AnimatorStateInfo as z, Antialiasing as V, Application as _, AssetDatabase as j, AssetReference as Z, Attractor as K, AudioExtension as Q, AudioListener as $, AudioSource as Y, AudioTrackHandler as J, Avatar as q, AvatarBlink_Simple as ee, AvatarEyeLook_Rotation as te, AvatarLoader as oe, AvatarMarker as re, AvatarModel as ne, Avatar_Brain_LookAt as ie, Avatar_MouthShapes as ae, Avatar_MustacheShake as se, Avatar_POI as le, Axes as de, AxesHelper as ce, BUILD_TIME as me, BaseUIComponent as pe, BasicIKConstraint as ge, BehaviorExtension as Se, BehaviorModel as ue, Component$1 as Ce, BlobStorage as ye, BloomEffect as Ee, BoxCollider as Re, BoxGizmo as he, BoxHelperComponent as fe, Button as ve, ButtonsFactory as Pe, CallDirection as Ae, CallInfo as Te, Camera as be, CameraTargetReachedEvent as Me, Canvas as Ie, CanvasGroup as De, CapsuleCollider as Oe, ChangeMaterialOnClick as xe, ChangeTransformOnClick as ke, CharacterController as Le, CharacterControllerInput as Be, ChromaticAberration as Ne, CircularBuffer as Fe, ClearFlags as we, ClickThrough as Ue, ClipExtrapolation as We, Collider as Ge, Collision as He, CollisionDetectionMode as Xe, ColorAdjustments as ze, ColorBySpeedModule as Ve, ColorOverLifetimeModule as _e, Component$1 as je, ComponentLifecycleEvents as Ze, ConnectionEvents as Ke, ContactPoint as Qe, ContactShadows as $e, ContextArgs as Ye, ContextEvent as Je, ContextRegistry as qe, ControlTrackHandler as et, CursorFollow as tt, CustomBranding as ot, CustomShader as rt, DefaultReflectionMode as nt, Deletable as it, DeleteBox as at, DepthOfField as st, DeviceFlag as lt, DeviceUtilities as dt, DocumentExtension as ct, DragControls as mt, DragMode as pt, DropListener as gt, Duplicatable as St, EffectWrapper as ut, EmissionModule as Ct, EmphasizeOnClick as yt, EngineLoadingView as Et, EnvironmentScene as Rt, EventList as ht, EventListEvent as ft, EventSystem as vt, EventTrigger as Pt, FieldWithDefault as At, FileReference as Tt, FileReferenceSerializer as bt, FileSpawnModel as Mt, File_Event as It, FixedJoint as Dt, Fog as Ot, FontStyle as xt, FrameEvent as kt, GENERATOR as Lt, Gizmos as Bt, GltfExport as Nt, GltfExportBox as Ft, Gradient as wt, Graphic as Ut, GraphicRaycaster as Wt, Graphics as Gt, GridHelper as Ht, GridLayoutGroup as Xt, GroundProjectedEnv as zt, GroupActionModel as Vt, HideFlags as _t, HideOnStart as jt, HingeJoint as Zt, HorizontalLayoutGroup as Kt, HorizontalWrapMode as Qt, HostData as $t, HoverAnimation as Yt, Image as Jt, ImageReference as qt, ImageReferenceSerializer as eo, InheritVelocityModule as to, Input as oo, InputEventQueue as ro, InputEvents as no, InputField as io, InstanceHandle as ao, InstancingHandler as so, InstancingUtil as lo, InstantiateEvent as co, InstantiateIdProvider as mo, InstantiateOptions as po, Interactable as go, InternalScreenshotUtils as So, JoinedRoomResponse as uo, KeyEventArgs as Co, Keyframe as yo, LODGroup as Eo, LODModel as Ro, LeftRoomResponse as ho, Light as fo, LightData as vo, LimitVelocityOverLifetimeModule as Po, LoadingElementOptions as Ao, LogStats as To, LogType as bo, LookAt as Mo, LookAtConstraint as Io, MainModule as Do, MarkerTrackHandler as Oo, MarkerType as xo, MaskableGraphic as ko, MaterialPropertyBlock as Lo, MaterialX as Bo, Mathf as No, MeshCollider as Fo, MeshRenderer as wo, MinMaxCurve as Uo, MinMaxGradient as Wo, NEEDLE_ENGINE_FEATURE_FLAGS as Go, MODULES as Ho, NEKeyboardEvent as Xo, NEPointerEvent as zo, NeedleButtonElement as Vo, ContextRegistry as _o, NeedleEngineModelLoader as jo, NeedleEngineWebComponent as Zo, NeedleMenu as Ko, NeedlePatchesKey as Qo, USDZExporter as $o, NeedleXRController as Yo, NeedleXRSync as Jo, NeedleXRUtils as qo, NestedGltf as er, NetworkConnection as tr, NetworkedStreamEvents as or, NetworkedStreams as rr, Networking as nr, NewInstanceModel as ir, NoiseModule as ar, ObjectRaycaster as sr, ObjectUtils as lr, OffsetConstraint as dr, OneEuroFilter as cr, OneEuroFilterXYZ as mr, OpenURL as pr, OrbitControls as gr, Outline as Sr, OwnershipEvent as ur, OwnershipModel as Cr, PUBLIC_KEY as yr, Padding as Er, ParticleBurst as Rr, ParticleSubEmitter as hr, ParticleSystem as fr, ParticleSystemBaseBehaviour as vr, ParticleSystemRenderer as Pr, ParticleSystemShapeType as Ar, PeerHandle as Tr, PeerNetworking as br, Physics as Mr, PhysicsExtension as Ir, PhysicsMaterialCombine as Dr, PixelationEffect as Or, PlayAnimationOnClick as xr, PlayAudioOnClick as kr, PlayableDirector as Lr, PlayerColor as Br, PlayerState as Nr, PlayerStateEvent as Fr, PlayerSync as wr, PlayerView as Ur, PlayerViewManager as Wr, PointerEventData as Gr, PointerType as Hr, PostProcessing as Xr, PostProcessingEffect as zr, PostProcessingEffectOrder as Vr, PostProcessingHandler as _r, Volume as jr, Prefabs as Zr, PreliminaryAction as Kr, PreliminaryTrigger as Qr, PreviewHelper as $r, PrimitiveType as Yr, Progress as Jr, PromiseAllWithErrors as qr, PromiseErrorResult as en, RGBAColor as tn, RapierPhysics as on, RawImage as rn, RaycastOptions as nn, Rect as an, RectTransform as sn, ReflectionProbe as ln, RegisteredAnimationInfo as dn, RemoteSkybox as cn, RenderTexture as mn, RenderTextureSerializer as pn, Renderer as gn, RendererData as Sn, RendererLightmap as un, Rigidbody as Cn, RigidbodyConstraints as yn, RoomEvents as En, RotationBySpeedModule as Rn, RotationOverLifetimeModule as hn, SceneLightSettings as fn, SceneSwitcher as vn, ScreenCapture as Pn, ScreenSpaceAmbientOcclusion as An, ScreenSpaceAmbientOcclusionN8 as Tn, ScrollFollow as bn, SeeThrough as Mn, SendQueue as In, SerializationContext as Dn, SetActiveOnClick as On, ShadowCatcher as xn, ShapeModule as kn, ShapeOverlapResult as Ln, SharpeningEffect as Bn, SignalAsset as Nn, SignalReceiver as Fn, SignalReceiverEvent as wn, SignalTrackHandler as Un, Size as Wn, SizeBySpeedModule as Gn, SizeOverLifetimeModule as Hn, SkinnedMeshRenderer as Xn, SmoothFollow as zn, SpatialGrabRaycaster as Vn, SpatialHtml as _n, SpatialTrigger as jn, SpatialTriggerReceiver as Zn, SpectatorCamera as Kn, SphereCollider as Qn, SphereIntersection as $n, SplineContainer as Yn, SplineData as Jn, SplineUtils as qn, SplineWalker as ei, Sprite as ti, SpriteData as oi, SpriteRenderer as ri, SpriteSheet as ni, StateMachineBehaviour as ii, StreamEndedEvent as ai, StreamReceivedEvent as si, SubEmitterSystem as li, SyncedCamera as di, SyncedRoom as ci, SyncedTransform as mi, TapGestureTrigger as pi, TeleportTarget as gi, TestRunner as Si, TestSimulateUserData as ui, Text as Ci, TextAnchor as yi, TextBuilder as Ei, TextExtension as Ri, TextureSheetAnimationModule as hi, TiltShiftEffect as fi, Time as vi, ToneMappingEffect as Pi, TrackHandler as Ai, TrackType as Ti, TrailModule as bi, TransformData as Mi, TransformGizmo as Ii, TriggerBuilder as Di, TriggerModel as Oi, UIRaycastUtils as xi, UIRootComponent as ki, USDDocument as Li, USDObject as Bi, USDWriter as Ni, USDZExporter$1 as Fi, USDZText as wi, USDZUIExtension as Ui, UriSerializer as Wi, UsageMarker as Gi, UserJoinedOrLeftRoomModel as Hi, VariantAction as Xi, VelocityOverLifetimeModule as zi, VerticalLayoutGroup as Vi, VerticalWrapMode as _i, VideoPlayer as ji, ViewBox as Zi, ViewDevice as Ki, Vignette as Qi, VisibilityAction as $i, Voip as Yi, Volume as Ji, VolumeParameter as qi, VolumeProfile as ea, WaitForFrames as ta, WaitForPromise as oa, WaitForSeconds as ra, Watch as na, WebARCameraBackground as ia, WebARSessionRoot as aa, WebXR as sa, WebXRButtonFactory as la, WebXRImageTracking as da, WebXRImageTrackingModel as ca, WebXRPlaneTracking as ma, WebXRTrackedImage as pa, XRControllerFollow as ga, XRControllerModel as Sa, XRControllerMovement as ua, XRFlag as Ca, XRRig as ya, XRState as Ea, XRStateFlag as Ra, __Ignore as ha, __internalNotifyObjectDestroyed as fa, activeInHierarchyFieldName as va, addAttributeChangeCallback as Pa, addComponent as Aa, addCustomExtensionPlugin as Ta, addNewComponent as ba, addPatch as Ma, apply as Ia, applyHMRChanges as Da, applyPrototypeExtensions as Oa, beginListenDestroy as xa, beginListenInstantiate as ka, binaryIdentifierCasts as La, build_scene_functions as Ba, builtinComponentKeyName as Na, calculateProgress01 as Fa, clearMessages as wa, clearMessages as Ua, colorSerializer as Wa, compareAssociation as Ga, componentSerializer as Ha, copyTexture as Xa, createMotion as za, debugNet as Va, debugOwner as _a, decompressGpuTexture as ja, deepClone as Za, delay as Ka, delayForFrames as Qa, deserializeObject as $a, destroy as Ya, destroyComponentInstance as Ja, determineMimeTypeFromExtension as qa, disposeObjectResources as es, disposeStream as ts, editorGuidKeyName as os, enableSpatialConsole as rs, euler as ns, eventListSerializer as is, exportAsGLTF as as, findByGuid as ss, findObjectOfType as ls, findObjectsOfType as ds, findResourceUsers as cs, fitCamera as ms, fitObjectIntoVolume as ps, foreachComponent as gs, foreachComponentEnumerator as Ss, forward as us, generateQRCode as Cs, generateSeed as ys, getBoundingBox as Es, getCameraController as Rs, getComponent as hs, getComponentInChildren as fs, getComponentInParent as vs, getComponents as Ps, getComponentsInChildren as As, getComponentsInParent as Ts, getFormattedDate as bs, getIconElement as Ms, getIconTexture as Is, getLoader as Ds, getOrAddComponent as Os, getParam as xs, getParentHierarchyPath as ks, getPath as Ls, getPeerOptions as Bs, getPeerjsInstance as Ns, getResourceUserCount as Fs, getSceneData as ws, getTempColor as Us, getTempQuaternion as Ws, getTempVector as Gs, getUrlParams as Hs, getVisibleInCustomShadowRendering as Xs, getWorldDirection as zs, getWorldEuler as Vs, getWorldPosition as _s, getWorldQuaternion as js, getWorldRotation as Zs, getWorldScale as Ks, hasCommercialLicense as Qs, hasIndieLicense as $s, hasPointerEventComponent as Ys, hasProLicense as Js, hideDebugConsole as qs, imageToCanvas as el, initPhysics as tl, instantiate as ol, invokeLoadedImportPluginHooks as rl, invokeXRSessionEnd as nl, invokeXRSessionStart as il, isActiveInHierarchy as al, isActiveSelf as sl, isAndroidDevice as ll, isAnimationAction as dl, isComponent as cl, isDebugMode as ml, isDesktop as pl, isDestroyed as gl, isDevEnvironment as Sl, isDisposed as ul, isExporting as Cl, isGLTFModel as yl, isHostedOnGlitch as El, isHotReloadEnabled as Rl, isHotReloading as hl, isIPad as fl, isIconElement as vl, isLocalNetwork as Pl, isMacOS as Al, isMobileDevice as Tl, isMozillaXR as bl, isQuest as Ml, isResourceTrackingEnabled as Il, isSafari as Dl, isUsingInstancing as Ol, isiOS as xl, isiPad as kl, loadPMREM as Ll, loadSync as Bl, logHierarchy as Nl, lookAtInverse as Fl, lookAtObject as wl, lookAtScreenPoint as Ul, makeId as Wl, makeIdFromRandomWords as Gl, makeNameSafe as Hl, markAsInstancedRendered as Xl, microphonePermissionsGranted as zl, nameof as Vl, nameofFactory as _l, needle as jl, objectSerializer as Zl, offBeforeXRSession as Kl, offXRSessionEnd as Ql, offXRSessionStart as $l, onBeforeXRSession as Yl, onSyncDestroy as Jl, onSyncInstantiate as ql, onXRSessionEnd as ed, onXRSessionStart as td, parseSync as od, placeOnSurface as rd, postprocessFBXMaterials as nd, prefix as id, pushState as ad, randomNumber as sd, registerBinaryType as ld, registerComponent as dd, registerComponentExtension as cd, registerCustomEffectType as md, registerExportExtensions as pd, registerExtensions as gd, registerHotReloadType as Sd, registerLoader as ud, registerPrefabProvider as Cd, registerPrototypeExtensions as yd, registerType as Ed, relativePathPrefix as Rd, removeAttributeChangeCallback as hd, removeComponent as fd, removeCustomImportExtensionType as vd, removePatch as Pd, resolveUrl as Ad, sanitizeString as Td, saveImage as bd, screenshot as Md, screenshot2 as Id, sendDestroyed as Dd, serializable as Od, serializeObject as xd, serializeable as kd, setActive as Ld, setAllowBalloonMessages as Bd, setAllowOverlayMessages as Nd, setAutoFitEnabled as Fd, setCameraController as wd, setDestroyed as Ud, setDevEnvironment as Wd, setDisposable as Gd, setDontDestroy as Hd, setOrAddParamsToUrl as Xd, setParam as zd, setParamWithoutReload as Vd, setPeerOptions as _d, setResourceTrackingEnabled as jd, setState as Zd, setVisibleInCustomShadowRendering as Kd, setWorldEuler as Qd, setWorldPosition as $d, setWorldPositionXYZ as Yd, setWorldQuaternion as Jd, setWorldQuaternionXYZW as qd, setWorldRotation as ec, setWorldRotationXYZ as tc, setWorldScale as oc, showBalloonError as rc, showBalloonMessage as nc, showBalloonWarning as ic, showDebugConsole as ac, slerp as sc, syncDestroy as lc, syncField as dc, syncInstantiate as cc, textureToCanvas as mc, toSourceId as pc, tryCastBinary as gc, tryDetermineMimetypeFromBinary as Sc, tryDetermineMimetypeFromURL as uc, tryFindObject as Cc, tryGetGuid as yc, unregisterHotReloadType as Ec, unregisterPrefabProvider as Rc, unwatchWrite as hc, useForAutoFit as fc, validate as vc, watchWrite as Pc } from "./needle-engine.bundle-d_9mSxN4.js";
|
|
1
|
+
import { initEngine as i, GameObject as r, onClear as a, onDestroy as s, onInitialized as l, onAfterRender as d, onBeforeRender as c, onUpdate as m, onStart as p, TypeStore as g, loadAsset as u, NeedleXRSession as S, Context as C, VERSION as y, Component as E, Components as R } from "./needle-engine.bundle-Cu2B9CsR.js";
|
|
2
|
+
import { $componentName as b, $physicsKey as A, ActionBuilder as M, ActionCollection as D, ActionModel as I, Addressables as x, AlignmentConstraint as O, AmbientMode as k, Animation as B, AnimationBuilder as L, AnimationCurve as N, AnimationExtension as F, AnimationUtils as w, Animator as U, AnimatorConditionMode as W, AnimatorController as G, AnimatorControllerBuilder as H, AnimatorControllerParameterType as X, AnimatorStateInfo as z, Antialiasing as V, Application as j, AssetDatabase as _, AssetReference as Z, Attractor as K, AudioClip as Q, AudioExtension as $, AudioListener as Y, AudioSource as J, Avatar as q, AvatarMarker as ee, Axes as te, AxesHelper as oe, BUILD_TIME as re, BaseUIComponent as ne, BasicIKConstraint as ie, BehaviorExtension as ae, BehaviorModel as se, Component$1 as le, BlobStorage as de, BloomEffect as ce, BoxCollider as me, BoxGizmo as pe, BoxHelperComponent as ge, Button as ue, ButtonsFactory as Se, CallDirection as Ce, CallInfo as ye, Camera as Ee, CameraTargetReachedEvent as Re, Canvas as he, CanvasGroup as fe, CapsuleCollider as Pe, ChangeMaterialOnClick as Te, ChangeTransformOnClick as ve, CharacterController as be, CharacterControllerInput as Ae, ChromaticAberration as Me, CircularBuffer as De, ClearFlags as Ie, ClickThrough as xe, ClipExtrapolation as Oe, Collider as ke, Collision as Be, CollisionDetectionMode as Le, ColorAdjustments as Ne, ColorBySpeedModule as Fe, ColorOverLifetimeModule as we, Component$1 as Ue, ComponentLifecycleEvents as We, ConnectionEvents as Ge, ContactPoint as He, ContactShadows as Xe, ContextArgs as ze, ContextEvent as Ve, ContextRegistry as je, CursorFollow as _e, CustomBranding as Ze, CustomShader as Ke, DefaultReflectionMode as Qe, Deletable as $e, DeleteBox as Ye, DepthOfField as Je, DeviceFlag as qe, DeviceUtilities as et, DirectorWrapMode as tt, DisposableStore as ot, DocumentExtension as rt, DragControls as nt, DragMode as it, DropListener as at, Duplicatable as st, EffectWrapper as lt, EmissionModule as dt, EmphasizeOnClick as ct, EngineLoadingView as mt, EnvironmentScene as pt, EventBus as gt, EventList as ut, EventListEvent as St, EventSystem as Ct, EventTrigger as yt, FieldWithDefault as Et, FileReference as Rt, FileReferenceSerializer as ht, FileSpawnModel as ft, File_Event as Pt, FixedJoint as Tt, Fog as vt, FontStyle as bt, FrameEvent as At, GENERATOR as Mt, Gizmos as Dt, GltfExport as It, GltfExportBox as xt, Gradient as Ot, Graphic as kt, GraphicRaycaster as Bt, Graphics as Lt, GridHelper as Nt, GridLayoutGroup as Ft, GroundProjectedEnv as wt, GroupActionModel as Ut, HideFlags as Wt, HideOnStart as Gt, HingeJoint as Ht, HorizontalLayoutGroup as Xt, HorizontalWrapMode as zt, HostData as Vt, HoverAnimation as jt, Image as _t, ImageReference as Zt, ImageReferenceSerializer as Kt, InheritVelocityModule as Qt, Input as $t, InputEventQueue as Yt, InputEvents as Jt, InputField as qt, InstanceHandle as eo, InstancingHandler as to, InstancingUtil as oo, InstantiateEvent as ro, InstantiateIdProvider as no, InstantiateOptions as io, Interactable as ao, InternalScreenshotUtils as so, JoinedRoomResponse as lo, KeyEventArgs as co, Keyframe as mo, LODGroup as po, LODModel as go, LeftRoomResponse as uo, Light as So, LightData as Co, LimitVelocityOverLifetimeModule as yo, LoadingElementOptions as Eo, LogStats as Ro, LogType as ho, LookAt as fo, LookAtConstraint as Po, MainModule as To, MarkerType as vo, MaskableGraphic as bo, MaterialPropertyBlock as Ao, MaterialX as Mo, Mathf as Do, MeshCollider as Io, MeshRenderer as xo, MinMaxCurve as Oo, MinMaxGradient as ko, NEEDLE_ENGINE_FEATURE_FLAGS as Bo, MODULES as Lo, NEKeyboardEvent as No, NEPointerEvent as Fo, NeedleButtonElement as wo, ContextRegistry as Uo, NeedleEngineModelLoader as Wo, NeedleEngineWebComponent as Go, NeedleMenu as Ho, NeedlePatchesKey as Xo, USDZExporter as zo, NeedleXRController as Vo, NeedleXRSync as jo, NeedleXRUtils as _o, NestedGltf as Zo, NetworkConnection as Ko, NetworkedStreamEvents as Qo, NetworkedStreams as $o, Networking as Yo, NewInstanceModel as Jo, NoiseModule as qo, ObjectRaycaster as er, ObjectUtils as tr, OffsetConstraint as or, OneEuroFilter as rr, OneEuroFilterXYZ as nr, OpenURL as ir, OrbitControls as ar, Outline as sr, OwnershipEvent as lr, OwnershipModel as dr, PUBLIC_KEY as cr, Padding as mr, ParticleBurst as pr, ParticleSubEmitter as gr, ParticleSystem as ur, ParticleSystemBaseBehaviour as Sr, ParticleSystemRenderer as Cr, ParticleSystemShapeType as yr, PeerHandle as Er, PeerNetworking as Rr, Physics as hr, PhysicsExtension as fr, PhysicsMaterialCombine as Pr, PixelationEffect as Tr, PlayAnimationOnClick as vr, PlayAudioOnClick as br, PlayableDirector as Ar, PlayerColor as Mr, PlayerState as Dr, PlayerStateEvent as Ir, PlayerSync as xr, PlayerView as Or, PlayerViewManager as kr, PointerEventData as Br, PointerType as Lr, PostProcessing as Nr, PostProcessingEffect as Fr, PostProcessingEffectOrder as wr, PostProcessingHandler as Ur, Volume as Wr, Prefabs as Gr, PreliminaryAction as Hr, PreliminaryTrigger as Xr, PreviewHelper as zr, PrimitiveType as Vr, Progress as jr, PromiseAllWithErrors as _r, PromiseErrorResult as Zr, RGBAColor as Kr, RapierPhysics as Qr, RawImage as $r, RaycastOptions as Yr, Rect as Jr, RectTransform as qr, ReflectionProbe as en, RegisteredAnimationInfo as tn, RemoteSkybox as on, RenderTexture as rn, RenderTextureSerializer as nn, Renderer as an, RendererData as sn, RendererLightmap as ln, Rigidbody as dn, RigidbodyConstraints as cn, RoomEvents as mn, RotationBySpeedModule as pn, RotationOverLifetimeModule as gn, SceneLightSettings as un, SceneSwitcher as Sn, ScreenCapture as Cn, ScreenSpaceAmbientOcclusion as yn, ScreenSpaceAmbientOcclusionN8 as En, ScrollFollow as Rn, SeeThrough as hn, SendQueue as fn, SerializationContext as Pn, SetActiveOnClick as Tn, ShadowCatcher as vn, ShapeModule as bn, ShapeOverlapResult as An, SharpeningEffect as Mn, SignalAsset as Dn, SignalReceiver as In, SignalReceiverEvent as xn, SignalTrackHandler as On, Size as kn, SizeBySpeedModule as Bn, SizeOverLifetimeModule as Ln, SkinnedMeshRenderer as Nn, SmoothFollow as Fn, SpatialGrabRaycaster as wn, SpatialHtml as Un, SpatialTrigger as Wn, SpatialTriggerReceiver as Gn, SpectatorCamera as Hn, SphereCollider as Xn, SphereIntersection as zn, SplineContainer as Vn, SplineData as jn, SplineUtils as _n, SplineWalker as Zn, Sprite as Kn, SpriteData as Qn, SpriteRenderer as $n, SpriteSheet as Yn, StateMachineBehaviour as Jn, StreamEndedEvent as qn, StreamReceivedEvent as ei, SubEmitterSystem as ti, SyncedCamera as oi, SyncedRoom as ri, SyncedTransform as ni, TapGestureTrigger as ii, TeleportTarget as ai, TestRunner as si, TestSimulateUserData as li, Text as di, TextAnchor as ci, TextBuilder as mi, TextExtension as pi, TextureSheetAnimationModule as gi, TiltShiftEffect as ui, Time as Si, TimelineActivationTrack as Ci, TimelineAnimationTrack as yi, TimelineAudioTrack as Ei, TimelineBuilder as Ri, TimelineControlTrack as hi, TimelineMarkerTrack as fi, TimelineTrackHandler as Pi, ToneMappingEffect as Ti, TrackType as vi, TrailModule as bi, TransformData as Ai, TransformGizmo as Mi, TriggerBuilder as Di, TriggerModel as Ii, UIRaycastUtils as xi, UIRootComponent as Oi, USDDocument as ki, USDObject as Bi, USDWriter as Li, USDZExporter$1 as Ni, USDZText as Fi, USDZUIExtension as wi, UriSerializer as Ui, UsageMarker as Wi, UserJoinedOrLeftRoomModel as Gi, VariantAction as Hi, VelocityOverLifetimeModule as Xi, VerticalLayoutGroup as zi, VerticalWrapMode as Vi, VideoPlayer as ji, ViewBox as _i, ViewDevice as Zi, Vignette as Ki, VisibilityAction as Qi, Voip as $i, Volume as Yi, VolumeParameter as Ji, VolumeProfile as qi, WaitForFrames as ea, WaitForPromise as ta, WaitForSeconds as oa, Watch as ra, WebARCameraBackground as na, WebARSessionRoot as ia, WebXR as aa, WebXRButtonFactory as sa, WebXRImageTracking as la, WebXRImageTrackingModel as da, WebXRPlaneTracking as ca, WebXRTrackedImage as ma, XRControllerFollow as pa, XRControllerModel as ga, XRControllerMovement as ua, XRFlag as Sa, XRRig as Ca, XRState as ya, XRStateFlag as Ea, __Ignore as Ra, __internalNotifyObjectDestroyed as ha, activeInHierarchyFieldName as fa, addAttributeChangeCallback as Pa, addComponent as Ta, addCustomExtensionPlugin as va, addNewComponent as ba, addPatch as Aa, apply as Ma, applyHMRChanges as Da, applyPrototypeExtensions as Ia, beginListenDestroy as xa, beginListenInstantiate as Oa, binaryIdentifierCasts as ka, build_scene_functions as Ba, builtinComponentKeyName as La, calculateProgress01 as Na, clearMessages as Fa, clearMessages as wa, colorSerializer as Ua, compareAssociation as Wa, componentSerializer as Ga, copyTexture as Ha, createMotion as Xa, debugNet as za, debugOwner as Va, decompressGpuTexture as ja, deepClone as _a, delay as Za, delayForFrames as Ka, deserializeObject as Qa, destroy as $a, destroyComponentInstance as Ya, determineMimeTypeFromExtension as Ja, disposeObjectResources as qa, disposeStream as es, editorGuidKeyName as ts, enableSpatialConsole as os, eventListSerializer as rs, exportAsGLTF as ns, findByGuid as is, findObjectOfType as as, findObjectsOfType as ss, findResourceUsers as ls, fitCamera as ds, fitObjectIntoVolume as cs, foreachComponent as ms, foreachComponentEnumerator as ps, forward as gs, generateQRCode as us, generateSeed as Ss, getBoundingBox as Cs, getCameraController as ys, getComponent as Es, getComponentInChildren as Rs, getComponentInParent as hs, getComponents as fs, getComponentsInChildren as Ps, getComponentsInParent as Ts, getFormattedDate as vs, getIconElement as bs, getIconTexture as As, getLoader as Ms, getOrAddComponent as Ds, getParam as Is, getParentHierarchyPath as xs, getPath as Os, getPeerOptions as ks, getPeerjsInstance as Bs, getResourceUserCount as Ls, getSceneData as Ns, getTempColor as Fs, getTempQuaternion as ws, getTempVector as Us, getUrlParams as Ws, getVisibleInCustomShadowRendering as Gs, getWorldDirection as Hs, getWorldEuler as Xs, getWorldPosition as zs, getWorldQuaternion as Vs, getWorldRotation as js, getWorldScale as _s, hasCommercialLicense as Zs, hasIndieLicense as Ks, hasPointerEventComponent as Qs, hasProLicense as $s, hideDebugConsole as Ys, imageToCanvas as Js, initAddressableSerializers as qs, initBuiltinSerializers as el, initPhysics as tl, initVolumeParameterSerializer as ol, instantiate as rl, invokeLoadedImportPluginHooks as nl, invokeXRSessionEnd as il, invokeXRSessionStart as al, isActiveInHierarchy as sl, isActiveSelf as ll, isAndroidDevice as dl, isAnimationAction as cl, isComponent as ml, isDebugMode as pl, isDesktop as gl, isDestroyed as ul, isDevEnvironment as Sl, isDisposable as Cl, isDisposed as yl, isExporting as El, isGLTFModel as Rl, isHostedOnGlitch as hl, isHotReloadEnabled as fl, isHotReloading as Pl, isIPad as Tl, isIconElement as vl, isLocalNetwork as bl, isMacOS as Al, isMobileDevice as Ml, isMozillaXR as Dl, isQuest as Il, isResourceTrackingEnabled as xl, isSafari as Ol, isTrackModel as kl, isUsingInstancing as Bl, isiOS as Ll, isiPad as Nl, loadPMREM as Fl, loadSync as wl, logHierarchy as Ul, lookAtInverse as Wl, lookAtObject as Gl, lookAtScreenPoint as Hl, makeId as Xl, makeIdFromRandomWords as zl, makeNameSafe as Vl, markAsInstancedRendered as jl, microphonePermissionsGranted as _l, nameof as Zl, nameofFactory as Kl, needle as Ql, objectSerializer as $l, offBeforeXRSession as Yl, offXRSessionEnd as Jl, offXRSessionStart as ql, on as ed, onBeforeXRSession as td, onSyncDestroy as od, onSyncInstantiate as rd, onXRSessionEnd as nd, onXRSessionStart as id, parseSync as ad, placeOnSurface as sd, postprocessFBXMaterials as ld, prefix as dd, pushState as cd, randomNumber as md, registerBinaryType as pd, registerComponent as gd, registerComponentExtension as ud, registerCustomEffectType as Sd, registerExportExtensions as Cd, registerExtensions as yd, registerHotReloadType as Ed, registerLoader as Rd, registerPrefabProvider as hd, registerPrototypeExtensions as fd, registerType as Pd, relativePathPrefix as Td, removeAttributeChangeCallback as vd, removeComponent as bd, removeCustomImportExtensionType as Ad, removePatch as Md, resolveUrl as Dd, sanitizeString as Id, saveImage as xd, screenshot as Od, screenshot2 as kd, sendDestroyed as Bd, serializable as Ld, serializeObject as Nd, serializeable as Fd, setActive as wd, setAllowBalloonMessages as Ud, setAllowOverlayMessages as Wd, setAutoFitEnabled as Gd, setCameraController as Hd, setDestroyed as Xd, setDevEnvironment as zd, setDisposable as Vd, setDontDestroy as jd, setOrAddParamsToUrl as _d, setParam as Zd, setParamWithoutReload as Kd, setPeerOptions as Qd, setResourceTrackingEnabled as $d, setState as Yd, setVisibleInCustomShadowRendering as Jd, setWorldEuler as qd, setWorldPosition as ec, setWorldPositionXYZ as tc, setWorldQuaternion as oc, setWorldQuaternionXYZW as rc, setWorldRotation as nc, setWorldRotationXYZ as ic, setWorldScale as ac, showBalloonError as sc, showBalloonMessage as lc, showBalloonWarning as dc, showDebugConsole as cc, slerp as mc, syncDestroy as pc, syncField as gc, syncInstantiate as uc, textureToCanvas as Sc, toSourceId as Cc, tryCastBinary as yc, tryDetermineMimetypeFromBinary as Ec, tryDetermineMimetypeFromURL as Rc, tryFindObject as hc, tryGetGuid as fc, unregisterHotReloadType as Pc, unregisterPrefabProvider as Tc, unwatchWrite as vc, useForAutoFit as bc, validate as Ac, watchWrite as Mc } from "./needle-engine.bundle-Cu2B9CsR.js";
|
|
3
3
|
import { THREE as h } from "./three.js";
|
|
4
|
-
import { NEEDLE_progressive as
|
|
4
|
+
import { NEEDLE_progressive as Ic } from "./gltf-progressive-DUlhxdv4.js";
|
|
5
5
|
i();
|
|
6
6
|
const t = {
|
|
7
7
|
VERSION: y,
|
|
8
8
|
Context: C,
|
|
9
|
-
NeedleXRSession:
|
|
9
|
+
NeedleXRSession: S,
|
|
10
10
|
assets: {
|
|
11
|
-
loadFromURL:
|
|
11
|
+
loadFromURL: u
|
|
12
12
|
},
|
|
13
13
|
types: g,
|
|
14
14
|
onStart: p,
|
|
@@ -44,18 +44,18 @@ else
|
|
|
44
44
|
globalThis.Needle[e] = t[e];
|
|
45
45
|
globalThis.THREE ? console.warn("Three.js is already imported") : globalThis.THREE = h;
|
|
46
46
|
export {
|
|
47
|
-
|
|
48
|
-
|
|
47
|
+
b as $componentName,
|
|
48
|
+
A as $physicsKey,
|
|
49
49
|
M as ActionBuilder,
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
50
|
+
D as ActionCollection,
|
|
51
|
+
I as ActionModel,
|
|
52
|
+
x as Addressables,
|
|
53
|
+
O as AlignmentConstraint,
|
|
54
54
|
k as AmbientMode,
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
N as
|
|
58
|
-
F as
|
|
55
|
+
B as Animation,
|
|
56
|
+
L as AnimationBuilder,
|
|
57
|
+
N as AnimationCurve,
|
|
58
|
+
F as AnimationExtension,
|
|
59
59
|
w as AnimationUtils,
|
|
60
60
|
U as Animator,
|
|
61
61
|
W as AnimatorConditionMode,
|
|
@@ -64,589 +64,593 @@ export {
|
|
|
64
64
|
X as AnimatorControllerParameterType,
|
|
65
65
|
z as AnimatorStateInfo,
|
|
66
66
|
V as Antialiasing,
|
|
67
|
-
|
|
68
|
-
|
|
67
|
+
j as Application,
|
|
68
|
+
_ as AssetDatabase,
|
|
69
69
|
Z as AssetReference,
|
|
70
70
|
K as Attractor,
|
|
71
|
-
Q as
|
|
72
|
-
$ as
|
|
73
|
-
Y as
|
|
74
|
-
J as
|
|
71
|
+
Q as AudioClip,
|
|
72
|
+
$ as AudioExtension,
|
|
73
|
+
Y as AudioListener,
|
|
74
|
+
J as AudioSource,
|
|
75
75
|
q as Avatar,
|
|
76
|
-
ee as
|
|
77
|
-
te as
|
|
78
|
-
oe as
|
|
79
|
-
re as
|
|
80
|
-
ne as
|
|
81
|
-
ie as
|
|
82
|
-
ae as
|
|
83
|
-
se as
|
|
84
|
-
le as
|
|
85
|
-
de as
|
|
86
|
-
ce as
|
|
87
|
-
me as
|
|
88
|
-
pe as
|
|
89
|
-
ge as
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
Ce as
|
|
93
|
-
ye as
|
|
94
|
-
Ee as
|
|
95
|
-
Re as
|
|
96
|
-
he as
|
|
97
|
-
fe as
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
Me as
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
ke as
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
Ne as
|
|
112
|
-
Fe as
|
|
113
|
-
we as
|
|
114
|
-
Ue as
|
|
115
|
-
We as
|
|
116
|
-
Ge as
|
|
117
|
-
He as
|
|
118
|
-
Xe as
|
|
119
|
-
ze as ColorAdjustments,
|
|
120
|
-
Ve as ColorBySpeedModule,
|
|
121
|
-
_e as ColorOverLifetimeModule,
|
|
122
|
-
je as Component,
|
|
123
|
-
Ze as ComponentLifecycleEvents,
|
|
124
|
-
Ke as ConnectionEvents,
|
|
125
|
-
Qe as ContactPoint,
|
|
126
|
-
$e as ContactShadows,
|
|
76
|
+
ee as AvatarMarker,
|
|
77
|
+
te as Axes,
|
|
78
|
+
oe as AxesHelper,
|
|
79
|
+
re as BUILD_TIME,
|
|
80
|
+
ne as BaseUIComponent,
|
|
81
|
+
ie as BasicIKConstraint,
|
|
82
|
+
ae as BehaviorExtension,
|
|
83
|
+
se as BehaviorModel,
|
|
84
|
+
le as Behaviour,
|
|
85
|
+
de as BlobStorage,
|
|
86
|
+
ce as BloomEffect,
|
|
87
|
+
me as BoxCollider,
|
|
88
|
+
pe as BoxGizmo,
|
|
89
|
+
ge as BoxHelperComponent,
|
|
90
|
+
ue as Button,
|
|
91
|
+
Se as ButtonsFactory,
|
|
92
|
+
Ce as CallDirection,
|
|
93
|
+
ye as CallInfo,
|
|
94
|
+
Ee as Camera,
|
|
95
|
+
Re as CameraTargetReachedEvent,
|
|
96
|
+
he as Canvas,
|
|
97
|
+
fe as CanvasGroup,
|
|
98
|
+
Pe as CapsuleCollider,
|
|
99
|
+
Te as ChangeMaterialOnClick,
|
|
100
|
+
ve as ChangeTransformOnClick,
|
|
101
|
+
be as CharacterController,
|
|
102
|
+
Ae as CharacterControllerInput,
|
|
103
|
+
Me as ChromaticAberration,
|
|
104
|
+
De as CircularBuffer,
|
|
105
|
+
Ie as ClearFlags,
|
|
106
|
+
xe as ClickThrough,
|
|
107
|
+
Oe as ClipExtrapolation,
|
|
108
|
+
ke as Collider,
|
|
109
|
+
Be as Collision,
|
|
110
|
+
Le as CollisionDetectionMode,
|
|
111
|
+
Ne as ColorAdjustments,
|
|
112
|
+
Fe as ColorBySpeedModule,
|
|
113
|
+
we as ColorOverLifetimeModule,
|
|
114
|
+
Ue as Component,
|
|
115
|
+
We as ComponentLifecycleEvents,
|
|
116
|
+
Ge as ConnectionEvents,
|
|
117
|
+
He as ContactPoint,
|
|
118
|
+
Xe as ContactShadows,
|
|
127
119
|
C as Context,
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
120
|
+
ze as ContextArgs,
|
|
121
|
+
Ve as ContextEvent,
|
|
122
|
+
je as ContextRegistry,
|
|
123
|
+
_e as CursorFollow,
|
|
124
|
+
Ze as CustomBranding,
|
|
125
|
+
Ke as CustomShader,
|
|
126
|
+
Qe as DefaultReflectionMode,
|
|
127
|
+
$e as Deletable,
|
|
128
|
+
Ye as DeleteBox,
|
|
129
|
+
Je as DepthOfField,
|
|
130
|
+
qe as DeviceFlag,
|
|
131
|
+
et as DeviceUtilities,
|
|
132
|
+
tt as DirectorWrapMode,
|
|
133
|
+
ot as DisposableStore,
|
|
134
|
+
rt as DocumentExtension,
|
|
135
|
+
nt as DragControls,
|
|
136
|
+
it as DragMode,
|
|
137
|
+
at as DropListener,
|
|
138
|
+
st as Duplicatable,
|
|
139
|
+
lt as EffectWrapper,
|
|
140
|
+
dt as EmissionModule,
|
|
141
|
+
ct as EmphasizeOnClick,
|
|
142
|
+
mt as EngineLoadingView,
|
|
143
|
+
pt as EnvironmentScene,
|
|
144
|
+
gt as EventBus,
|
|
145
|
+
ut as EventList,
|
|
146
|
+
St as EventListEvent,
|
|
147
|
+
Ct as EventSystem,
|
|
148
|
+
yt as EventTrigger,
|
|
149
|
+
Et as FieldWithDefault,
|
|
150
|
+
Rt as FileReference,
|
|
151
|
+
ht as FileReferenceSerializer,
|
|
152
|
+
ft as FileSpawnModel,
|
|
153
|
+
Pt as File_Event,
|
|
154
|
+
Tt as FixedJoint,
|
|
155
|
+
vt as Fog,
|
|
156
|
+
bt as FontStyle,
|
|
157
|
+
At as FrameEvent,
|
|
158
|
+
Mt as GENERATOR,
|
|
165
159
|
r as GameObject,
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
160
|
+
Dt as Gizmos,
|
|
161
|
+
It as GltfExport,
|
|
162
|
+
xt as GltfExportBox,
|
|
163
|
+
Ot as Gradient,
|
|
164
|
+
kt as Graphic,
|
|
165
|
+
Bt as GraphicRaycaster,
|
|
166
|
+
Lt as Graphics,
|
|
167
|
+
Nt as GridHelper,
|
|
168
|
+
Ft as GridLayoutGroup,
|
|
169
|
+
wt as GroundProjectedEnv,
|
|
170
|
+
Ut as GroupActionModel,
|
|
171
|
+
Wt as HideFlags,
|
|
172
|
+
Gt as HideOnStart,
|
|
173
|
+
Ht as HingeJoint,
|
|
174
|
+
Xt as HorizontalLayoutGroup,
|
|
175
|
+
zt as HorizontalWrapMode,
|
|
176
|
+
Vt as HostData,
|
|
177
|
+
jt as HoverAnimation,
|
|
178
|
+
_t as Image,
|
|
179
|
+
Zt as ImageReference,
|
|
180
|
+
Kt as ImageReferenceSerializer,
|
|
181
|
+
Qt as InheritVelocityModule,
|
|
182
|
+
$t as Input,
|
|
183
|
+
Yt as InputEventQueue,
|
|
184
|
+
Jt as InputEvents,
|
|
185
|
+
qt as InputField,
|
|
186
|
+
eo as InstanceHandle,
|
|
187
|
+
to as InstancingHandler,
|
|
188
|
+
oo as InstancingUtil,
|
|
189
|
+
ro as InstantiateEvent,
|
|
190
|
+
no as InstantiateIdProvider,
|
|
191
|
+
io as InstantiateOptions,
|
|
192
|
+
ao as Interactable,
|
|
193
|
+
so as InternalScreenshotUtils,
|
|
194
|
+
lo as JoinedRoomResponse,
|
|
195
|
+
co as KeyEventArgs,
|
|
196
|
+
mo as Keyframe,
|
|
197
|
+
po as LODGroup,
|
|
198
|
+
go as LODModel,
|
|
199
|
+
uo as LeftRoomResponse,
|
|
200
|
+
So as Light,
|
|
201
|
+
Co as LightData,
|
|
202
|
+
yo as LimitVelocityOverLifetimeModule,
|
|
203
|
+
Eo as LoadingElementOptions,
|
|
204
|
+
Ro as LogStats,
|
|
205
|
+
ho as LogType,
|
|
206
|
+
fo as LookAt,
|
|
207
|
+
Po as LookAtConstraint,
|
|
208
|
+
To as MainModule,
|
|
209
|
+
vo as MarkerType,
|
|
210
|
+
bo as MaskableGraphic,
|
|
211
|
+
Ao as MaterialPropertyBlock,
|
|
212
|
+
Mo as MaterialX,
|
|
213
|
+
Do as Mathf,
|
|
214
|
+
Io as MeshCollider,
|
|
215
|
+
xo as MeshRenderer,
|
|
216
|
+
Oo as MinMaxCurve,
|
|
217
|
+
ko as MinMaxGradient,
|
|
218
|
+
Bo as NEEDLE_ENGINE_FEATURE_FLAGS,
|
|
219
|
+
Lo as NEEDLE_ENGINE_MODULES,
|
|
220
|
+
Ic as NEEDLE_progressive,
|
|
221
|
+
No as NEKeyboardEvent,
|
|
222
|
+
Fo as NEPointerEvent,
|
|
223
|
+
wo as NeedleButtonElement,
|
|
224
|
+
Uo as NeedleEngine,
|
|
225
|
+
Wo as NeedleEngineModelLoader,
|
|
226
|
+
Go as NeedleEngineWebComponent,
|
|
227
|
+
Ho as NeedleMenu,
|
|
228
|
+
Xo as NeedlePatchesKey,
|
|
229
|
+
zo as NeedleUSDZExporter,
|
|
230
|
+
Vo as NeedleXRController,
|
|
231
|
+
S as NeedleXRSession,
|
|
232
|
+
jo as NeedleXRSync,
|
|
233
|
+
_o as NeedleXRUtils,
|
|
234
|
+
Zo as NestedGltf,
|
|
235
|
+
Ko as NetworkConnection,
|
|
236
|
+
Qo as NetworkedStreamEvents,
|
|
237
|
+
$o as NetworkedStreams,
|
|
238
|
+
Yo as Networking,
|
|
239
|
+
Jo as NewInstanceModel,
|
|
240
|
+
qo as NoiseModule,
|
|
241
|
+
er as ObjectRaycaster,
|
|
242
|
+
tr as ObjectUtils,
|
|
243
|
+
or as OffsetConstraint,
|
|
244
|
+
rr as OneEuroFilter,
|
|
245
|
+
nr as OneEuroFilterXYZ,
|
|
246
|
+
ir as OpenURL,
|
|
247
|
+
ar as OrbitControls,
|
|
248
|
+
sr as Outline,
|
|
249
|
+
lr as OwnershipEvent,
|
|
250
|
+
dr as OwnershipModel,
|
|
251
|
+
cr as PUBLIC_KEY,
|
|
252
|
+
mr as Padding,
|
|
253
|
+
pr as ParticleBurst,
|
|
254
|
+
gr as ParticleSubEmitter,
|
|
255
|
+
ur as ParticleSystem,
|
|
256
|
+
Sr as ParticleSystemBaseBehaviour,
|
|
257
|
+
Cr as ParticleSystemRenderer,
|
|
258
|
+
yr as ParticleSystemShapeType,
|
|
259
|
+
Er as PeerHandle,
|
|
260
|
+
Rr as PeerNetworking,
|
|
261
|
+
hr as Physics,
|
|
262
|
+
fr as PhysicsExtension,
|
|
263
|
+
Pr as PhysicsMaterialCombine,
|
|
264
|
+
Tr as PixelationEffect,
|
|
265
|
+
vr as PlayAnimationOnClick,
|
|
266
|
+
br as PlayAudioOnClick,
|
|
267
|
+
Ar as PlayableDirector,
|
|
268
|
+
Mr as PlayerColor,
|
|
269
|
+
Dr as PlayerState,
|
|
270
|
+
Ir as PlayerStateEvent,
|
|
271
|
+
xr as PlayerSync,
|
|
272
|
+
Or as PlayerView,
|
|
273
|
+
kr as PlayerViewManager,
|
|
274
|
+
Br as PointerEventData,
|
|
275
|
+
Lr as PointerType,
|
|
276
|
+
Nr as PostProcessing,
|
|
277
|
+
Fr as PostProcessingEffect,
|
|
278
|
+
wr as PostProcessingEffectOrder,
|
|
279
|
+
Ur as PostProcessingHandler,
|
|
280
|
+
Wr as PostProcessingManager,
|
|
281
|
+
Gr as Prefabs,
|
|
282
|
+
Hr as PreliminaryAction,
|
|
283
|
+
Xr as PreliminaryTrigger,
|
|
284
|
+
zr as PreviewHelper,
|
|
285
|
+
Vr as PrimitiveType,
|
|
286
|
+
jr as Progress,
|
|
287
|
+
_r as PromiseAllWithErrors,
|
|
288
|
+
Zr as PromiseErrorResult,
|
|
289
|
+
Kr as RGBAColor,
|
|
290
|
+
Qr as RapierPhysics,
|
|
291
|
+
$r as RawImage,
|
|
292
|
+
Yr as RaycastOptions,
|
|
293
|
+
Jr as Rect,
|
|
294
|
+
qr as RectTransform,
|
|
295
|
+
en as ReflectionProbe,
|
|
296
|
+
tn as RegisteredAnimationInfo,
|
|
297
|
+
on as RemoteSkybox,
|
|
298
|
+
rn as RenderTexture,
|
|
299
|
+
nn as RenderTextureSerializer,
|
|
300
|
+
an as Renderer,
|
|
301
|
+
sn as RendererData,
|
|
302
|
+
ln as RendererLightmap,
|
|
303
|
+
dn as Rigidbody,
|
|
304
|
+
cn as RigidbodyConstraints,
|
|
305
|
+
mn as RoomEvents,
|
|
306
|
+
pn as RotationBySpeedModule,
|
|
307
|
+
gn as RotationOverLifetimeModule,
|
|
308
|
+
un as SceneLightSettings,
|
|
309
|
+
Sn as SceneSwitcher,
|
|
310
|
+
Cn as ScreenCapture,
|
|
311
|
+
yn as ScreenSpaceAmbientOcclusion,
|
|
312
|
+
En as ScreenSpaceAmbientOcclusionN8,
|
|
313
|
+
Rn as ScrollFollow,
|
|
314
|
+
hn as SeeThrough,
|
|
315
|
+
fn as SendQueue,
|
|
316
|
+
Pn as SerializationContext,
|
|
317
|
+
Tn as SetActiveOnClick,
|
|
318
|
+
vn as ShadowCatcher,
|
|
319
|
+
bn as ShapeModule,
|
|
320
|
+
An as ShapeOverlapResult,
|
|
321
|
+
Mn as SharpeningEffect,
|
|
322
|
+
Dn as SignalAsset,
|
|
323
|
+
In as SignalReceiver,
|
|
324
|
+
xn as SignalReceiverEvent,
|
|
325
|
+
On as SignalTrackHandler,
|
|
326
|
+
kn as Size,
|
|
327
|
+
Bn as SizeBySpeedModule,
|
|
328
|
+
Ln as SizeOverLifetimeModule,
|
|
329
|
+
Nn as SkinnedMeshRenderer,
|
|
330
|
+
Fn as SmoothFollow,
|
|
331
|
+
wn as SpatialGrabRaycaster,
|
|
332
|
+
Un as SpatialHtml,
|
|
333
|
+
Wn as SpatialTrigger,
|
|
334
|
+
Gn as SpatialTriggerReceiver,
|
|
335
|
+
Hn as SpectatorCamera,
|
|
336
|
+
Xn as SphereCollider,
|
|
337
|
+
zn as SphereIntersection,
|
|
338
|
+
Vn as SplineContainer,
|
|
339
|
+
jn as SplineData,
|
|
340
|
+
_n as SplineUtils,
|
|
341
|
+
Zn as SplineWalker,
|
|
342
|
+
Kn as Sprite,
|
|
343
|
+
Qn as SpriteData,
|
|
344
|
+
$n as SpriteRenderer,
|
|
345
|
+
Yn as SpriteSheet,
|
|
346
|
+
Jn as StateMachineBehaviour,
|
|
347
|
+
qn as StreamEndedEvent,
|
|
348
|
+
ei as StreamReceivedEvent,
|
|
349
|
+
ti as SubEmitterSystem,
|
|
350
|
+
oi as SyncedCamera,
|
|
351
|
+
ri as SyncedRoom,
|
|
352
|
+
ni as SyncedTransform,
|
|
353
|
+
ii as TapGestureTrigger,
|
|
354
|
+
ai as TeleportTarget,
|
|
355
|
+
si as TestRunner,
|
|
356
|
+
li as TestSimulateUserData,
|
|
357
|
+
di as Text,
|
|
358
|
+
ci as TextAnchor,
|
|
359
|
+
mi as TextBuilder,
|
|
360
|
+
pi as TextExtension,
|
|
361
|
+
gi as TextureSheetAnimationModule,
|
|
362
|
+
ui as TiltShiftEffect,
|
|
363
|
+
Si as Time,
|
|
364
|
+
Ci as TimelineActivationTrack,
|
|
365
|
+
yi as TimelineAnimationTrack,
|
|
366
|
+
Ei as TimelineAudioTrack,
|
|
367
|
+
Ri as TimelineBuilder,
|
|
368
|
+
hi as TimelineControlTrack,
|
|
369
|
+
fi as TimelineMarkerTrack,
|
|
370
|
+
Pi as TimelineTrackHandler,
|
|
371
|
+
Ti as ToneMappingEffect,
|
|
372
|
+
vi as TrackType,
|
|
374
373
|
bi as TrailModule,
|
|
375
|
-
|
|
376
|
-
|
|
374
|
+
Ai as TransformData,
|
|
375
|
+
Mi as TransformGizmo,
|
|
377
376
|
Di as TriggerBuilder,
|
|
378
|
-
|
|
377
|
+
Ii as TriggerModel,
|
|
379
378
|
g as TypeStore,
|
|
380
379
|
xi as UIRaycastUtils,
|
|
381
|
-
|
|
382
|
-
|
|
380
|
+
Oi as UIRootComponent,
|
|
381
|
+
ki as USDDocument,
|
|
383
382
|
Bi as USDObject,
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
383
|
+
Li as USDWriter,
|
|
384
|
+
Ni as USDZExporter,
|
|
385
|
+
Fi as USDZText,
|
|
386
|
+
wi as USDZUIExtension,
|
|
387
|
+
Ui as UriSerializer,
|
|
388
|
+
Wi as UsageMarker,
|
|
389
|
+
Gi as UserJoinedOrLeftRoomModel,
|
|
391
390
|
y as VERSION,
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
391
|
+
Hi as VariantAction,
|
|
392
|
+
Xi as VelocityOverLifetimeModule,
|
|
393
|
+
zi as VerticalLayoutGroup,
|
|
394
|
+
Vi as VerticalWrapMode,
|
|
396
395
|
ji as VideoPlayer,
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
396
|
+
_i as ViewBox,
|
|
397
|
+
Zi as ViewDevice,
|
|
398
|
+
Ki as Vignette,
|
|
399
|
+
Qi as VisibilityAction,
|
|
400
|
+
$i as Voip,
|
|
401
|
+
Yi as Volume,
|
|
402
|
+
Ji as VolumeParameter,
|
|
403
|
+
qi as VolumeProfile,
|
|
404
|
+
ea as WaitForFrames,
|
|
405
|
+
ta as WaitForPromise,
|
|
406
|
+
oa as WaitForSeconds,
|
|
407
|
+
ra as Watch,
|
|
408
|
+
na as WebARCameraBackground,
|
|
409
|
+
ia as WebARSessionRoot,
|
|
410
|
+
aa as WebXR,
|
|
411
|
+
sa as WebXRButtonFactory,
|
|
412
|
+
la as WebXRImageTracking,
|
|
413
|
+
da as WebXRImageTrackingModel,
|
|
414
|
+
ca as WebXRPlaneTracking,
|
|
415
|
+
ma as WebXRTrackedImage,
|
|
416
|
+
pa as XRControllerFollow,
|
|
417
|
+
ga as XRControllerModel,
|
|
419
418
|
ua as XRControllerMovement,
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
419
|
+
Sa as XRFlag,
|
|
420
|
+
Ca as XRRig,
|
|
421
|
+
ya as XRState,
|
|
422
|
+
Ea as XRStateFlag,
|
|
423
|
+
Ra as __Ignore,
|
|
424
|
+
ha as __internalNotifyObjectDestroyed,
|
|
425
|
+
fa as activeInHierarchyFieldName,
|
|
427
426
|
Pa as addAttributeChangeCallback,
|
|
428
|
-
|
|
429
|
-
|
|
427
|
+
Ta as addComponent,
|
|
428
|
+
va as addCustomExtensionPlugin,
|
|
430
429
|
ba as addNewComponent,
|
|
431
|
-
|
|
432
|
-
|
|
430
|
+
Aa as addPatch,
|
|
431
|
+
Ma as apply,
|
|
433
432
|
Da as applyHMRChanges,
|
|
434
|
-
|
|
433
|
+
Ia as applyPrototypeExtensions,
|
|
435
434
|
xa as beginListenDestroy,
|
|
436
|
-
|
|
437
|
-
|
|
435
|
+
Oa as beginListenInstantiate,
|
|
436
|
+
ka as binaryIdentifierCasts,
|
|
438
437
|
Ba as build_scene_functions,
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
438
|
+
La as builtinComponentKeyName,
|
|
439
|
+
Na as calculateProgress01,
|
|
440
|
+
Fa as clearBalloonMessages,
|
|
441
|
+
wa as clearOverlayMessages,
|
|
442
|
+
Ua as colorSerializer,
|
|
443
|
+
Wa as compareAssociation,
|
|
444
|
+
Ga as componentSerializer,
|
|
445
|
+
Ha as copyTexture,
|
|
446
|
+
Xa as createMotion,
|
|
447
|
+
za as debugNet,
|
|
448
|
+
Va as debugOwner,
|
|
450
449
|
ja as decompressGpuTexture,
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
us as
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
Ps as
|
|
482
|
-
As as getComponentsInChildren,
|
|
450
|
+
_a as deepClone,
|
|
451
|
+
Za as delay,
|
|
452
|
+
Ka as delayForFrames,
|
|
453
|
+
Qa as deserializeObject,
|
|
454
|
+
$a as destroy,
|
|
455
|
+
Ya as destroyComponentInstance,
|
|
456
|
+
Ja as determineMimeTypeFromExtension,
|
|
457
|
+
qa as disposeObjectResources,
|
|
458
|
+
es as disposeStream,
|
|
459
|
+
ts as editorGuidKeyName,
|
|
460
|
+
os as enableSpatialConsole,
|
|
461
|
+
rs as eventListSerializer,
|
|
462
|
+
ns as exportAsGLTF,
|
|
463
|
+
is as findByGuid,
|
|
464
|
+
as as findObjectOfType,
|
|
465
|
+
ss as findObjectsOfType,
|
|
466
|
+
ls as findResourceUsers,
|
|
467
|
+
ds as fitCamera,
|
|
468
|
+
cs as fitObjectIntoVolume,
|
|
469
|
+
ms as foreachComponent,
|
|
470
|
+
ps as foreachComponentEnumerator,
|
|
471
|
+
gs as forward,
|
|
472
|
+
us as generateQRCode,
|
|
473
|
+
Ss as generateSeed,
|
|
474
|
+
Cs as getBoundingBox,
|
|
475
|
+
ys as getCameraController,
|
|
476
|
+
Es as getComponent,
|
|
477
|
+
Rs as getComponentInChildren,
|
|
478
|
+
hs as getComponentInParent,
|
|
479
|
+
fs as getComponents,
|
|
480
|
+
Ps as getComponentsInChildren,
|
|
483
481
|
Ts as getComponentsInParent,
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
482
|
+
vs as getFormattedDate,
|
|
483
|
+
bs as getIconElement,
|
|
484
|
+
As as getIconTexture,
|
|
485
|
+
Ms as getLoader,
|
|
486
|
+
Ds as getOrAddComponent,
|
|
487
|
+
Is as getParam,
|
|
488
|
+
xs as getParentHierarchyPath,
|
|
489
|
+
Os as getPath,
|
|
490
|
+
ks as getPeerOptions,
|
|
491
|
+
Bs as getPeerjsInstance,
|
|
492
|
+
Ls as getResourceUserCount,
|
|
493
|
+
Ns as getSceneData,
|
|
494
|
+
Fs as getTempColor,
|
|
495
|
+
ws as getTempQuaternion,
|
|
496
|
+
Us as getTempVector,
|
|
497
|
+
Ws as getUrlParams,
|
|
498
|
+
Gs as getVisibleInCustomShadowRendering,
|
|
499
|
+
Hs as getWorldDirection,
|
|
500
|
+
Xs as getWorldEuler,
|
|
501
|
+
zs as getWorldPosition,
|
|
502
|
+
Vs as getWorldQuaternion,
|
|
503
|
+
js as getWorldRotation,
|
|
504
|
+
_s as getWorldScale,
|
|
505
|
+
Zs as hasCommercialLicense,
|
|
506
|
+
Ks as hasIndieLicense,
|
|
507
|
+
Qs as hasPointerEventComponent,
|
|
508
|
+
$s as hasProLicense,
|
|
509
|
+
Ys as hideDebugConsole,
|
|
510
|
+
Js as imageToCanvas,
|
|
511
|
+
qs as initAddressableSerializers,
|
|
512
|
+
el as initBuiltinSerializers,
|
|
513
513
|
tl as initPhysics,
|
|
514
|
-
ol as
|
|
515
|
-
rl as
|
|
516
|
-
nl as
|
|
517
|
-
il as
|
|
518
|
-
al as
|
|
519
|
-
sl as
|
|
520
|
-
ll as
|
|
521
|
-
dl as
|
|
522
|
-
cl as
|
|
523
|
-
ml as
|
|
524
|
-
pl as
|
|
525
|
-
gl as
|
|
514
|
+
ol as initVolumeParameterSerializer,
|
|
515
|
+
rl as instantiate,
|
|
516
|
+
nl as invokeLoadedImportPluginHooks,
|
|
517
|
+
il as invokeXRSessionEnd,
|
|
518
|
+
al as invokeXRSessionStart,
|
|
519
|
+
sl as isActiveInHierarchy,
|
|
520
|
+
ll as isActiveSelf,
|
|
521
|
+
dl as isAndroidDevice,
|
|
522
|
+
cl as isAnimationAction,
|
|
523
|
+
ml as isComponent,
|
|
524
|
+
pl as isDebugMode,
|
|
525
|
+
gl as isDesktop,
|
|
526
|
+
ul as isDestroyed,
|
|
526
527
|
Sl as isDevEnvironment,
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
528
|
+
Cl as isDisposable,
|
|
529
|
+
yl as isDisposed,
|
|
530
|
+
El as isExporting,
|
|
531
|
+
Rl as isGLTFModel,
|
|
532
|
+
hl as isHostedOnGlitch,
|
|
533
|
+
fl as isHotReloadEnabled,
|
|
534
|
+
Pl as isHotReloading,
|
|
535
|
+
Tl as isIPad,
|
|
534
536
|
vl as isIconElement,
|
|
535
|
-
|
|
537
|
+
bl as isLocalNetwork,
|
|
536
538
|
Al as isMacOS,
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
539
|
+
Ml as isMobileDevice,
|
|
540
|
+
Dl as isMozillaXR,
|
|
541
|
+
Il as isQuest,
|
|
542
|
+
xl as isResourceTrackingEnabled,
|
|
543
|
+
Ol as isSafari,
|
|
544
|
+
kl as isTrackModel,
|
|
545
|
+
Bl as isUsingInstancing,
|
|
546
|
+
Ll as isiOS,
|
|
547
|
+
Nl as isiPad,
|
|
548
|
+
u as loadAsset,
|
|
549
|
+
Fl as loadPMREM,
|
|
550
|
+
wl as loadSync,
|
|
551
|
+
Ul as logHierarchy,
|
|
552
|
+
Wl as lookAtInverse,
|
|
553
|
+
Gl as lookAtObject,
|
|
554
|
+
Hl as lookAtScreenPoint,
|
|
555
|
+
Xl as makeId,
|
|
556
|
+
zl as makeIdFromRandomWords,
|
|
557
|
+
Vl as makeNameSafeForUSD,
|
|
558
|
+
jl as markAsInstancedRendered,
|
|
559
|
+
_l as microphonePermissionsGranted,
|
|
560
|
+
Zl as nameof,
|
|
561
|
+
Kl as nameofFactory,
|
|
562
|
+
Ql as needle,
|
|
563
|
+
$l as objectSerializer,
|
|
564
|
+
Yl as offBeforeXRSession,
|
|
565
|
+
Jl as offXRSessionEnd,
|
|
566
|
+
ql as offXRSessionStart,
|
|
567
|
+
ed as on,
|
|
564
568
|
d as onAfterRender,
|
|
565
569
|
c as onBeforeRender,
|
|
566
|
-
|
|
570
|
+
td as onBeforeXRSession,
|
|
567
571
|
a as onClear,
|
|
568
572
|
s as onDestroy,
|
|
569
573
|
l as onInitialized,
|
|
570
574
|
p as onStart,
|
|
571
|
-
|
|
572
|
-
|
|
575
|
+
od as onSyncDestroy,
|
|
576
|
+
rd as onSyncInstantiate,
|
|
573
577
|
m as onUpdate,
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
578
|
+
nd as onXRSessionEnd,
|
|
579
|
+
id as onXRSessionStart,
|
|
580
|
+
ad as parseSync,
|
|
581
|
+
sd as placeOnSurface,
|
|
582
|
+
ld as postprocessFBXMaterials,
|
|
583
|
+
dd as prefix,
|
|
584
|
+
cd as pushState,
|
|
585
|
+
md as randomNumber,
|
|
586
|
+
pd as registerBinaryType,
|
|
587
|
+
gd as registerComponent,
|
|
588
|
+
ud as registerComponentExtension,
|
|
589
|
+
Sd as registerCustomEffectType,
|
|
590
|
+
Cd as registerExportExtensions,
|
|
591
|
+
yd as registerExtensions,
|
|
592
|
+
Ed as registerHotReloadType,
|
|
593
|
+
Rd as registerLoader,
|
|
594
|
+
hd as registerPrefabProvider,
|
|
595
|
+
fd as registerPrototypeExtensions,
|
|
596
|
+
Pd as registerType,
|
|
597
|
+
Td as relativePathPrefix,
|
|
598
|
+
vd as removeAttributeChangeCallback,
|
|
599
|
+
bd as removeComponent,
|
|
600
|
+
Ad as removeCustomImportExtensionType,
|
|
601
|
+
Md as removePatch,
|
|
602
|
+
Dd as resolveUrl,
|
|
603
|
+
Id as sanitizeString,
|
|
604
|
+
xd as saveImage,
|
|
605
|
+
Od as screenshot,
|
|
606
|
+
kd as screenshot2,
|
|
607
|
+
Bd as sendDestroyed,
|
|
608
|
+
Ld as serializable,
|
|
609
|
+
Nd as serializeObject,
|
|
610
|
+
Fd as serializeable,
|
|
611
|
+
wd as setActive,
|
|
612
|
+
Ud as setAllowBalloonMessages,
|
|
613
|
+
Wd as setAllowOverlayMessages,
|
|
614
|
+
Gd as setAutoFitEnabled,
|
|
615
|
+
Hd as setCameraController,
|
|
616
|
+
Xd as setDestroyed,
|
|
617
|
+
zd as setDevEnvironment,
|
|
618
|
+
Vd as setDisposable,
|
|
619
|
+
jd as setDontDestroy,
|
|
620
|
+
_d as setOrAddParamsToUrl,
|
|
621
|
+
Zd as setParam,
|
|
622
|
+
Kd as setParamWithoutReload,
|
|
623
|
+
Qd as setPeerOptions,
|
|
624
|
+
$d as setResourceTrackingEnabled,
|
|
625
|
+
Yd as setState,
|
|
626
|
+
Jd as setVisibleInCustomShadowRendering,
|
|
627
|
+
qd as setWorldEuler,
|
|
628
|
+
ec as setWorldPosition,
|
|
629
|
+
tc as setWorldPositionXYZ,
|
|
630
|
+
oc as setWorldQuaternion,
|
|
631
|
+
rc as setWorldQuaternionXYZW,
|
|
632
|
+
nc as setWorldRotation,
|
|
633
|
+
ic as setWorldRotationXYZ,
|
|
634
|
+
ac as setWorldScale,
|
|
635
|
+
sc as showBalloonError,
|
|
636
|
+
lc as showBalloonMessage,
|
|
637
|
+
dc as showBalloonWarning,
|
|
638
|
+
cc as showDebugConsole,
|
|
639
|
+
mc as slerp,
|
|
640
|
+
pc as syncDestroy,
|
|
641
|
+
gc as syncField,
|
|
642
|
+
uc as syncInstantiate,
|
|
643
|
+
Sc as textureToCanvas,
|
|
644
|
+
Cc as toSourceId,
|
|
645
|
+
yc as tryCastBinary,
|
|
646
|
+
Ec as tryDetermineMimetypeFromBinary,
|
|
647
|
+
Rc as tryDetermineMimetypeFromURL,
|
|
648
|
+
hc as tryFindObject,
|
|
649
|
+
fc as tryGetGuid,
|
|
650
|
+
Pc as unregisterHotReloadType,
|
|
651
|
+
Tc as unregisterPrefabProvider,
|
|
652
|
+
vc as unwatchWrite,
|
|
653
|
+
bc as useForAutoFit,
|
|
654
|
+
Ac as validate,
|
|
655
|
+
Mc as watchWrite
|
|
652
656
|
};
|