@needle-tools/engine 5.1.0-alpha.3 → 5.1.0-alpha.5
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/CHANGELOG.md +68 -0
- package/SKILL.md +4 -1
- package/components.needle.json +1 -1
- package/dist/{needle-engine.bundle-DF01sSGQ.js → needle-engine.bundle-C-LG00ZZ.js} +10681 -10100
- package/dist/needle-engine.bundle-D7tzaiYE.min.js +1733 -0
- package/dist/{needle-engine.bundle-C-ixARur.umd.cjs → needle-engine.bundle-OPkPmdUM.umd.cjs} +161 -161
- package/dist/needle-engine.d.ts +1349 -317
- package/dist/needle-engine.js +556 -555
- 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 +5 -0
- package/lib/engine/api.js +4 -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/engine_camera.fit.js +16 -4
- package/lib/engine/engine_camera.fit.js.map +1 -1
- package/lib/engine/engine_context.d.ts +20 -7
- package/lib/engine/engine_context.js +31 -15
- 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 +20 -118
- 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_input.d.ts +23 -4
- package/lib/engine/engine_input.js +2 -1
- 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_mainloop_utils.js +2 -2
- 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_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_serialization_builtin_serializer.js +1 -5
- 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_types.d.ts +29 -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-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 +2 -119
- package/lib/engine-components/AnimatorController.js +33 -232
- package/lib/engine-components/AnimatorController.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.js +0 -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.js +9 -1
- package/lib/engine-components/Light.js.map +1 -1
- package/lib/engine-components/OrbitControls.d.ts +0 -2
- package/lib/engine-components/OrbitControls.js +14 -1
- package/lib/engine-components/OrbitControls.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/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/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/web/CursorFollow.d.ts +0 -1
- package/lib/engine-components/web/CursorFollow.js +0 -1
- package/lib/engine-components/web/CursorFollow.js.map +1 -1
- package/package.json +2 -83
- package/plugins/common/cloud.js +6 -1
- package/plugins/common/license.js +5 -2
- package/plugins/common/worker.js +9 -4
- package/plugins/vite/dependencies.js +1 -11
- package/plugins/vite/dependency-watcher.js +2 -2
- package/plugins/vite/editor-connection.js +3 -3
- package/plugins/vite/license.js +19 -1
- package/plugins/vite/reload.js +1 -1
- package/plugins/vite/server.js +2 -1
- package/src/engine/api.ts +7 -0
- package/src/engine/codegen/register_types.ts +10 -18
- package/src/engine/engine_camera.fit.ts +15 -4
- package/src/engine/engine_context.ts +32 -16
- package/src/engine/engine_context_eventbus.ts +73 -0
- package/src/engine/engine_disposable.ts +214 -0
- package/src/engine/engine_gameobject.ts +52 -157
- package/src/engine/engine_gltf_builtin_components.ts +7 -76
- package/src/engine/engine_input.ts +27 -6
- package/src/engine/engine_instantiate_resolve.ts +407 -0
- package/src/engine/engine_mainloop_utils.ts +2 -2
- package/src/engine/engine_networking.transport.websocket.ts +45 -0
- package/src/engine/engine_networking.ts +161 -137
- 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_serialization_builtin_serializer.ts +1 -6
- package/src/engine/engine_serialization_core.ts +9 -0
- package/src/engine/engine_types.ts +46 -27
- package/src/engine/engine_util_decorator.ts +7 -2
- package/src/engine/engine_utils.ts +16 -5
- 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 +20 -291
- 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 +0 -9
- 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 +10 -2
- package/src/engine-components/OrbitControls.ts +16 -5
- package/src/engine-components/RigidBody.ts +18 -4
- package/src/engine-components/SceneSwitcher.ts +3 -0
- package/src/engine-components/api.ts +2 -1
- package/src/engine-components/codegen/components.ts +7 -13
- 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/web/CursorFollow.ts +0 -1
- package/dist/needle-engine.bundle-CHmXdnE1.min.js +0 -1733
- 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, AudioClip as Q, AudioExtension as $, AudioListener as Y, AudioSource as J, AudioTrackHandler as q, Avatar as ee, AvatarBlink_Simple as te, AvatarEyeLook_Rotation as oe, AvatarLoader as re, AvatarMarker as ne, AvatarModel as ie, Avatar_Brain_LookAt as ae, Avatar_MouthShapes as se, Avatar_MustacheShake as le, Avatar_POI as de, Axes as ce, AxesHelper as me, BUILD_TIME as pe, BaseUIComponent as ge, BasicIKConstraint as Se, BehaviorExtension as ue, BehaviorModel as Ce, Component$1 as ye, BlobStorage as Ee, BloomEffect as Re, BoxCollider as he, BoxGizmo as fe, BoxHelperComponent as ve, Button as Pe, ButtonsFactory as Ae, CallDirection as Te, CallInfo as be, Camera as Me, CameraTargetReachedEvent as Ie, Canvas as De, CanvasGroup as Oe, CapsuleCollider as xe, ChangeMaterialOnClick as ke, ChangeTransformOnClick as Le, CharacterController as Be, CharacterControllerInput as Ne, ChromaticAberration as Fe, CircularBuffer as we, ClearFlags as Ue, ClickThrough as We, ClipExtrapolation as Ge, Collider as He, Collision as Xe, CollisionDetectionMode as ze, ColorAdjustments as Ve, ColorBySpeedModule as _e, ColorOverLifetimeModule as je, Component$1 as Ze, ComponentLifecycleEvents as Ke, ConnectionEvents as Qe, ContactPoint as $e, ContactShadows as Ye, ContextArgs as Je, ContextEvent as qe, ContextRegistry as et, ControlTrackHandler as tt, CursorFollow as ot, CustomBranding as rt, CustomShader as nt, DefaultReflectionMode as it, Deletable as at, DeleteBox as st, DepthOfField as lt, DeviceFlag as dt, DeviceUtilities as ct, DocumentExtension as mt, DragControls as pt, DragMode as gt, DropListener as St, Duplicatable as ut, EffectWrapper as Ct, EmissionModule as yt, EmphasizeOnClick as Et, EngineLoadingView as Rt, EnvironmentScene as ht, EventList as ft, EventListEvent as vt, EventSystem as Pt, EventTrigger as At, FieldWithDefault as Tt, FileReference as bt, FileReferenceSerializer as Mt, FileSpawnModel as It, File_Event as Dt, FixedJoint as Ot, Fog as xt, FontStyle as kt, FrameEvent as Lt, GENERATOR as Bt, Gizmos as Nt, GltfExport as Ft, GltfExportBox as wt, Gradient as Ut, Graphic as Wt, GraphicRaycaster as Gt, Graphics as Ht, GridHelper as Xt, GridLayoutGroup as zt, GroundProjectedEnv as Vt, GroupActionModel as _t, HideFlags as jt, HideOnStart as Zt, HingeJoint as Kt, HorizontalLayoutGroup as Qt, HorizontalWrapMode as $t, HostData as Yt, HoverAnimation as Jt, Image as qt, ImageReference as eo, ImageReferenceSerializer as to, InheritVelocityModule as oo, Input as ro, InputEventQueue as no, InputEvents as io, InputField as ao, InstanceHandle as so, InstancingHandler as lo, InstancingUtil as co, InstantiateEvent as mo, InstantiateIdProvider as po, InstantiateOptions as go, Interactable as So, InternalScreenshotUtils as uo, JoinedRoomResponse as Co, KeyEventArgs as yo, Keyframe as Eo, LODGroup as Ro, LODModel as ho, LeftRoomResponse as fo, Light as vo, LightData as Po, LimitVelocityOverLifetimeModule as Ao, LoadingElementOptions as To, LogStats as bo, LogType as Mo, LookAt as Io, LookAtConstraint as Do, MainModule as Oo, MarkerTrackHandler as xo, MarkerType as ko, MaskableGraphic as Lo, MaterialPropertyBlock as Bo, MaterialX as No, Mathf as Fo, MeshCollider as wo, MeshRenderer as Uo, MinMaxCurve as Wo, MinMaxGradient as Go, NEEDLE_ENGINE_FEATURE_FLAGS as Ho, MODULES as Xo, NEKeyboardEvent as zo, NEPointerEvent as Vo, NeedleButtonElement as _o, ContextRegistry as jo, NeedleEngineModelLoader as Zo, NeedleEngineWebComponent as Ko, NeedleMenu as Qo, NeedlePatchesKey as $o, USDZExporter as Yo, NeedleXRController as Jo, NeedleXRSync as qo, NeedleXRUtils as er, NestedGltf as tr, NetworkConnection as or, NetworkedStreamEvents as rr, NetworkedStreams as nr, Networking as ir, NewInstanceModel as ar, NoiseModule as sr, ObjectRaycaster as lr, ObjectUtils as dr, OffsetConstraint as cr, OneEuroFilter as mr, OneEuroFilterXYZ as pr, OpenURL as gr, OrbitControls as Sr, Outline as ur, OwnershipEvent as Cr, OwnershipModel as yr, PUBLIC_KEY as Er, Padding as Rr, ParticleBurst as hr, ParticleSubEmitter as fr, ParticleSystem as vr, ParticleSystemBaseBehaviour as Pr, ParticleSystemRenderer as Ar, ParticleSystemShapeType as Tr, PeerHandle as br, PeerNetworking as Mr, Physics as Ir, PhysicsExtension as Dr, PhysicsMaterialCombine as Or, PixelationEffect as xr, PlayAnimationOnClick as kr, PlayAudioOnClick as Lr, PlayableDirector as Br, PlayerColor as Nr, PlayerState as Fr, PlayerStateEvent as wr, PlayerSync as Ur, PlayerView as Wr, PlayerViewManager as Gr, PointerEventData as Hr, PointerType as Xr, PostProcessing as zr, PostProcessingEffect as Vr, PostProcessingEffectOrder as _r, PostProcessingHandler as jr, Volume as Zr, Prefabs as Kr, PreliminaryAction as Qr, PreliminaryTrigger as $r, PreviewHelper as Yr, PrimitiveType as Jr, Progress as qr, PromiseAllWithErrors as en, PromiseErrorResult as tn, RGBAColor as on, RapierPhysics as rn, RawImage as nn, RaycastOptions as an, Rect as sn, RectTransform as ln, ReflectionProbe as dn, RegisteredAnimationInfo as cn, RemoteSkybox as mn, RenderTexture as pn, RenderTextureSerializer as gn, Renderer as Sn, RendererData as un, RendererLightmap as Cn, Rigidbody as yn, RigidbodyConstraints as En, RoomEvents as Rn, RotationBySpeedModule as hn, RotationOverLifetimeModule as fn, SceneLightSettings as vn, SceneSwitcher as Pn, ScreenCapture as An, ScreenSpaceAmbientOcclusion as Tn, ScreenSpaceAmbientOcclusionN8 as bn, ScrollFollow as Mn, SeeThrough as In, SendQueue as Dn, SerializationContext as On, SetActiveOnClick as xn, ShadowCatcher as kn, ShapeModule as Ln, ShapeOverlapResult as Bn, SharpeningEffect as Nn, SignalAsset as Fn, SignalReceiver as wn, SignalReceiverEvent as Un, SignalTrackHandler as Wn, Size as Gn, SizeBySpeedModule as Hn, SizeOverLifetimeModule as Xn, SkinnedMeshRenderer as zn, SmoothFollow as Vn, SpatialGrabRaycaster as _n, SpatialHtml as jn, SpatialTrigger as Zn, SpatialTriggerReceiver as Kn, SpectatorCamera as Qn, SphereCollider as $n, SphereIntersection as Yn, SplineContainer as Jn, SplineData as qn, SplineUtils as ei, SplineWalker as ti, Sprite as oi, SpriteData as ri, SpriteRenderer as ni, SpriteSheet as ii, StateMachineBehaviour as ai, StreamEndedEvent as si, StreamReceivedEvent as li, SubEmitterSystem as di, SyncedCamera as ci, SyncedRoom as mi, SyncedTransform as pi, TapGestureTrigger as gi, TeleportTarget as Si, TestRunner as ui, TestSimulateUserData as Ci, Text as yi, TextAnchor as Ei, TextBuilder as Ri, TextExtension as hi, TextureSheetAnimationModule as fi, TiltShiftEffect as vi, Time as Pi, ToneMappingEffect as Ai, TrackHandler as Ti, TrackType as bi, TrailModule as Mi, TransformData as Ii, TransformGizmo as Di, TriggerBuilder as Oi, TriggerModel as xi, UIRaycastUtils as ki, UIRootComponent as Li, USDDocument as Bi, USDObject as Ni, USDWriter as Fi, USDZExporter$1 as wi, USDZText as Ui, USDZUIExtension as Wi, UriSerializer as Gi, UsageMarker as Hi, UserJoinedOrLeftRoomModel as Xi, VariantAction as zi, VelocityOverLifetimeModule as Vi, VerticalLayoutGroup as _i, VerticalWrapMode as ji, VideoPlayer as Zi, ViewBox as Ki, ViewDevice as Qi, Vignette as $i, VisibilityAction as Yi, Voip as Ji, Volume as qi, VolumeParameter as ea, VolumeProfile as ta, WaitForFrames as oa, WaitForPromise as ra, WaitForSeconds as na, Watch as ia, WebARCameraBackground as aa, WebARSessionRoot as sa, WebXR as la, WebXRButtonFactory as da, WebXRImageTracking as ca, WebXRImageTrackingModel as ma, WebXRPlaneTracking as pa, WebXRTrackedImage as ga, XRControllerFollow as Sa, XRControllerModel as ua, XRControllerMovement as Ca, XRFlag as ya, XRRig as Ea, XRState as Ra, XRStateFlag as ha, __Ignore as fa, __internalNotifyObjectDestroyed as va, activeInHierarchyFieldName as Pa, addAttributeChangeCallback as Aa, addComponent as Ta, addCustomExtensionPlugin as ba, addNewComponent as Ma, addPatch as Ia, apply as Da, applyHMRChanges as Oa, applyPrototypeExtensions as xa, beginListenDestroy as ka, beginListenInstantiate as La, binaryIdentifierCasts as Ba, build_scene_functions as Na, builtinComponentKeyName as Fa, calculateProgress01 as wa, clearMessages as Ua, clearMessages as Wa, colorSerializer as Ga, compareAssociation as Ha, componentSerializer as Xa, copyTexture as za, createMotion as Va, debugNet as _a, debugOwner as ja, decompressGpuTexture as Za, deepClone as Ka, delay as Qa, delayForFrames as $a, deserializeObject as Ya, destroy as Ja, destroyComponentInstance as qa, determineMimeTypeFromExtension as es, disposeObjectResources as ts, disposeStream as os, editorGuidKeyName as rs, enableSpatialConsole 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, initAddressableSerializers as tl, initBuiltinSerializers as ol, initPhysics as rl, initVolumeParameterSerializer as nl, instantiate as il, invokeLoadedImportPluginHooks as al, invokeXRSessionEnd as sl, invokeXRSessionStart as ll, isActiveInHierarchy as dl, isActiveSelf as cl, isAndroidDevice as ml, isAnimationAction as pl, isComponent as gl, isDebugMode as Sl, isDesktop as ul, isDestroyed as Cl, isDevEnvironment as yl, isDisposed as El, isExporting as Rl, isGLTFModel as hl, isHostedOnGlitch as fl, isHotReloadEnabled as vl, isHotReloading as Pl, isIPad as Al, isIconElement as Tl, isLocalNetwork as bl, isMacOS as Ml, isMobileDevice as Il, isMozillaXR as Dl, isQuest as Ol, isResourceTrackingEnabled as xl, isSafari as kl, isUsingInstancing as Ll, isiOS as Bl, 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 _l, microphonePermissionsGranted as jl, nameof as Zl, nameofFactory as Kl, needle as Ql, objectSerializer as $l, offBeforeXRSession as Yl, offXRSessionEnd as Jl, offXRSessionStart as ql, onBeforeXRSession as ed, onSyncDestroy as td, onSyncInstantiate as od, onXRSessionEnd as rd, onXRSessionStart as nd, parseSync as id, placeOnSurface as ad, postprocessFBXMaterials as sd, prefix as ld, pushState as dd, randomNumber as cd, registerBinaryType as md, registerComponent as pd, registerComponentExtension as gd, registerCustomEffectType as Sd, registerExportExtensions as ud, registerExtensions as Cd, registerHotReloadType as yd, registerLoader as Ed, registerPrefabProvider as Rd, registerPrototypeExtensions as hd, registerType as fd, relativePathPrefix as vd, removeAttributeChangeCallback as Pd, removeComponent as Ad, removeCustomImportExtensionType as Td, removePatch as bd, resolveUrl as Md, sanitizeString as Id, saveImage as Dd, screenshot as Od, screenshot2 as xd, sendDestroyed as kd, serializable as Ld, serializeObject as Bd, serializeable as Nd, setActive as Fd, setAllowBalloonMessages as wd, setAllowOverlayMessages as Ud, setAutoFitEnabled as Wd, setCameraController as Gd, setDestroyed as Hd, setDevEnvironment as Xd, setDisposable as zd, setDontDestroy as Vd, setOrAddParamsToUrl as _d, setParam as jd, setParamWithoutReload as Zd, setPeerOptions as Kd, setResourceTrackingEnabled as Qd, setState as $d, setVisibleInCustomShadowRendering as Yd, setWorldEuler as Jd, setWorldPosition as qd, setWorldPositionXYZ as ec, setWorldQuaternion as tc, setWorldQuaternionXYZW as oc, setWorldRotation as rc, setWorldRotationXYZ as nc, setWorldScale as ic, showBalloonError as ac, showBalloonMessage as sc, showBalloonWarning as lc, showDebugConsole as dc, slerp as cc, syncDestroy as mc, syncField as pc, syncInstantiate as gc, textureToCanvas as Sc, toSourceId as uc, tryCastBinary as Cc, tryDetermineMimetypeFromBinary as yc, tryDetermineMimetypeFromURL as Ec, tryFindObject as Rc, tryGetGuid as hc, unregisterHotReloadType as fc, unregisterPrefabProvider as vc, unwatchWrite as Pc, useForAutoFit as Ac, validate as Tc, watchWrite as bc } from "./needle-engine.bundle-DF01sSGQ.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-C-LG00ZZ.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-C-LG00ZZ.js";
|
|
3
3
|
import { THREE as h } from "./three.js";
|
|
4
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,488 +64,488 @@ 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
71
|
Q as AudioClip,
|
|
72
72
|
$ as AudioExtension,
|
|
73
73
|
Y as AudioListener,
|
|
74
74
|
J as AudioSource,
|
|
75
|
-
q as
|
|
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 CollisionDetectionMode,
|
|
120
|
-
Ve as ColorAdjustments,
|
|
121
|
-
_e as ColorBySpeedModule,
|
|
122
|
-
je as ColorOverLifetimeModule,
|
|
123
|
-
Ze as Component,
|
|
124
|
-
Ke as ComponentLifecycleEvents,
|
|
125
|
-
Qe as ConnectionEvents,
|
|
126
|
-
$e as ContactPoint,
|
|
127
|
-
Ye as ContactShadows,
|
|
75
|
+
q as Avatar,
|
|
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,
|
|
128
119
|
C as Context,
|
|
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
|
-
|
|
165
|
-
|
|
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,
|
|
166
159
|
r as GameObject,
|
|
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
|
-
Xo as NEEDLE_ENGINE_MODULES,
|
|
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,
|
|
228
220
|
Ic as NEEDLE_progressive,
|
|
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
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
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,
|
|
373
|
+
bi as TrailModule,
|
|
374
|
+
Ai as TransformData,
|
|
375
|
+
Mi as TransformGizmo,
|
|
376
|
+
Di as TriggerBuilder,
|
|
377
|
+
Ii as TriggerModel,
|
|
380
378
|
g as TypeStore,
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
379
|
+
xi as UIRaycastUtils,
|
|
380
|
+
Oi as UIRootComponent,
|
|
381
|
+
ki as USDDocument,
|
|
382
|
+
Bi as USDObject,
|
|
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,
|
|
392
390
|
y as VERSION,
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
391
|
+
Hi as VariantAction,
|
|
392
|
+
Xi as VelocityOverLifetimeModule,
|
|
393
|
+
zi as VerticalLayoutGroup,
|
|
394
|
+
Vi as VerticalWrapMode,
|
|
395
|
+
ji as VideoPlayer,
|
|
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,
|
|
418
|
+
ua as XRControllerMovement,
|
|
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,
|
|
426
|
+
Pa as addAttributeChangeCallback,
|
|
429
427
|
Ta as addComponent,
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
428
|
+
va as addCustomExtensionPlugin,
|
|
429
|
+
ba as addNewComponent,
|
|
430
|
+
Aa as addPatch,
|
|
431
|
+
Ma as apply,
|
|
432
|
+
Da as applyHMRChanges,
|
|
433
|
+
Ia as applyPrototypeExtensions,
|
|
434
|
+
xa as beginListenDestroy,
|
|
435
|
+
Oa as beginListenInstantiate,
|
|
436
|
+
ka as binaryIdentifierCasts,
|
|
437
|
+
Ba as build_scene_functions,
|
|
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,
|
|
449
|
+
ja as decompressGpuTexture,
|
|
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
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
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
|
+
tl as initPhysics,
|
|
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,
|
|
527
|
+
Sl as isDevEnvironment,
|
|
528
|
+
Cl as isDisposable,
|
|
529
|
+
yl as isDisposed,
|
|
530
|
+
El as isExporting,
|
|
531
|
+
Rl as isGLTFModel,
|
|
532
|
+
hl as isHostedOnGlitch,
|
|
533
|
+
fl as isHotReloadEnabled,
|
|
535
534
|
Pl as isHotReloading,
|
|
536
|
-
|
|
537
|
-
|
|
535
|
+
Tl as isIPad,
|
|
536
|
+
vl as isIconElement,
|
|
538
537
|
bl as isLocalNetwork,
|
|
539
|
-
|
|
540
|
-
|
|
538
|
+
Al as isMacOS,
|
|
539
|
+
Ml as isMobileDevice,
|
|
541
540
|
Dl as isMozillaXR,
|
|
542
|
-
|
|
541
|
+
Il as isQuest,
|
|
543
542
|
xl as isResourceTrackingEnabled,
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
Bl as
|
|
543
|
+
Ol as isSafari,
|
|
544
|
+
kl as isTrackModel,
|
|
545
|
+
Bl as isUsingInstancing,
|
|
546
|
+
Ll as isiOS,
|
|
547
547
|
Nl as isiPad,
|
|
548
|
-
|
|
548
|
+
u as loadAsset,
|
|
549
549
|
Fl as loadPMREM,
|
|
550
550
|
wl as loadSync,
|
|
551
551
|
Ul as logHierarchy,
|
|
@@ -555,8 +555,8 @@ export {
|
|
|
555
555
|
Xl as makeId,
|
|
556
556
|
zl as makeIdFromRandomWords,
|
|
557
557
|
Vl as makeNameSafeForUSD,
|
|
558
|
-
|
|
559
|
-
|
|
558
|
+
jl as markAsInstancedRendered,
|
|
559
|
+
_l as microphonePermissionsGranted,
|
|
560
560
|
Zl as nameof,
|
|
561
561
|
Kl as nameofFactory,
|
|
562
562
|
Ql as needle,
|
|
@@ -564,92 +564,93 @@ export {
|
|
|
564
564
|
Yl as offBeforeXRSession,
|
|
565
565
|
Jl as offXRSessionEnd,
|
|
566
566
|
ql as offXRSessionStart,
|
|
567
|
+
ed as on,
|
|
567
568
|
d as onAfterRender,
|
|
568
569
|
c as onBeforeRender,
|
|
569
|
-
|
|
570
|
+
td as onBeforeXRSession,
|
|
570
571
|
a as onClear,
|
|
571
572
|
s as onDestroy,
|
|
572
573
|
l as onInitialized,
|
|
573
574
|
p as onStart,
|
|
574
|
-
|
|
575
|
-
|
|
575
|
+
od as onSyncDestroy,
|
|
576
|
+
rd as onSyncInstantiate,
|
|
576
577
|
m as onUpdate,
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
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,
|
|
588
589
|
Sd as registerCustomEffectType,
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
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,
|
|
602
603
|
Id as sanitizeString,
|
|
603
|
-
|
|
604
|
+
xd as saveImage,
|
|
604
605
|
Od as screenshot,
|
|
605
|
-
|
|
606
|
-
|
|
606
|
+
kd as screenshot2,
|
|
607
|
+
Bd as sendDestroyed,
|
|
607
608
|
Ld as serializable,
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
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,
|
|
619
620
|
_d as setOrAddParamsToUrl,
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
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,
|
|
642
643
|
Sc as textureToCanvas,
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
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
|
|
655
656
|
};
|