@needle-tools/engine 5.1.0-beta.1 → 5.1.0-beta.3
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/components.needle.json +1 -1
- package/dist/{materialx-B85WjP7E.min.js → materialx-B5gKeM65.min.js} +1 -1
- package/dist/{materialx-B47Bz-xs.umd.cjs → materialx-CFRcCYWy.umd.cjs} +1 -1
- package/dist/{materialx-jkHmVPez.js → materialx-DqGmteNO.js} +1 -1
- package/dist/{needle-engine.bundle-CWiO9cA8.umd.cjs → needle-engine.bundle--5M1FCR0.umd.cjs} +154 -142
- package/dist/{needle-engine.bundle-CFo3xWPu.js → needle-engine.bundle-B6JqW8fC.js} +6020 -5970
- package/dist/{needle-engine.bundle-DxJaiP7e.min.js → needle-engine.bundle-D5eqAuZu.min.js} +158 -146
- package/dist/needle-engine.d.ts +22 -11
- package/dist/needle-engine.js +211 -211
- package/dist/needle-engine.min.js +1 -1
- package/dist/needle-engine.umd.cjs +1 -1
- package/dist/{vendor-BQ2Vuntm.min.js → vendor-2--bD1c9.min.js} +19 -19
- package/dist/{vendor-BslSKZPo.js → vendor-BNtcIZkv.js} +1141 -1138
- package/dist/{vendor-1UvpPPSB.umd.cjs → vendor-vbe9sv1t.umd.cjs} +20 -20
- package/lib/engine/api.d.ts +1 -1
- package/lib/engine/api.js +1 -1
- package/lib/engine/api.js.map +1 -1
- package/lib/engine/engine_init.js +2 -2
- package/lib/engine/engine_license.d.ts +7 -7
- package/lib/engine/engine_license.js +72 -72
- package/lib/engine/engine_license.js.map +1 -1
- package/lib/engine/engine_networking_blob.js +3 -3
- package/lib/engine/engine_networking_blob.js.map +1 -1
- package/lib/engine/engine_utils_qrcode.js +2 -2
- package/lib/engine/engine_utils_qrcode.js.map +1 -1
- package/lib/engine/webcomponents/needle menu/needle-menu-spatial.js +2 -2
- package/lib/engine/webcomponents/needle menu/needle-menu-spatial.js.map +1 -1
- package/lib/engine/webcomponents/needle menu/needle-menu.d.ts +2 -2
- package/lib/engine/webcomponents/needle menu/needle-menu.js +9 -9
- package/lib/engine/webcomponents/needle menu/needle-menu.js.map +1 -1
- package/lib/engine/webcomponents/needle-engine.js +2 -2
- package/lib/engine/webcomponents/needle-engine.js.map +1 -1
- package/lib/engine/webcomponents/needle-engine.loading.js +2 -2
- package/lib/engine/webcomponents/needle-engine.loading.js.map +1 -1
- package/lib/engine/xr/TempXRContext.js +2 -2
- package/lib/engine/xr/TempXRContext.js.map +1 -1
- package/lib/engine-components/Component.js +12 -0
- package/lib/engine-components/Component.js.map +1 -1
- package/lib/engine-components/ContactShadows.d.ts +7 -2
- package/lib/engine-components/ContactShadows.js +65 -45
- package/lib/engine-components/ContactShadows.js.map +1 -1
- package/lib/engine-components/GroundProjection.d.ts +6 -0
- package/lib/engine-components/GroundProjection.js +69 -7
- package/lib/engine-components/GroundProjection.js.map +1 -1
- package/lib/engine-components/NeedleMenu.d.ts +1 -1
- package/lib/engine-components/NeedleMenu.js +5 -2
- package/lib/engine-components/NeedleMenu.js.map +1 -1
- package/lib/engine-components/Skybox.js +9 -0
- package/lib/engine-components/Skybox.js.map +1 -1
- package/lib/engine-components/export/usdz/USDZExporter.js +4 -4
- package/lib/engine-components/export/usdz/USDZExporter.js.map +1 -1
- package/lib/engine-components/export/usdz/extensions/behavior/BehaviourComponents.js +9 -5
- package/lib/engine-components/export/usdz/extensions/behavior/BehaviourComponents.js.map +1 -1
- package/lib/engine-components/particlesystem/ParticleSystem.js +4 -0
- package/lib/engine-components/particlesystem/ParticleSystem.js.map +1 -1
- package/lib/engine-components/webxr/WebXRImageTracking.js +3 -0
- package/lib/engine-components/webxr/WebXRImageTracking.js.map +1 -1
- package/package.json +2 -2
- package/plugins/common/license.js +4 -4
- package/plugins/vite/build-pipeline.js +33 -2
- package/plugins/vite/license.js +4 -4
- package/src/engine/api.ts +1 -1
- package/src/engine/engine_init.ts +2 -2
- package/src/engine/engine_license.ts +69 -69
- package/src/engine/engine_networking_blob.ts +3 -3
- package/src/engine/engine_utils_qrcode.ts +2 -2
- package/src/engine/webcomponents/needle menu/needle-menu-spatial.ts +2 -2
- package/src/engine/webcomponents/needle menu/needle-menu.ts +10 -10
- package/src/engine/webcomponents/needle-engine.loading.ts +6 -6
- package/src/engine/webcomponents/needle-engine.ts +2 -2
- package/src/engine/xr/TempXRContext.ts +2 -2
- package/src/engine-components/Component.ts +11 -0
- package/src/engine-components/ContactShadows.ts +75 -49
- package/src/engine-components/GroundProjection.ts +71 -7
- package/src/engine-components/NeedleMenu.ts +6 -3
- package/src/engine-components/Skybox.ts +8 -0
- package/src/engine-components/export/usdz/USDZExporter.ts +4 -4
- package/src/engine-components/export/usdz/extensions/behavior/BehaviourComponents.ts +12 -5
- package/src/engine-components/particlesystem/ParticleSystem.ts +4 -0
- package/src/engine-components/webxr/WebXRImageTracking.ts +1 -0
package/dist/needle-engine.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { initEngine as i, GameObject as n, 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 S, NeedleXRSession as u, Context as C, VERSION as y, Component as E, Components as R } from "./needle-engine.bundle-
|
|
2
|
-
import { $KhjWEFh as b, $componentName as A, $physicsKey as M, ActionBuilder as D, ActionCollection as I, ActionModel as x, Addressables as O, AlignmentConstraint as k, AmbientMode as B, Animation as L, AnimationBuilder as N, AnimationCurve as F, AnimationExtension as W, AnimationUtils as w, Animator as U, AnimatorConditionMode as G, AnimatorController as H, AnimatorControllerBuilder as X, AnimatorControllerParameterType as z, AnimatorStateInfo as V, Antialiasing as j, Application as _, AssetDatabase as K, AssetReference as Z, Attractor as Q, AudioClip as $, AudioExtension as J, AudioListener as Y, AudioRolloffMode as q, AudioSource as ee, Avatar as te, AvatarMarker as oe, Axes as ne, AxesHelper as re, AxisRotationConstraint as ie, BUILD_TIME as ae, BaseUIComponent as se, BasicIKConstraint as le, BehaviorExtension as de, BehaviorModel as ce, Component$1 as me, BlobStorage as pe, BloomEffect as ge, BoxCollider as Se, BoxGizmo as ue, BoxHelperComponent as Ce, Button as ye, ButtonsFactory as Ee, CallDirection as Re, CallInfo as fe, Camera as he, CameraTargetReachedEvent as Pe, Canvas as Te, CanvasGroup as ve, CapsuleCollider as be, ChangeMaterialOnClick as Ae, ChangeTransformOnClick as Me, CharacterController as De, CharacterControllerInput as Ie, ChromaticAberration as xe, CircularBuffer as Oe, ClearFlags as ke, ClickThrough as Be, ClipExtrapolation as Le, Collider as Ne, Collision as Fe, CollisionDetectionMode as We, ColorAdjustments as we, ColorBySpeedModule as Ue, ColorOverLifetimeModule as Ge, Component$1 as He, ComponentLifecycleEvents as Xe, ConnectionEvents as ze, ContactPoint as Ve, ContactShadows as je, ContextArgs as _e, ContextEvent as Ke, ContextRegistry as Ze, CursorFollow as Qe, CustomBranding as $e, CustomShader as Je, DefaultReflectionMode as Ye, Deletable as qe, DeleteBox as et, DepthOfField as tt, DeviceFlag as ot, DeviceUtilities as nt, DirectorWrapMode as rt, DisposableStore as it, DocumentExtension as at, DragControls as st, DragMode as lt, DragProfile as dt, DropListener as ct, Duplicatable as mt, EffectWrapper as pt, EmissionModule as gt, EmphasizeOnClick as St, EngineLoadingView as ut, EnvironmentScene as Ct, EventBus as yt, EventList as Et, EventListEvent as Rt, EventSystem as ft, EventTrigger as ht, FieldWithDefault as Pt, FileReference as Tt, FileReferenceSerializer as vt, FileSpawnModel as bt, File_Event as At, FixedJoint as Mt, FixedRotationAxesConstraint as Dt, Fog as It, FontStyle as xt, FrameEvent as Ot, GENERATOR as kt, Gizmos as Bt, GltfExport as Lt, GltfExportBox as Nt, GrabPointPlaneConstraint as Ft, Gradient as Wt, Graphic as wt, GraphicRaycaster as Ut, Graphics as Gt, GridHelper as Ht, GridLayoutGroup as Xt, GridSnapConstraint as zt, GroundProjectedEnv as Vt, GroupActionModel as jt, HideFlags as _t, HideOnStart as Kt, HingeJoint as Zt, HorizontalLayoutGroup as Qt, HorizontalWrapMode as $t, HostData as Jt, HoverAnimation as Yt, Image as qt, ImageReference as eo, ImageReferenceSerializer as to, InheritVelocityModule as oo, Input as no, InputEventQueue as ro, 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, KeepRotationConstraint as yo, KeepScaleConstraint as Eo, KeyEventArgs as Ro, Keyframe as fo, LODGroup as ho, LODModel as Po, LODsManager as To, LeftRoomResponse as vo, Light as bo, LightData as Ao, LimitVelocityOverLifetimeModule as Mo, LoadingElementOptions as Do, LogStats as Io, LogType as xo, LookAt as Oo, LookAtConstraint as ko, MainModule as Bo, MarkerType as Lo, MaskableGraphic as No, MaterialPropertyBlock as Fo, MaterialX as Wo, Mathf as wo, MeshCollider as Uo, MeshRenderer as Go, MinMaxCurve as Ho, MinMaxGradient as Xo, NEEDLE_ENGINE_FEATURE_FLAGS as zo, MODULES as Vo, NEKeyboardEvent as jo, NEPointerEvent as _o, NeedleButtonElement as Ko, ContextRegistry as Zo, NeedleEngineModelLoader as Qo, NeedleEngineWebComponent as $o, NeedleMenu as Jo, NeedlePatchesKey as Yo, USDZExporter as qo, NeedleXRController as en, NeedleXRSync as tn, NeedleXRUtils as on, NestedGltf as nn, NetworkConnection as rn, NetworkedStreamEvents as an, NetworkedStreams as sn, Networking as ln, NewInstanceModel as dn, NoiseModule as cn, ObjectRaycaster as mn, ObjectUtils as pn, OffsetConstraint as gn, OneEuroFilter as Sn, OneEuroFilterXYZ as un, OpenURL as Cn, OrbitControls as yn, Outline as En, OwnershipEvent as Rn, OwnershipModel as fn, PUBLIC_KEY as hn, Padding as Pn, ParticleBurst as Tn, ParticleSubEmitter as vn, ParticleSystem as bn, ParticleSystemBaseBehaviour as An, ParticleSystemRenderer as Mn, ParticleSystemShapeType as Dn, PeerHandle as In, PeerNetworking as xn, Physics as On, PhysicsExtension as kn, PhysicsMaterialCombine as Bn, PixelationEffect as Ln, PlaneHeightLockConstraint as Nn, PlayAnimationOnClick as Fn, PlayAudioOnClick as Wn, PlayableDirector as wn, PlayerColor as Un, PlayerState as Gn, PlayerStateEvent as Hn, PlayerSync as Xn, PlayerView as zn, PlayerViewManager as Vn, PointerEventData as jn, PointerType as _n, PostProcessing as Kn, PostProcessingEffect as Zn, PostProcessingEffectOrder as Qn, PostProcessingHandler as $n, Volume as Jn, Prefabs as Yn, PreliminaryAction as qn, PreliminaryTrigger as er, PreviewHelper as tr, PrimitiveType as or, Progress as nr, PromiseAllWithErrors as rr, PromiseErrorResult as ir, RGBAColor as ar, RapierPhysics as sr, RawImage as lr, RaycastOptions as dr, Rect as cr, RectTransform as mr, ReflectionProbe as pr, ReflectionProbeUsage as gr, RegisteredAnimationInfo as Sr, RemoteSkybox as ur, RenderTexture as Cr, RenderTextureSerializer as yr, Renderer as Er, RendererData as Rr, RendererLightmap as fr, Rigidbody as hr, RigidbodyConstraints as Pr, RoomEvents as Tr, RotationBySpeedModule as vr, RotationOverLifetimeModule as br, ScaleLimitConstraint as Ar, SceneLightSettings as Mr, SceneSwitcher as Dr, ScreenCapture as Ir, ScreenSpaceAmbientOcclusion as xr, ScreenSpaceAmbientOcclusionN8 as Or, ScrollFollow as kr, SeeThrough as Br, SendQueue as Lr, SerializationContext as Nr, SetActiveOnClick as Fr, ShadowCastingMode as Wr, ShadowCatcher as wr, ShapeModule as Ur, ShapeOverlapResult as Gr, SharpeningEffect as Hr, SignalAsset as Xr, SignalReceiver as zr, SignalReceiverEvent as Vr, SignalTrackHandler as jr, Size as _r, SizeBySpeedModule as Kr, SizeOverLifetimeModule as Zr, SkinnedMeshRenderer as Qr, SmoothFollow as $r, SnapToSurfaceConstraint as Jr, SpatialGrabRaycaster as Yr, SpatialHtml as qr, SpatialTrigger as ei, SpatialTriggerReceiver as ti, SpectatorCamera as oi, SphereCollider as ni, SphereIntersection as ri, SplineContainer as ii, SplineData as ai, SplineUtils as si, SplineWalker as li, Sprite as di, SpriteData as ci, SpriteRenderer as mi, SpriteSheet as pi, StateMachineBehaviour as gi, StreamEndedEvent as Si, StreamReceivedEvent as ui, SubEmitterSystem as Ci, SyncedCamera as yi, SyncedRoom as Ei, SyncedTransform as Ri, TapGestureTrigger as fi, TeleportTarget as hi, TestRunner as Pi, TestSimulateUserData as Ti, Text as vi, TextAnchor as bi, TextBuilder as Ai, TextExtension as Mi, TextureSheetAnimationModule as Di, TiltShiftEffect as Ii, Time as xi, TimelineActivationTrack as Oi, TimelineAnimationTrack as ki, TimelineAudioTrack as Bi, TimelineBuilder as Li, TimelineControlTrack as Ni, TimelineMarkerTrack as Fi, TimelineTrackHandler as Wi, ToneMappingEffect as wi, TrackType as Ui, TrailModule as Gi, TransformData as Hi, TransformGizmo as Xi, TriggerBuilder as zi, TriggerModel as Vi, UIRaycastUtils as ji, UIRootComponent as _i, USDDocument as Ki, USDObject as Zi, USDWriter as Qi, USDZExporter$1 as $i, USDZText as Ji, USDZUIExtension as Yi, UriSerializer as qi, UsageMarker as ea, UserJoinedOrLeftRoomModel as ta, VariantAction as oa, VelocityOverLifetimeModule as na, VerticalLayoutGroup as ra, VerticalWrapMode as ia, VideoPlayer as aa, ViewBox as sa, ViewDevice as la, Vignette as da, VisibilityAction as ca, Voip as ma, Volume as pa, VolumeParameter as ga, VolumeProfile as Sa, WaitForFrames as ua, WaitForPromise as Ca, WaitForSeconds as ya, Watch as Ea, WebARCameraBackground as Ra, WebARSessionRoot as fa, WebXR as ha, WebXRButtonFactory as Pa, WebXRImageTracking as Ta, WebXRImageTrackingModel as va, WebXRPlaneTracking as ba, WebXRTrackedImage as Aa, XRControllerFollow as Ma, XRControllerModel as Da, XRControllerMovement as Ia, XRFlag as xa, XRRig as Oa, XRState as ka, XRStateFlag as Ba, _$WfJljBK as La, __Aale as Na, __Ignore as Fa, __internalNotifyObjectDestroyed as Wa, activeInHierarchyFieldName as wa, addAttributeChangeCallback as Ua, addComponent as Ga, addCustomExtensionPlugin as Ha, addNewComponent as Xa, addPatch as za, apply as Va, applyHMRChanges as ja, applyPrototypeExtensions as _a, beginListenDestroy as Ka, beginListenInstantiate as Za, binaryIdentifierCasts as Qa, build_scene_functions as $a, builtinComponentKeyName as Ja, calculateProgress01 as Ya, clearMessages as qa, clearMessages as es, colorSerializer as ts, compareAssociation as os, componentSerializer as ns, copyTexture as rs, createMotion as is, debugNet as as, debugOwner as ss, decompressGpuTexture as ls, deepClone as ds, delay as cs, delayForFrames as ms, deserializeObject as ps, destroy as gs, destroyComponentInstance as Ss, determineMimeTypeFromExtension as us, disposeObjectResources as Cs, disposeStream as ys, editorGuidKeyName as Es, enableSpatialConsole as Rs, eventListSerializer as fs, exportAsGLTF as hs, findByGuid as Ps, findObjectOfType as Ts, findObjectsOfType as vs, findResourceUsers as bs, fitCamera as As, fitObjectIntoVolume as Ms, foreachComponent as Ds, foreachComponentEnumerator as Is, forward as xs, generateQRCode as Os, generateSeed as ks, getBoundingBox as Bs, getCameraController as Ls, getComponent as Ns, getComponentInChildren as Fs, getComponentInParent as Ws, getComponents as ws, getComponentsInChildren as Us, getComponentsInParent as Gs, getFormattedDate as Hs, getIconElement as Xs, getIconTexture as zs, getLoader as Vs, getOrAddComponent as js, getParam as _s, getParentHierarchyPath as Ks, getPath as Zs, getPeerOptions as Qs, getPeerjsInstance as $s, getResourceUserCount as Js, getSceneData as Ys, getTempColor as qs, getTempQuaternion as el, getTempVector as tl, getUrlParams as ol, getVisibleInCustomShadowRendering as nl, getWorldDirection as rl, getWorldEuler as il, getWorldPosition as al, getWorldQuaternion as sl, getWorldRotation as ll, getWorldScale as dl, hasPointerEventComponent as cl, hideDebugConsole as ml, imageToCanvas as pl, initAddressableSerializers as gl, initBuiltinSerializers as Sl, initPhysics as ul, initVolumeParameterSerializer as Cl, instantiate as yl, invokeLoadedImportPluginHooks as El, invokeXRSessionEnd as Rl, invokeXRSessionStart as fl, isActiveInHierarchy as hl, isActiveSelf as Pl, isAndroidDevice as Tl, isAnimationAction as vl, isComponent as bl, isDebugMode as Al, isDesktop as Ml, isDestroyed as Dl, isDevEnvironment as Il, isDisposable as xl, isDisposed as Ol, isExporting as kl, isGLTFModel as Bl, isHostedOnGlitch as Ll, isHotReloadEnabled as Nl, isHotReloading as Fl, isIPad as Wl, isIconElement as wl, isLocalNetwork as Ul, isMacOS as Gl, isMobileDevice as Hl, isMozillaXR as Xl, isQuest as zl, isResourceTrackingEnabled as Vl, isSafari as jl, isTrackModel as _l, isUsingInstancing as Kl, isiOS as Zl, isiPad as Ql, loadPMREM as $l, loadSync as Jl, logHierarchy as Yl, lookAtInverse as ql, lookAtObject as ed, lookAtScreenPoint as td, makeId as od, makeIdFromRandomWords as nd, makeNameSafe as rd, markAsInstancedRendered as id, microphonePermissionsGranted as ad, nameof as sd, nameofFactory as ld, needle as dd, objectSerializer as cd, offBeforeXRSession as md, offXRSessionEnd as pd, offXRSessionStart as gd, on as Sd, onBeforeXRSession as ud, onSyncDestroy as Cd, onSyncInstantiate as yd, onXRSessionEnd as Ed, onXRSessionStart as Rd, parseSync as fd, placeOnSurface as hd, postprocessFBXMaterials as Pd, prefix as Td, pushState as vd, randomNumber as bd, registerBinaryType as Ad, registerComponent as Md, registerComponentExtension as Dd, registerCustomEffectType as Id, registerExportExtensions as xd, registerExtensions as Od, registerHotReloadType as kd, registerLoader as Bd, registerPrefabProvider as Ld, registerPrototypeExtensions as Nd, registerType as Fd, relativePathPrefix as Wd, removeAttributeChangeCallback as wd, removeComponent as Ud, removeCustomImportExtensionType as Gd, removePatch as Hd, resolveUrl as Xd, sanitizeString as zd, saveImage as Vd, screenshot as jd, screenshot2 as _d, sendDestroyed as Kd, serializable as Zd, serializeObject as Qd, serializeable as $d, setActive as Jd, setAllowBalloonMessages as Yd, setAllowOverlayMessages as qd, setAutoFitEnabled as ec, setCameraController as tc, setDestroyed as oc, setDevEnvironment as nc, setDisposable as rc, setDontDestroy as ic, setOrAddParamsToUrl as ac, setParam as sc, setParamWithoutReload as lc, setPeerOptions as dc, setResourceTrackingEnabled as cc, setState as mc, setVisibleInCustomShadowRendering as pc, setWorldEuler as gc, setWorldPosition as Sc, setWorldPositionXYZ as uc, setWorldQuaternion as Cc, setWorldQuaternionXYZW as yc, setWorldRotation as Ec, setWorldRotationXYZ as Rc, setWorldScale as fc, showBalloonError as hc, showBalloonMessage as Pc, showBalloonWarning as Tc, showDebugConsole as vc, slerp as bc, syncDestroy as Ac, syncField as Mc, syncInstantiate as Dc, textureToCanvas as Ic, toSourceId as xc, tryCastBinary as Oc, tryDetermineMimetypeFromBinary as kc, tryDetermineMimetypeFromURL as Bc, tryFindObject as Lc, tryGetGuid as Nc, unregisterHotReloadType as Fc, unregisterPrefabProvider as Wc, unwatchWrite as wc, useForAutoFit as Uc, validate as Gc, watchWrite as Hc } from "./needle-engine.bundle-CFo3xWPu.js";
|
|
1
|
+
import { initEngine as i, GameObject as n, 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 S, NeedleXRSession as u, Context as C, VERSION as y, Component as E, Components as R } from "./needle-engine.bundle-B6JqW8fC.js";
|
|
2
|
+
import { $componentName as b, $kwMQgrdg as M, $physicsKey as A, ActionBuilder as D, ActionCollection as I, ActionModel as x, Addressables as O, AlignmentConstraint as k, AmbientMode as B, Animation as N, AnimationBuilder as L, AnimationCurve as F, AnimationExtension as w, AnimationUtils as U, Animator as W, AnimatorConditionMode as G, AnimatorController as H, AnimatorControllerBuilder as X, AnimatorControllerParameterType as z, AnimatorStateInfo as V, Antialiasing as j, Application as _, AssetDatabase as K, AssetReference as Q, Attractor as Z, AudioClip as $, AudioExtension as Y, AudioListener as J, AudioRolloffMode as q, AudioSource as ee, Avatar as te, AvatarMarker as oe, Axes as ne, AxesHelper as re, AxisRotationConstraint as ie, BUILD_TIME as ae, BaseUIComponent as se, BasicIKConstraint as le, BehaviorExtension as de, BehaviorModel as ce, Component$1 as me, BlobStorage as pe, BloomEffect as ge, BoxCollider as Se, BoxGizmo as ue, BoxHelperComponent as Ce, Button as ye, ButtonsFactory as Ee, CallDirection as Re, CallInfo as fe, Camera as he, CameraTargetReachedEvent as Pe, Canvas as Te, CanvasGroup as ve, CapsuleCollider as be, ChangeMaterialOnClick as Me, ChangeTransformOnClick as Ae, CharacterController as De, CharacterControllerInput as Ie, ChromaticAberration as xe, CircularBuffer as Oe, ClearFlags as ke, ClickThrough as Be, ClipExtrapolation as Ne, Collider as Le, Collision as Fe, CollisionDetectionMode as we, ColorAdjustments as Ue, ColorBySpeedModule as We, ColorOverLifetimeModule as Ge, Component$1 as He, ComponentLifecycleEvents as Xe, ConnectionEvents as ze, ContactPoint as Ve, ContactShadows as je, ContextArgs as _e, ContextEvent as Ke, ContextRegistry as Qe, CursorFollow as Ze, CustomBranding as $e, CustomShader as Ye, DefaultReflectionMode as Je, Deletable as qe, DeleteBox as et, DepthOfField as tt, DeviceFlag as ot, DeviceUtilities as nt, DirectorWrapMode as rt, DisposableStore as it, DocumentExtension as at, DragControls as st, DragMode as lt, DragProfile as dt, DropListener as ct, Duplicatable as mt, EffectWrapper as pt, EmissionModule as gt, EmphasizeOnClick as St, EngineLoadingView as ut, EnvironmentScene as Ct, EventBus as yt, EventList as Et, EventListEvent as Rt, EventSystem as ft, EventTrigger as ht, FieldWithDefault as Pt, FileReference as Tt, FileReferenceSerializer as vt, FileSpawnModel as bt, File_Event as Mt, FixedJoint as At, FixedRotationAxesConstraint as Dt, Fog as It, FontStyle as xt, FrameEvent as Ot, GENERATOR as kt, Gizmos as Bt, GltfExport as Nt, GltfExportBox as Lt, GrabPointPlaneConstraint as Ft, Gradient as wt, Graphic as Ut, GraphicRaycaster as Wt, Graphics as Gt, GridHelper as Ht, GridLayoutGroup as Xt, GridSnapConstraint as zt, GroundProjectedEnv as Vt, GroupActionModel as jt, HideFlags as _t, HideOnStart as Kt, HingeJoint as Qt, HorizontalLayoutGroup as Zt, HorizontalWrapMode as $t, HostData as Yt, HoverAnimation as Jt, Image as qt, ImageReference as eo, ImageReferenceSerializer as to, InheritVelocityModule as oo, Input as no, InputEventQueue as ro, 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, KeepRotationConstraint as yo, KeepScaleConstraint as Eo, KeyEventArgs as Ro, Keyframe as fo, LODGroup as ho, LODModel as Po, LODsManager as To, LeftRoomResponse as vo, Light as bo, LightData as Mo, LimitVelocityOverLifetimeModule as Ao, LoadingElementOptions as Do, LogStats as Io, LogType as xo, LookAt as Oo, LookAtConstraint as ko, MainModule as Bo, MarkerType as No, MaskableGraphic as Lo, MaterialPropertyBlock as Fo, MaterialX as wo, Mathf as Uo, MeshCollider as Wo, MeshRenderer as Go, MinMaxCurve as Ho, MinMaxGradient as Xo, NEEDLE_ENGINE_FEATURE_FLAGS as zo, MODULES as Vo, NEKeyboardEvent as jo, NEPointerEvent as _o, NeedleButtonElement as Ko, ContextRegistry as Qo, NeedleEngineModelLoader as Zo, NeedleEngineWebComponent as $o, NeedleMenu as Yo, NeedlePatchesKey as Jo, USDZExporter as qo, NeedleXRController as en, NeedleXRSync as tn, NeedleXRUtils as on, NestedGltf as nn, NetworkConnection as rn, NetworkedStreamEvents as an, NetworkedStreams as sn, Networking as ln, NewInstanceModel as dn, NoiseModule as cn, ObjectRaycaster as mn, ObjectUtils as pn, OffsetConstraint as gn, OneEuroFilter as Sn, OneEuroFilterXYZ as un, OpenURL as Cn, OrbitControls as yn, Outline as En, OwnershipEvent as Rn, OwnershipModel as fn, PUBLIC_KEY as hn, Padding as Pn, ParticleBurst as Tn, ParticleSubEmitter as vn, ParticleSystem as bn, ParticleSystemBaseBehaviour as Mn, ParticleSystemRenderer as An, ParticleSystemShapeType as Dn, PeerHandle as In, PeerNetworking as xn, Physics as On, PhysicsExtension as kn, PhysicsMaterialCombine as Bn, PixelationEffect as Nn, PlaneHeightLockConstraint as Ln, PlayAnimationOnClick as Fn, PlayAudioOnClick as wn, PlayableDirector as Un, PlayerColor as Wn, PlayerState as Gn, PlayerStateEvent as Hn, PlayerSync as Xn, PlayerView as zn, PlayerViewManager as Vn, PointerEventData as jn, PointerType as _n, PostProcessing as Kn, PostProcessingEffect as Qn, PostProcessingEffectOrder as Zn, PostProcessingHandler as $n, Volume as Yn, Prefabs as Jn, PreliminaryAction as qn, PreliminaryTrigger as er, PreviewHelper as tr, PrimitiveType as or, Progress as nr, PromiseAllWithErrors as rr, PromiseErrorResult as ir, RGBAColor as ar, RapierPhysics as sr, RawImage as lr, RaycastOptions as dr, Rect as cr, RectTransform as mr, ReflectionProbe as pr, ReflectionProbeUsage as gr, RegisteredAnimationInfo as Sr, RemoteSkybox as ur, RenderTexture as Cr, RenderTextureSerializer as yr, Renderer as Er, RendererData as Rr, RendererLightmap as fr, Rigidbody as hr, RigidbodyConstraints as Pr, RoomEvents as Tr, RotationBySpeedModule as vr, RotationOverLifetimeModule as br, ScaleLimitConstraint as Mr, SceneLightSettings as Ar, SceneSwitcher as Dr, ScreenCapture as Ir, ScreenSpaceAmbientOcclusion as xr, ScreenSpaceAmbientOcclusionN8 as Or, ScrollFollow as kr, SeeThrough as Br, SendQueue as Nr, SerializationContext as Lr, SetActiveOnClick as Fr, ShadowCastingMode as wr, ShadowCatcher as Ur, ShapeModule as Wr, ShapeOverlapResult as Gr, SharpeningEffect as Hr, SignalAsset as Xr, SignalReceiver as zr, SignalReceiverEvent as Vr, SignalTrackHandler as jr, Size as _r, SizeBySpeedModule as Kr, SizeOverLifetimeModule as Qr, SkinnedMeshRenderer as Zr, SmoothFollow as $r, SnapToSurfaceConstraint as Yr, SpatialGrabRaycaster as Jr, SpatialHtml as qr, SpatialTrigger as ei, SpatialTriggerReceiver as ti, SpectatorCamera as oi, SphereCollider as ni, SphereIntersection as ri, SplineContainer as ii, SplineData as ai, SplineUtils as si, SplineWalker as li, Sprite as di, SpriteData as ci, SpriteRenderer as mi, SpriteSheet as pi, StateMachineBehaviour as gi, StreamEndedEvent as Si, StreamReceivedEvent as ui, SubEmitterSystem as Ci, SyncedCamera as yi, SyncedRoom as Ei, SyncedTransform as Ri, TapGestureTrigger as fi, TeleportTarget as hi, TestRunner as Pi, TestSimulateUserData as Ti, Text as vi, TextAnchor as bi, TextBuilder as Mi, TextExtension as Ai, TextureSheetAnimationModule as Di, TiltShiftEffect as Ii, Time as xi, TimelineActivationTrack as Oi, TimelineAnimationTrack as ki, TimelineAudioTrack as Bi, TimelineBuilder as Ni, TimelineControlTrack as Li, TimelineMarkerTrack as Fi, TimelineTrackHandler as wi, ToneMappingEffect as Ui, TrackType as Wi, TrailModule as Gi, TransformData as Hi, TransformGizmo as Xi, TriggerBuilder as zi, TriggerModel as Vi, UIRaycastUtils as ji, UIRootComponent as _i, USDDocument as Ki, USDObject as Qi, USDWriter as Zi, USDZExporter$1 as $i, USDZText as Yi, USDZUIExtension as Ji, UriSerializer as qi, UsageMarker as ea, UserJoinedOrLeftRoomModel as ta, VariantAction as oa, VelocityOverLifetimeModule as na, VerticalLayoutGroup as ra, VerticalWrapMode as ia, VideoPlayer as aa, ViewBox as sa, ViewDevice as la, Vignette as da, VisibilityAction as ca, Voip as ma, Volume as pa, VolumeParameter as ga, VolumeProfile as Sa, WaitForFrames as ua, WaitForPromise as Ca, WaitForSeconds as ya, Watch as Ea, WebARCameraBackground as Ra, WebARSessionRoot as fa, WebXR as ha, WebXRButtonFactory as Pa, WebXRImageTracking as Ta, WebXRImageTrackingModel as va, WebXRPlaneTracking as ba, WebXRTrackedImage as Ma, XRControllerFollow as Aa, XRControllerModel as Da, XRControllerMovement as Ia, XRFlag as xa, XRRig as Oa, XRState as ka, XRStateFlag as Ba, _$gQv as Na, __Ignore as La, __internalNotifyObjectDestroyed as Fa, activeInHierarchyFieldName as wa, addAttributeChangeCallback as Ua, addComponent as Wa, addCustomExtensionPlugin as Ga, addNewComponent as Ha, addPatch as Xa, apply as za, applyHMRChanges as Va, applyPrototypeExtensions as ja, beginListenDestroy as _a, beginListenInstantiate as Ka, binaryIdentifierCasts as Qa, build_scene_functions as Za, builtinComponentKeyName as $a, calculateProgress01 as Ya, clearMessages as Ja, clearMessages as qa, colorSerializer as es, compareAssociation as ts, componentSerializer as os, copyTexture as ns, createMotion as rs, debugNet as is, debugOwner as as, decompressGpuTexture as ss, deepClone as ls, delay as ds, delayForFrames as cs, deserializeObject as ms, destroy as ps, destroyComponentInstance as gs, determineMimeTypeFromExtension as Ss, disposeObjectResources as us, disposeStream as Cs, editorGuidKeyName as ys, enableSpatialConsole as Es, eventListSerializer as Rs, exportAsGLTF as fs, findByGuid as hs, findObjectOfType as Ps, findObjectsOfType as Ts, findResourceUsers as vs, fitCamera as bs, fitObjectIntoVolume as Ms, foreachComponent as As, foreachComponentEnumerator as Ds, forward as Is, generateQRCode as xs, generateSeed as Os, getBoundingBox as ks, getCameraController as Bs, getComponent as Ns, getComponentInChildren as Ls, getComponentInParent as Fs, getComponents as ws, getComponentsInChildren as Us, getComponentsInParent as Ws, getFormattedDate as Gs, getIconElement as Hs, getIconTexture as Xs, getLoader as zs, getOrAddComponent as Vs, getParam as js, getParentHierarchyPath as _s, getPath as Ks, getPeerOptions as Qs, getPeerjsInstance as Zs, getResourceUserCount as $s, getSceneData as Ys, getTempColor as Js, getTempQuaternion as qs, getTempVector as el, getUrlParams as tl, getVisibleInCustomShadowRendering as ol, getWorldDirection as nl, getWorldEuler as rl, getWorldPosition as il, getWorldQuaternion as al, getWorldRotation as sl, getWorldScale as ll, hasPointerEventComponent as dl, hideDebugConsole as cl, imageToCanvas as ml, initAddressableSerializers as pl, initBuiltinSerializers as gl, initPhysics as Sl, initVolumeParameterSerializer as ul, instantiate as Cl, invokeLoadedImportPluginHooks as yl, invokeXRSessionEnd as El, invokeXRSessionStart as Rl, isActiveInHierarchy as fl, isActiveSelf as hl, isAndroidDevice as Pl, isAnimationAction as Tl, isComponent as vl, isDebugMode as bl, isDesktop as Ml, isDestroyed as Al, isDevEnvironment as Dl, isDisposable as Il, isDisposed as xl, isExporting as Ol, isGLTFModel as kl, isHostedOnGlitch as Bl, isHotReloadEnabled as Nl, isHotReloading as Ll, isIPad as Fl, isIconElement as wl, isLocalNetwork as Ul, isMacOS as Wl, isMobileDevice as Gl, isMozillaXR as Hl, isQuest as Xl, isResourceTrackingEnabled as zl, isSafari as Vl, isTrackModel as jl, isUsingInstancing as _l, isiOS as Kl, isiPad as Ql, kWmTNFr as Zl, loadPMREM as $l, loadSync as Yl, logHierarchy as Jl, lookAtInverse as ql, lookAtObject as ed, lookAtScreenPoint as td, makeId as od, makeIdFromRandomWords as nd, makeNameSafe as rd, markAsInstancedRendered as id, microphonePermissionsGranted as ad, nameof as sd, nameofFactory as ld, needle as dd, objectSerializer as cd, offBeforeXRSession as md, offXRSessionEnd as pd, offXRSessionStart as gd, on as Sd, onBeforeXRSession as ud, onSyncDestroy as Cd, onSyncInstantiate as yd, onXRSessionEnd as Ed, onXRSessionStart as Rd, parseSync as fd, placeOnSurface as hd, postprocessFBXMaterials as Pd, prefix as Td, pushState as vd, randomNumber as bd, registerBinaryType as Md, registerComponent as Ad, registerComponentExtension as Dd, registerCustomEffectType as Id, registerExportExtensions as xd, registerExtensions as Od, registerHotReloadType as kd, registerLoader as Bd, registerPrefabProvider as Nd, registerPrototypeExtensions as Ld, registerType as Fd, relativePathPrefix as wd, removeAttributeChangeCallback as Ud, removeComponent as Wd, removeCustomImportExtensionType as Gd, removePatch as Hd, resolveUrl as Xd, sanitizeString as zd, saveImage as Vd, screenshot as jd, screenshot2 as _d, sendDestroyed as Kd, serializable as Qd, serializeObject as Zd, serializeable as $d, setActive as Yd, setAllowBalloonMessages as Jd, setAllowOverlayMessages as qd, setAutoFitEnabled as ec, setCameraController as tc, setDestroyed as oc, setDevEnvironment as nc, setDisposable as rc, setDontDestroy as ic, setOrAddParamsToUrl as ac, setParam as sc, setParamWithoutReload as lc, setPeerOptions as dc, setResourceTrackingEnabled as cc, setState as mc, setVisibleInCustomShadowRendering as pc, setWorldEuler as gc, setWorldPosition as Sc, setWorldPositionXYZ as uc, setWorldQuaternion as Cc, setWorldQuaternionXYZW as yc, setWorldRotation as Ec, setWorldRotationXYZ as Rc, setWorldScale as fc, showBalloonError as hc, showBalloonMessage as Pc, showBalloonWarning as Tc, showDebugConsole as vc, slerp as bc, syncDestroy as Mc, syncField as Ac, syncInstantiate as Dc, textureToCanvas as Ic, toSourceId as xc, tryCastBinary as Oc, tryDetermineMimetypeFromBinary as kc, tryDetermineMimetypeFromURL as Bc, tryFindObject as Nc, tryGetGuid as Lc, unregisterHotReloadType as Fc, unregisterPrefabProvider as wc, unwatchWrite as Uc, useForAutoFit as Wc, validate as Gc, watchWrite as Hc } from "./needle-engine.bundle-B6JqW8fC.js";
|
|
3
3
|
import { THREE as f } from "./three.js";
|
|
4
4
|
import { NEEDLE_progressive as zc } from "./gltf-progressive-CtYnVfLc.js";
|
|
5
5
|
i();
|
|
@@ -44,21 +44,21 @@ else
|
|
|
44
44
|
globalThis.Needle[e] = t[e];
|
|
45
45
|
globalThis.THREE ? console.warn("Three.js is already imported") : globalThis.THREE = f;
|
|
46
46
|
export {
|
|
47
|
-
b as $
|
|
48
|
-
|
|
49
|
-
|
|
47
|
+
b as $componentName,
|
|
48
|
+
M as $kwMQgrdg,
|
|
49
|
+
A as $physicsKey,
|
|
50
50
|
D as ActionBuilder,
|
|
51
51
|
I as ActionCollection,
|
|
52
52
|
x as ActionModel,
|
|
53
53
|
O as Addressables,
|
|
54
54
|
k as AlignmentConstraint,
|
|
55
55
|
B as AmbientMode,
|
|
56
|
-
|
|
57
|
-
|
|
56
|
+
N as Animation,
|
|
57
|
+
L as AnimationBuilder,
|
|
58
58
|
F as AnimationCurve,
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
59
|
+
w as AnimationExtension,
|
|
60
|
+
U as AnimationUtils,
|
|
61
|
+
W as Animator,
|
|
62
62
|
G as AnimatorConditionMode,
|
|
63
63
|
H as AnimatorController,
|
|
64
64
|
X as AnimatorControllerBuilder,
|
|
@@ -67,11 +67,11 @@ export {
|
|
|
67
67
|
j as Antialiasing,
|
|
68
68
|
_ as Application,
|
|
69
69
|
K as AssetDatabase,
|
|
70
|
-
|
|
71
|
-
|
|
70
|
+
Q as AssetReference,
|
|
71
|
+
Z as Attractor,
|
|
72
72
|
$ as AudioClip,
|
|
73
|
-
|
|
74
|
-
|
|
73
|
+
Y as AudioExtension,
|
|
74
|
+
J as AudioListener,
|
|
75
75
|
q as AudioRolloffMode,
|
|
76
76
|
ee as AudioSource,
|
|
77
77
|
te as Avatar,
|
|
@@ -99,20 +99,20 @@ export {
|
|
|
99
99
|
Te as Canvas,
|
|
100
100
|
ve as CanvasGroup,
|
|
101
101
|
be as CapsuleCollider,
|
|
102
|
-
|
|
103
|
-
|
|
102
|
+
Me as ChangeMaterialOnClick,
|
|
103
|
+
Ae as ChangeTransformOnClick,
|
|
104
104
|
De as CharacterController,
|
|
105
105
|
Ie as CharacterControllerInput,
|
|
106
106
|
xe as ChromaticAberration,
|
|
107
107
|
Oe as CircularBuffer,
|
|
108
108
|
ke as ClearFlags,
|
|
109
109
|
Be as ClickThrough,
|
|
110
|
-
|
|
111
|
-
|
|
110
|
+
Ne as ClipExtrapolation,
|
|
111
|
+
Le as Collider,
|
|
112
112
|
Fe as Collision,
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
113
|
+
we as CollisionDetectionMode,
|
|
114
|
+
Ue as ColorAdjustments,
|
|
115
|
+
We as ColorBySpeedModule,
|
|
116
116
|
Ge as ColorOverLifetimeModule,
|
|
117
117
|
He as Component,
|
|
118
118
|
Xe as ComponentLifecycleEvents,
|
|
@@ -122,11 +122,11 @@ export {
|
|
|
122
122
|
C as Context,
|
|
123
123
|
_e as ContextArgs,
|
|
124
124
|
Ke as ContextEvent,
|
|
125
|
-
|
|
126
|
-
|
|
125
|
+
Qe as ContextRegistry,
|
|
126
|
+
Ze as CursorFollow,
|
|
127
127
|
$e as CustomBranding,
|
|
128
|
-
|
|
129
|
-
|
|
128
|
+
Ye as CustomShader,
|
|
129
|
+
Je as DefaultReflectionMode,
|
|
130
130
|
qe as Deletable,
|
|
131
131
|
et as DeleteBox,
|
|
132
132
|
tt as DepthOfField,
|
|
@@ -154,8 +154,8 @@ export {
|
|
|
154
154
|
Tt as FileReference,
|
|
155
155
|
vt as FileReferenceSerializer,
|
|
156
156
|
bt as FileSpawnModel,
|
|
157
|
-
|
|
158
|
-
|
|
157
|
+
Mt as File_Event,
|
|
158
|
+
At as FixedJoint,
|
|
159
159
|
Dt as FixedRotationAxesConstraint,
|
|
160
160
|
It as Fog,
|
|
161
161
|
xt as FontStyle,
|
|
@@ -163,12 +163,12 @@ export {
|
|
|
163
163
|
kt as GENERATOR,
|
|
164
164
|
n as GameObject,
|
|
165
165
|
Bt as Gizmos,
|
|
166
|
-
|
|
167
|
-
|
|
166
|
+
Nt as GltfExport,
|
|
167
|
+
Lt as GltfExportBox,
|
|
168
168
|
Ft as GrabPointPlaneConstraint,
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
169
|
+
wt as Gradient,
|
|
170
|
+
Ut as Graphic,
|
|
171
|
+
Wt as GraphicRaycaster,
|
|
172
172
|
Gt as Graphics,
|
|
173
173
|
Ht as GridHelper,
|
|
174
174
|
Xt as GridLayoutGroup,
|
|
@@ -177,11 +177,11 @@ export {
|
|
|
177
177
|
jt as GroupActionModel,
|
|
178
178
|
_t as HideFlags,
|
|
179
179
|
Kt as HideOnStart,
|
|
180
|
-
|
|
181
|
-
|
|
180
|
+
Qt as HingeJoint,
|
|
181
|
+
Zt as HorizontalLayoutGroup,
|
|
182
182
|
$t as HorizontalWrapMode,
|
|
183
|
-
|
|
184
|
-
|
|
183
|
+
Yt as HostData,
|
|
184
|
+
Jt as HoverAnimation,
|
|
185
185
|
qt as Image,
|
|
186
186
|
eo as ImageReference,
|
|
187
187
|
to as ImageReferenceSerializer,
|
|
@@ -208,20 +208,20 @@ export {
|
|
|
208
208
|
To as LODsManager,
|
|
209
209
|
vo as LeftRoomResponse,
|
|
210
210
|
bo as Light,
|
|
211
|
-
|
|
212
|
-
|
|
211
|
+
Mo as LightData,
|
|
212
|
+
Ao as LimitVelocityOverLifetimeModule,
|
|
213
213
|
Do as LoadingElementOptions,
|
|
214
214
|
Io as LogStats,
|
|
215
215
|
xo as LogType,
|
|
216
216
|
Oo as LookAt,
|
|
217
217
|
ko as LookAtConstraint,
|
|
218
218
|
Bo as MainModule,
|
|
219
|
-
|
|
220
|
-
|
|
219
|
+
No as MarkerType,
|
|
220
|
+
Lo as MaskableGraphic,
|
|
221
221
|
Fo as MaterialPropertyBlock,
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
222
|
+
wo as MaterialX,
|
|
223
|
+
Uo as Mathf,
|
|
224
|
+
Wo as MeshCollider,
|
|
225
225
|
Go as MeshRenderer,
|
|
226
226
|
Ho as MinMaxCurve,
|
|
227
227
|
Xo as MinMaxGradient,
|
|
@@ -231,11 +231,11 @@ export {
|
|
|
231
231
|
jo as NEKeyboardEvent,
|
|
232
232
|
_o as NEPointerEvent,
|
|
233
233
|
Ko as NeedleButtonElement,
|
|
234
|
-
|
|
235
|
-
|
|
234
|
+
Qo as NeedleEngine,
|
|
235
|
+
Zo as NeedleEngineModelLoader,
|
|
236
236
|
$o as NeedleEngineWebComponent,
|
|
237
|
-
|
|
238
|
-
|
|
237
|
+
Yo as NeedleMenu,
|
|
238
|
+
Jo as NeedlePatchesKey,
|
|
239
239
|
qo as NeedleUSDZExporter,
|
|
240
240
|
en as NeedleXRController,
|
|
241
241
|
u as NeedleXRSession,
|
|
@@ -263,20 +263,20 @@ export {
|
|
|
263
263
|
Tn as ParticleBurst,
|
|
264
264
|
vn as ParticleSubEmitter,
|
|
265
265
|
bn as ParticleSystem,
|
|
266
|
-
|
|
267
|
-
|
|
266
|
+
Mn as ParticleSystemBaseBehaviour,
|
|
267
|
+
An as ParticleSystemRenderer,
|
|
268
268
|
Dn as ParticleSystemShapeType,
|
|
269
269
|
In as PeerHandle,
|
|
270
270
|
xn as PeerNetworking,
|
|
271
271
|
On as Physics,
|
|
272
272
|
kn as PhysicsExtension,
|
|
273
273
|
Bn as PhysicsMaterialCombine,
|
|
274
|
-
|
|
275
|
-
|
|
274
|
+
Nn as PixelationEffect,
|
|
275
|
+
Ln as PlaneHeightLockConstraint,
|
|
276
276
|
Fn as PlayAnimationOnClick,
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
277
|
+
wn as PlayAudioOnClick,
|
|
278
|
+
Un as PlayableDirector,
|
|
279
|
+
Wn as PlayerColor,
|
|
280
280
|
Gn as PlayerState,
|
|
281
281
|
Hn as PlayerStateEvent,
|
|
282
282
|
Xn as PlayerSync,
|
|
@@ -285,11 +285,11 @@ export {
|
|
|
285
285
|
jn as PointerEventData,
|
|
286
286
|
_n as PointerType,
|
|
287
287
|
Kn as PostProcessing,
|
|
288
|
-
|
|
289
|
-
|
|
288
|
+
Qn as PostProcessingEffect,
|
|
289
|
+
Zn as PostProcessingEffectOrder,
|
|
290
290
|
$n as PostProcessingHandler,
|
|
291
|
-
|
|
292
|
-
|
|
291
|
+
Yn as PostProcessingManager,
|
|
292
|
+
Jn as Prefabs,
|
|
293
293
|
qn as PreliminaryAction,
|
|
294
294
|
er as PreliminaryTrigger,
|
|
295
295
|
tr as PreviewHelper,
|
|
@@ -317,20 +317,20 @@ export {
|
|
|
317
317
|
Tr as RoomEvents,
|
|
318
318
|
vr as RotationBySpeedModule,
|
|
319
319
|
br as RotationOverLifetimeModule,
|
|
320
|
-
|
|
321
|
-
|
|
320
|
+
Mr as ScaleLimitConstraint,
|
|
321
|
+
Ar as SceneLightSettings,
|
|
322
322
|
Dr as SceneSwitcher,
|
|
323
323
|
Ir as ScreenCapture,
|
|
324
324
|
xr as ScreenSpaceAmbientOcclusion,
|
|
325
325
|
Or as ScreenSpaceAmbientOcclusionN8,
|
|
326
326
|
kr as ScrollFollow,
|
|
327
327
|
Br as SeeThrough,
|
|
328
|
-
|
|
329
|
-
|
|
328
|
+
Nr as SendQueue,
|
|
329
|
+
Lr as SerializationContext,
|
|
330
330
|
Fr as SetActiveOnClick,
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
331
|
+
wr as ShadowCastingMode,
|
|
332
|
+
Ur as ShadowCatcher,
|
|
333
|
+
Wr as ShapeModule,
|
|
334
334
|
Gr as ShapeOverlapResult,
|
|
335
335
|
Hr as SharpeningEffect,
|
|
336
336
|
Xr as SignalAsset,
|
|
@@ -339,11 +339,11 @@ export {
|
|
|
339
339
|
jr as SignalTrackHandler,
|
|
340
340
|
_r as Size,
|
|
341
341
|
Kr as SizeBySpeedModule,
|
|
342
|
-
|
|
343
|
-
|
|
342
|
+
Qr as SizeOverLifetimeModule,
|
|
343
|
+
Zr as SkinnedMeshRenderer,
|
|
344
344
|
$r as SmoothFollow,
|
|
345
|
-
|
|
346
|
-
|
|
345
|
+
Yr as SnapToSurfaceConstraint,
|
|
346
|
+
Jr as SpatialGrabRaycaster,
|
|
347
347
|
qr as SpatialHtml,
|
|
348
348
|
ei as SpatialTrigger,
|
|
349
349
|
ti as SpatialTriggerReceiver,
|
|
@@ -371,20 +371,20 @@ export {
|
|
|
371
371
|
Ti as TestSimulateUserData,
|
|
372
372
|
vi as Text,
|
|
373
373
|
bi as TextAnchor,
|
|
374
|
-
|
|
375
|
-
|
|
374
|
+
Mi as TextBuilder,
|
|
375
|
+
Ai as TextExtension,
|
|
376
376
|
Di as TextureSheetAnimationModule,
|
|
377
377
|
Ii as TiltShiftEffect,
|
|
378
378
|
xi as Time,
|
|
379
379
|
Oi as TimelineActivationTrack,
|
|
380
380
|
ki as TimelineAnimationTrack,
|
|
381
381
|
Bi as TimelineAudioTrack,
|
|
382
|
-
|
|
383
|
-
|
|
382
|
+
Ni as TimelineBuilder,
|
|
383
|
+
Li as TimelineControlTrack,
|
|
384
384
|
Fi as TimelineMarkerTrack,
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
385
|
+
wi as TimelineTrackHandler,
|
|
386
|
+
Ui as ToneMappingEffect,
|
|
387
|
+
Wi as TrackType,
|
|
388
388
|
Gi as TrailModule,
|
|
389
389
|
Hi as TransformData,
|
|
390
390
|
Xi as TransformGizmo,
|
|
@@ -394,11 +394,11 @@ export {
|
|
|
394
394
|
ji as UIRaycastUtils,
|
|
395
395
|
_i as UIRootComponent,
|
|
396
396
|
Ki as USDDocument,
|
|
397
|
-
|
|
398
|
-
|
|
397
|
+
Qi as USDObject,
|
|
398
|
+
Zi as USDWriter,
|
|
399
399
|
$i as USDZExporter,
|
|
400
|
-
|
|
401
|
-
|
|
400
|
+
Yi as USDZText,
|
|
401
|
+
Ji as USDZUIExtension,
|
|
402
402
|
qi as UriSerializer,
|
|
403
403
|
ea as UsageMarker,
|
|
404
404
|
ta as UserJoinedOrLeftRoomModel,
|
|
@@ -427,142 +427,142 @@ export {
|
|
|
427
427
|
Ta as WebXRImageTracking,
|
|
428
428
|
va as WebXRImageTrackingModel,
|
|
429
429
|
ba as WebXRPlaneTracking,
|
|
430
|
-
|
|
431
|
-
|
|
430
|
+
Ma as WebXRTrackedImage,
|
|
431
|
+
Aa as XRControllerFollow,
|
|
432
432
|
Da as XRControllerModel,
|
|
433
433
|
Ia as XRControllerMovement,
|
|
434
434
|
xa as XRFlag,
|
|
435
435
|
Oa as XRRig,
|
|
436
436
|
ka as XRState,
|
|
437
437
|
Ba as XRStateFlag,
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
Fa as
|
|
441
|
-
Wa as __internalNotifyObjectDestroyed,
|
|
438
|
+
Na as _$gQv,
|
|
439
|
+
La as __Ignore,
|
|
440
|
+
Fa as __internalNotifyObjectDestroyed,
|
|
442
441
|
wa as activeInHierarchyFieldName,
|
|
443
442
|
Ua as addAttributeChangeCallback,
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
443
|
+
Wa as addComponent,
|
|
444
|
+
Ga as addCustomExtensionPlugin,
|
|
445
|
+
Ha as addNewComponent,
|
|
446
|
+
Xa as addPatch,
|
|
447
|
+
za as apply,
|
|
448
|
+
Va as applyHMRChanges,
|
|
449
|
+
ja as applyPrototypeExtensions,
|
|
450
|
+
_a as beginListenDestroy,
|
|
451
|
+
Ka as beginListenInstantiate,
|
|
453
452
|
Qa as binaryIdentifierCasts,
|
|
454
|
-
|
|
455
|
-
|
|
453
|
+
Za as build_scene_functions,
|
|
454
|
+
$a as builtinComponentKeyName,
|
|
456
455
|
Ya as calculateProgress01,
|
|
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
|
-
|
|
483
|
-
|
|
484
|
-
|
|
456
|
+
Ja as clearBalloonMessages,
|
|
457
|
+
qa as clearOverlayMessages,
|
|
458
|
+
es as colorSerializer,
|
|
459
|
+
ts as compareAssociation,
|
|
460
|
+
os as componentSerializer,
|
|
461
|
+
ns as copyTexture,
|
|
462
|
+
rs as createMotion,
|
|
463
|
+
is as debugNet,
|
|
464
|
+
as as debugOwner,
|
|
465
|
+
ss as decompressGpuTexture,
|
|
466
|
+
ls as deepClone,
|
|
467
|
+
ds as delay,
|
|
468
|
+
cs as delayForFrames,
|
|
469
|
+
ms as deserializeObject,
|
|
470
|
+
ps as destroy,
|
|
471
|
+
gs as destroyComponentInstance,
|
|
472
|
+
Ss as determineMimeTypeFromExtension,
|
|
473
|
+
us as disposeObjectResources,
|
|
474
|
+
Cs as disposeStream,
|
|
475
|
+
ys as editorGuidKeyName,
|
|
476
|
+
Es as enableSpatialConsole,
|
|
477
|
+
Rs as eventListSerializer,
|
|
478
|
+
fs as exportAsGLTF,
|
|
479
|
+
hs as findByGuid,
|
|
480
|
+
Ps as findObjectOfType,
|
|
481
|
+
Ts as findObjectsOfType,
|
|
482
|
+
vs as findResourceUsers,
|
|
483
|
+
bs as fitCamera,
|
|
485
484
|
Ms as fitObjectIntoVolume,
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
485
|
+
As as foreachComponent,
|
|
486
|
+
Ds as foreachComponentEnumerator,
|
|
487
|
+
Is as forward,
|
|
488
|
+
xs as generateQRCode,
|
|
489
|
+
Os as generateSeed,
|
|
490
|
+
ks as getBoundingBox,
|
|
491
|
+
Bs as getCameraController,
|
|
493
492
|
Ns as getComponent,
|
|
494
|
-
|
|
495
|
-
|
|
493
|
+
Ls as getComponentInChildren,
|
|
494
|
+
Fs as getComponentInParent,
|
|
496
495
|
ws as getComponents,
|
|
497
496
|
Us as getComponentsInChildren,
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
497
|
+
Ws as getComponentsInParent,
|
|
498
|
+
Gs as getFormattedDate,
|
|
499
|
+
Hs as getIconElement,
|
|
500
|
+
Xs as getIconTexture,
|
|
501
|
+
zs as getLoader,
|
|
502
|
+
Vs as getOrAddComponent,
|
|
503
|
+
js as getParam,
|
|
504
|
+
_s as getParentHierarchyPath,
|
|
505
|
+
Ks as getPath,
|
|
507
506
|
Qs as getPeerOptions,
|
|
508
|
-
|
|
509
|
-
|
|
507
|
+
Zs as getPeerjsInstance,
|
|
508
|
+
$s as getResourceUserCount,
|
|
510
509
|
Ys as getSceneData,
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
510
|
+
Js as getTempColor,
|
|
511
|
+
qs as getTempQuaternion,
|
|
512
|
+
el as getTempVector,
|
|
513
|
+
tl as getUrlParams,
|
|
514
|
+
ol as getVisibleInCustomShadowRendering,
|
|
515
|
+
nl as getWorldDirection,
|
|
516
|
+
rl as getWorldEuler,
|
|
517
|
+
il as getWorldPosition,
|
|
518
|
+
al as getWorldQuaternion,
|
|
519
|
+
sl as getWorldRotation,
|
|
520
|
+
ll as getWorldScale,
|
|
521
|
+
dl as hasPointerEventComponent,
|
|
522
|
+
cl as hideDebugConsole,
|
|
523
|
+
ml as imageToCanvas,
|
|
524
|
+
pl as initAddressableSerializers,
|
|
525
|
+
gl as initBuiltinSerializers,
|
|
526
|
+
Sl as initPhysics,
|
|
527
|
+
ul as initVolumeParameterSerializer,
|
|
528
|
+
Cl as instantiate,
|
|
529
|
+
yl as invokeLoadedImportPluginHooks,
|
|
530
|
+
El as invokeXRSessionEnd,
|
|
531
|
+
Rl as invokeXRSessionStart,
|
|
532
|
+
fl as isActiveInHierarchy,
|
|
533
|
+
hl as isActiveSelf,
|
|
534
|
+
Pl as isAndroidDevice,
|
|
535
|
+
Tl as isAnimationAction,
|
|
536
|
+
vl as isComponent,
|
|
537
|
+
bl as isDebugMode,
|
|
539
538
|
Ml as isDesktop,
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
539
|
+
Al as isDestroyed,
|
|
540
|
+
Dl as isDevEnvironment,
|
|
541
|
+
Il as isDisposable,
|
|
542
|
+
xl as isDisposed,
|
|
543
|
+
Ol as isExporting,
|
|
544
|
+
kl as isGLTFModel,
|
|
545
|
+
Bl as isHostedOnGlitch,
|
|
547
546
|
Nl as isHotReloadEnabled,
|
|
548
|
-
|
|
549
|
-
|
|
547
|
+
Ll as isHotReloading,
|
|
548
|
+
Fl as isIPad,
|
|
550
549
|
wl as isIconElement,
|
|
551
550
|
Ul as isLocalNetwork,
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
551
|
+
Wl as isMacOS,
|
|
552
|
+
Gl as isMobileDevice,
|
|
553
|
+
Hl as isMozillaXR,
|
|
554
|
+
Xl as isQuest,
|
|
555
|
+
zl as isResourceTrackingEnabled,
|
|
556
|
+
Vl as isSafari,
|
|
557
|
+
jl as isTrackModel,
|
|
558
|
+
_l as isUsingInstancing,
|
|
559
|
+
Kl as isiOS,
|
|
561
560
|
Ql as isiPad,
|
|
561
|
+
Zl as kWmTNFr,
|
|
562
562
|
S as loadAsset,
|
|
563
563
|
$l as loadPMREM,
|
|
564
|
-
|
|
565
|
-
|
|
564
|
+
Yl as loadSync,
|
|
565
|
+
Jl as logHierarchy,
|
|
566
566
|
ql as lookAtInverse,
|
|
567
567
|
ed as lookAtObject,
|
|
568
568
|
td as lookAtScreenPoint,
|
|
@@ -597,20 +597,20 @@ export {
|
|
|
597
597
|
Td as prefix,
|
|
598
598
|
vd as pushState,
|
|
599
599
|
bd as randomNumber,
|
|
600
|
-
|
|
601
|
-
|
|
600
|
+
Md as registerBinaryType,
|
|
601
|
+
Ad as registerComponent,
|
|
602
602
|
Dd as registerComponentExtension,
|
|
603
603
|
Id as registerCustomEffectType,
|
|
604
604
|
xd as registerExportExtensions,
|
|
605
605
|
Od as registerExtensions,
|
|
606
606
|
kd as registerHotReloadType,
|
|
607
607
|
Bd as registerLoader,
|
|
608
|
-
|
|
609
|
-
|
|
608
|
+
Nd as registerPrefabProvider,
|
|
609
|
+
Ld as registerPrototypeExtensions,
|
|
610
610
|
Fd as registerType,
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
611
|
+
wd as relativePathPrefix,
|
|
612
|
+
Ud as removeAttributeChangeCallback,
|
|
613
|
+
Wd as removeComponent,
|
|
614
614
|
Gd as removeCustomImportExtensionType,
|
|
615
615
|
Hd as removePatch,
|
|
616
616
|
Xd as resolveUrl,
|
|
@@ -619,11 +619,11 @@ export {
|
|
|
619
619
|
jd as screenshot,
|
|
620
620
|
_d as screenshot2,
|
|
621
621
|
Kd as sendDestroyed,
|
|
622
|
-
|
|
623
|
-
|
|
622
|
+
Qd as serializable,
|
|
623
|
+
Zd as serializeObject,
|
|
624
624
|
$d as serializeable,
|
|
625
|
-
|
|
626
|
-
|
|
625
|
+
Yd as setActive,
|
|
626
|
+
Jd as setAllowBalloonMessages,
|
|
627
627
|
qd as setAllowOverlayMessages,
|
|
628
628
|
ec as setAutoFitEnabled,
|
|
629
629
|
tc as setCameraController,
|
|
@@ -651,20 +651,20 @@ export {
|
|
|
651
651
|
Tc as showBalloonWarning,
|
|
652
652
|
vc as showDebugConsole,
|
|
653
653
|
bc as slerp,
|
|
654
|
-
|
|
655
|
-
|
|
654
|
+
Mc as syncDestroy,
|
|
655
|
+
Ac as syncField,
|
|
656
656
|
Dc as syncInstantiate,
|
|
657
657
|
Ic as textureToCanvas,
|
|
658
658
|
xc as toSourceId,
|
|
659
659
|
Oc as tryCastBinary,
|
|
660
660
|
kc as tryDetermineMimetypeFromBinary,
|
|
661
661
|
Bc as tryDetermineMimetypeFromURL,
|
|
662
|
-
|
|
663
|
-
|
|
662
|
+
Nc as tryFindObject,
|
|
663
|
+
Lc as tryGetGuid,
|
|
664
664
|
Fc as unregisterHotReloadType,
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
665
|
+
wc as unregisterPrefabProvider,
|
|
666
|
+
Uc as unwatchWrite,
|
|
667
|
+
Wc as useForAutoFit,
|
|
668
668
|
Gc as validate,
|
|
669
669
|
Hc as watchWrite
|
|
670
670
|
};
|