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