@zephyr3d/editor 0.3.7 → 0.3.8

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.
Files changed (61) hide show
  1. package/dist/assets/{index-ySiLtSxz.js → index-BZ1L8ggE.js} +43 -3
  2. package/dist/assistant/zephyr-types-index.json +13230 -9488
  3. package/dist/images/icon1024.png +0 -0
  4. package/dist/index.html +1 -1
  5. package/dist/modules/zephyr3d_backend-webgl.js +2 -0
  6. package/dist/modules/zephyr3d_backend-webgl.js.map +1 -1
  7. package/dist/modules/zephyr3d_backend-webgpu.js +457 -16
  8. package/dist/modules/zephyr3d_backend-webgpu.js.map +1 -1
  9. package/dist/modules/zephyr3d_device.js +27 -0
  10. package/dist/modules/zephyr3d_device.js.map +1 -1
  11. package/dist/modules/zephyr3d_loaders.js +208 -1
  12. package/dist/modules/zephyr3d_loaders.js.map +1 -1
  13. package/dist/modules/zephyr3d_scene.js +774 -80
  14. package/dist/modules/zephyr3d_scene.js.map +1 -1
  15. package/dist/vendor/zephyr3d/backend-webgl/dist/capabilities_webgl.js +2 -0
  16. package/dist/vendor/zephyr3d/backend-webgl/dist/capabilities_webgl.js.map +1 -1
  17. package/dist/vendor/zephyr3d/backend-webgpu/dist/capabilities_webgpu.js +2 -0
  18. package/dist/vendor/zephyr3d/backend-webgpu/dist/capabilities_webgpu.js.map +1 -1
  19. package/dist/vendor/zephyr3d/backend-webgpu/dist/commandqueue.js +55 -10
  20. package/dist/vendor/zephyr3d/backend-webgpu/dist/commandqueue.js.map +1 -1
  21. package/dist/vendor/zephyr3d/backend-webgpu/dist/computepass_webgpu.js +4 -0
  22. package/dist/vendor/zephyr3d/backend-webgpu/dist/computepass_webgpu.js.map +1 -1
  23. package/dist/vendor/zephyr3d/backend-webgpu/dist/device.js +44 -1
  24. package/dist/vendor/zephyr3d/backend-webgpu/dist/device.js.map +1 -1
  25. package/dist/vendor/zephyr3d/backend-webgpu/dist/renderpass_webgpu.js +58 -5
  26. package/dist/vendor/zephyr3d/backend-webgpu/dist/renderpass_webgpu.js.map +1 -1
  27. package/dist/vendor/zephyr3d/backend-webgpu/dist/timestamp_query.js +297 -0
  28. package/dist/vendor/zephyr3d/backend-webgpu/dist/timestamp_query.js.map +1 -0
  29. package/dist/vendor/zephyr3d/device/dist/base_types.js.map +1 -1
  30. package/dist/vendor/zephyr3d/device/dist/device.js +27 -0
  31. package/dist/vendor/zephyr3d/device/dist/device.js.map +1 -1
  32. package/dist/vendor/zephyr3d/device/dist/index.d.ts +81 -1
  33. package/dist/vendor/zephyr3d/loaders/dist/gltf/gltf_importer.js +208 -1
  34. package/dist/vendor/zephyr3d/loaders/dist/gltf/gltf_importer.js.map +1 -1
  35. package/dist/vendor/zephyr3d/loaders/dist/index.d.ts +8 -0
  36. package/dist/vendor/zephyr3d/scene/dist/animation/animationset.js +334 -63
  37. package/dist/vendor/zephyr3d/scene/dist/animation/animationset.js.map +1 -1
  38. package/dist/vendor/zephyr3d/scene/dist/animation/morphtargetgrouptrack.js +66 -0
  39. package/dist/vendor/zephyr3d/scene/dist/animation/morphtargetgrouptrack.js.map +1 -0
  40. package/dist/vendor/zephyr3d/scene/dist/asset/model.js +9 -0
  41. package/dist/vendor/zephyr3d/scene/dist/asset/model.js.map +1 -1
  42. package/dist/vendor/zephyr3d/scene/dist/index.d.ts +260 -4
  43. package/dist/vendor/zephyr3d/scene/dist/index.js +7 -0
  44. package/dist/vendor/zephyr3d/scene/dist/index.js.map +1 -1
  45. package/dist/vendor/zephyr3d/scene/dist/posteffect/sao.js +1 -1
  46. package/dist/vendor/zephyr3d/scene/dist/posteffect/sao.js.map +1 -1
  47. package/dist/vendor/zephyr3d/scene/dist/render/rendergraph/executor.js +270 -1
  48. package/dist/vendor/zephyr3d/scene/dist/render/rendergraph/executor.js.map +1 -1
  49. package/dist/vendor/zephyr3d/scene/dist/render/rendergraph/forward_plus_builder.js +19 -1
  50. package/dist/vendor/zephyr3d/scene/dist/render/rendergraph/forward_plus_builder.js.map +1 -1
  51. package/dist/vendor/zephyr3d/scene/dist/render/rendergraph/types.js.map +1 -1
  52. package/dist/vendor/zephyr3d/scene/dist/scene/scene.js +1 -0
  53. package/dist/vendor/zephyr3d/scene/dist/scene/scene.js.map +1 -1
  54. package/dist/vendor/zephyr3d/scene/dist/utility/serialization/manager.js +2 -1
  55. package/dist/vendor/zephyr3d/scene/dist/utility/serialization/manager.js.map +1 -1
  56. package/dist/vendor/zephyr3d/scene/dist/utility/serialization/scene/animation.js +70 -1
  57. package/dist/vendor/zephyr3d/scene/dist/utility/serialization/scene/animation.js.map +1 -1
  58. package/dist/vendor/zephyr3d/scene/dist/utility/serialization/scene/camera.js.map +1 -1
  59. package/package.json +6 -6
  60. package/dist/vendor/zephyr3d/scene/dist/animation/joint_dynamics/convex_collider.js +0 -320
  61. package/dist/vendor/zephyr3d/scene/dist/animation/joint_dynamics/convex_collider.js.map +0 -1
@@ -1,4 +1,4 @@
1
- import { BaseCameraController, Scene, DirectionalLight, PerspectiveCamera, BoundingBox, BoxShape, Primitive, CylinderShape, TorusShape, PlaneShape, SphereShape, getDevice, AbstractPostEffect, CopyBlitter, Mesh, UnlitMaterial, fetchSampler, LambertMaterial, tryGetApp, getEngine, SharedModel, OrbitCameraController, BatchGroup, TetrahedronShape, PBRBlockNode, VertexColorNode, PBRMetallicRoughnessMaterial, PBRBluePrintMaterial, ConstantScalarNode, ConstantVec3Node, SwizzleNode, TextureSampleNode, SpriteBlueprintMaterial, CompMulNode, CompAddNode, CompSubNode, ConstantVec2Node, ConstantVec4Node, ConstantBooleanNode, ConstantBVec2Node, ConstantBVec3Node, ConstantBVec4Node, ConstantTexture2DNode, ConstantTextureCubeNode, MakeVectorNode, LogicallyAndNode, LogicallyOrNode, EqualNode, NotEqualNode, CompComparisonNode, AnyConditionNode, AllConditionNode, SelectionNode, TransformNode, RotateAboutAxisNode, CompDivNode, DotProductNode, CrossProductNode, Degrees2RadiansNode, Radians2DegreesNode, SinNode, CosNode, TanNode, ArcSinNode, ArcCosNode, ArcTanNode, SinHNode, CosHNode, TanHNode, ArcsineHNode, ArccosineHNode, ArctangentHNode, ExpNode, Exp2Node, LogNode, Log2Node, SqrtNode, InvSqrtNode, AbsNode, SignNode, FloorNode, CeilNode, FractNode, DDXNode, DDYNode, FWidthNode, ModNode, MinNode, MaxNode, MixNode, NormalizeNode, FaceForwardNode, ReflectNode, RefractNode, LengthNode, DistanceNode, PowNode, FmaNode, ClampNode, SaturateNode, StepNode, SmoothStepNode, Hash1Node, Hash2Node, Hash3Node, SimplexNoise2DNode, PerlinNoise2DNode, ConstantTexture2DArrayNode, PannerNode, ResolveVertexPositionNode, ResolveVertexNormalNode, ResolveVertexTangentNode, VertexOutputNode, VertexIndexNode, InstanceIndexNode, VertexUVNode, VertexNormalNode, PixelNormalNode, VertexTangentNode, VertexBinormalNode, VertexPositionNode, PixelWorldPositionNode, ViewMatrixNode, ProjectionMatrixNode, ViewProjMatrixNode, InvProjMatrixNode, InvViewProjMatrixNode, BillboardMatrixNode, CameraPositionNode, CameraVectorNode, CameraNearFarNode, SkyEnvTextureNode, ElapsedTimeNode, SpriteMaterial, Sprite, getApp, MaterialBlueprintIR, FunctionCallNode, FunctionInputNode, FunctionOutputNode, PropertyTrack, AnimationClip, SceneNode, Camera, decodeNormalizedFloatFromRGBA, linearToGamma, TetrahedronFrameShape, defineProps, Water, ClipmapTerrain, ParticleSystem, BaseLight, ScriptAttachment, JointDynamicsModifier, CapsuleShape, PointLight, SpotLight, RectLight, TextSprite, MSDFText, MSDFTextSprite, ClipmapTerrainMaterial, AssetManager, ResourceManager, ScriptRegistry, OrthoCamera, Application, getInput } from "@zephyr3d/scene";
1
+ import { BaseCameraController, Scene, DirectionalLight, PerspectiveCamera, BoundingBox, BoxShape, Primitive, CylinderShape, TorusShape, PlaneShape, SphereShape, getDevice, AbstractPostEffect, CopyBlitter, Mesh, UnlitMaterial, fetchSampler, LambertMaterial, tryGetApp, getEngine, SharedModel, OrbitCameraController, BatchGroup, TetrahedronShape, PBRBlockNode, VertexColorNode, PBRMetallicRoughnessMaterial, PBRBluePrintMaterial, ConstantScalarNode, ConstantVec3Node, SwizzleNode, TextureSampleNode, SpriteBlueprintMaterial, CompMulNode, CompAddNode, CompSubNode, ConstantVec2Node, ConstantVec4Node, ConstantBooleanNode, ConstantBVec2Node, ConstantBVec3Node, ConstantBVec4Node, ConstantTexture2DNode, ConstantTextureCubeNode, MakeVectorNode, LogicallyAndNode, LogicallyOrNode, EqualNode, NotEqualNode, CompComparisonNode, AnyConditionNode, AllConditionNode, SelectionNode, TransformNode, RotateAboutAxisNode, CompDivNode, DotProductNode, CrossProductNode, Degrees2RadiansNode, Radians2DegreesNode, SinNode, CosNode, TanNode, ArcSinNode, ArcCosNode, ArcTanNode, SinHNode, CosHNode, TanHNode, ArcsineHNode, ArccosineHNode, ArctangentHNode, ExpNode, Exp2Node, LogNode, Log2Node, SqrtNode, InvSqrtNode, AbsNode, SignNode, FloorNode, CeilNode, FractNode, DDXNode, DDYNode, FWidthNode, ModNode, MinNode, MaxNode, MixNode, NormalizeNode, FaceForwardNode, ReflectNode, RefractNode, LengthNode, DistanceNode, PowNode, FmaNode, ClampNode, SaturateNode, StepNode, SmoothStepNode, Hash1Node, Hash2Node, Hash3Node, SimplexNoise2DNode, PerlinNoise2DNode, ConstantTexture2DArrayNode, PannerNode, ResolveVertexPositionNode, ResolveVertexNormalNode, ResolveVertexTangentNode, VertexOutputNode, VertexIndexNode, InstanceIndexNode, VertexUVNode, VertexNormalNode, PixelNormalNode, VertexTangentNode, VertexBinormalNode, VertexPositionNode, PixelWorldPositionNode, ViewMatrixNode, ProjectionMatrixNode, ViewProjMatrixNode, InvProjMatrixNode, InvViewProjMatrixNode, BillboardMatrixNode, CameraPositionNode, CameraVectorNode, CameraNearFarNode, SkyEnvTextureNode, ElapsedTimeNode, SpriteMaterial, Sprite, getApp, MaterialBlueprintIR, FunctionCallNode, FunctionInputNode, FunctionOutputNode, PropertyTrack, AnimationClip, SceneNode, Camera, decodeNormalizedFloatFromRGBA, linearToGamma, TetrahedronFrameShape, defineProps, Water, ClipmapTerrain, ParticleSystem, BaseLight, ScriptAttachment, RenderGraphExecutor, JointDynamicsModifier, CapsuleShape, PointLight, SpotLight, RectLight, TextSprite, MSDFText, MSDFTextSprite, ClipmapTerrainMaterial, AssetManager, ResourceManager, ScriptRegistry, OrthoCamera, Application, getInput } from "@zephyr3d/scene";
2
2
  import { ImGui, imGuiSetFontGlyph, imGuiSetCharCodeMap, imGuiWantCaptureKeyboard, imGuiCalcTextSize, imGuiInFrame, imGuiNewFrame, imGuiEndFrame, imGuiInjectEvent, imGuiInit } from "@zephyr3d/imgui";
3
3
  import { Observable, Vector3, Quaternion, Matrix3x3, Matrix4x4, ASSERT, CubeFace, AABB, makeObservable, DRef, Vector2, Vector4, Interpolator, splitStringByGraphemes, Disposable, VFS, VFSError, IndexedDBFS, PathUtils, randomUUID, HttpFS, MemoryFS, guessMimeType, DataTransferVFS, mimeTypeOf, degree2radian, radian2degree, DWeakRef, formatString, HttpRequest, base64ToUint8Array as base64ToUint8Array$1, uint8ArrayToBase64, GenericHtmlDirectoryReader } from "@zephyr3d/base";
4
4
  import { Font } from "@zephyr3d/device";
@@ -33,7 +33,7 @@ import { GLTFImporter, FBXImporter } from "@zephyr3d/loaders";
33
33
  }
34
34
  })();
35
35
  var define_ZEPHYR3D_MONACO_PACKAGES_default = [{ name: "@zephyr3d/base", devEntry: "/__zephyr_source__/base/index.ts", devRoot: "/__zephyr_source__/base/", prodDts: "./vendor/zephyr3d/base/dist/index.d.ts", useSourceInDev: true }, { name: "@zephyr3d/device", devEntry: "/__zephyr_source__/device/index.ts", devRoot: "/__zephyr_source__/device/", prodDts: "./vendor/zephyr3d/device/dist/index.d.ts", useSourceInDev: true }, { name: "@zephyr3d/scene", devEntry: "/__zephyr_source__/scene/index.ts", devRoot: "/__zephyr_source__/scene/", prodDts: "./vendor/zephyr3d/scene/dist/index.d.ts", useSourceInDev: true }, { name: "@zephyr3d/loaders", devEntry: "/__zephyr_source__/loaders/index.ts", devRoot: "/__zephyr_source__/loaders/", prodDts: "./vendor/zephyr3d/loaders/dist/index.d.ts", useSourceInDev: true }, { name: "@zephyr3d/imgui", devEntry: "/__zephyr_source__/imgui/index.ts", devRoot: "/__zephyr_source__/imgui/", prodDts: "./vendor/zephyr3d/imgui/dist/index.d.ts", useSourceInDev: false }, { name: "@zephyr3d/backend-webgl", devEntry: "/__zephyr_source__/backend-webgl/index.ts", devRoot: "/__zephyr_source__/backend-webgl/", prodDts: "./vendor/zephyr3d/backend-webgl/dist/index.d.ts", useSourceInDev: true }, { name: "@zephyr3d/backend-webgpu", devEntry: "/__zephyr_source__/backend-webgpu/index.ts", devRoot: "/__zephyr_source__/backend-webgpu/", prodDts: "./vendor/zephyr3d/backend-webgpu/dist/index.d.ts", useSourceInDev: true }, { name: "@zephyr3d/editor/editor-plugin", devEntry: "/__zephyr_source__/editor-plugin/core/pluginapi.ts", devRoot: "/__zephyr_source__/editor-plugin/", prodDts: "./vendor/zephyr3d/editor/dist/pluginapi/core/pluginapi.d.ts", useSourceInDev: true, virtualEntryPath: "file:///node_modules/@zephyr3d/editor/editor-plugin/index.d.ts" }];
36
- var define_ZEPHYR3D_MONACO_SOURCE_FILES_default = ["/__zephyr_source__/base/diff.ts", "/__zephyr_source__/base/event.ts", "/__zephyr_source__/base/index.ts", "/__zephyr_source__/base/linkedlist.ts", "/__zephyr_source__/base/math/aabb.ts", "/__zephyr_source__/base/math/fft/complex.ts", "/__zephyr_source__/base/math/fft/fft.ts", "/__zephyr_source__/base/math/fft/fft2.ts", "/__zephyr_source__/base/math/fft/index.ts", "/__zephyr_source__/base/math/frustum.ts", "/__zephyr_source__/base/math/half.ts", "/__zephyr_source__/base/math/heightfield.ts", "/__zephyr_source__/base/math/index.ts", "/__zephyr_source__/base/math/interpolator.ts", "/__zephyr_source__/base/math/misc.ts", "/__zephyr_source__/base/math/noise.ts", "/__zephyr_source__/base/math/plane.ts", "/__zephyr_source__/base/math/ray.ts", "/__zephyr_source__/base/math/sh.ts", "/__zephyr_source__/base/math/tangent.ts", "/__zephyr_source__/base/math/types.ts", "/__zephyr_source__/base/math/vector.ts", "/__zephyr_source__/base/orderedstringset.ts", "/__zephyr_source__/base/prng.ts", "/__zephyr_source__/base/rectspacker.ts", "/__zephyr_source__/base/ref.ts", "/__zephyr_source__/base/utils.ts", "/__zephyr_source__/base/vfs/common.ts", "/__zephyr_source__/base/vfs/datatransferfs.ts", "/__zephyr_source__/base/vfs/httpfs.ts", "/__zephyr_source__/base/vfs/idbfs.ts", "/__zephyr_source__/base/vfs/index.ts", "/__zephyr_source__/base/vfs/memfs.ts", "/__zephyr_source__/base/vfs/nullfs.ts", "/__zephyr_source__/base/vfs/readers/generic_html_index_reader.ts", "/__zephyr_source__/base/vfs/readers/python_httpserver_reader.ts", "/__zephyr_source__/base/vfs/readers/reader.ts", "/__zephyr_source__/base/vfs/vfs.ts", "/__zephyr_source__/base/vfs/zipfs.ts", "/__zephyr_source__/device/base_types.ts", "/__zephyr_source__/device/builder/ast.ts", "/__zephyr_source__/device/builder/ast1.ts", "/__zephyr_source__/device/builder/base.ts", "/__zephyr_source__/device/builder/builtinfunc.ts", "/__zephyr_source__/device/builder/constructors.ts", "/__zephyr_source__/device/builder/errors.ts", "/__zephyr_source__/device/builder/index.ts", "/__zephyr_source__/device/builder/misc.ts", "/__zephyr_source__/device/builder/programbuilder.ts", "/__zephyr_source__/device/builder/reflection.ts", "/__zephyr_source__/device/builder/types.ts", "/__zephyr_source__/device/device.ts", "/__zephyr_source__/device/gpuobject.ts", "/__zephyr_source__/device/helpers/drawtext.ts", "/__zephyr_source__/device/helpers/font.ts", "/__zephyr_source__/device/helpers/glyphmanager.ts", "/__zephyr_source__/device/helpers/index.ts", "/__zephyr_source__/device/helpers/textureatlas.ts", "/__zephyr_source__/device/index.ts", "/__zephyr_source__/device/pool.ts", "/__zephyr_source__/device/render_states.ts", "/__zephyr_source__/device/timer.ts", "/__zephyr_source__/device/uniformdata.ts", "/__zephyr_source__/device/vertexdata.ts", "/__zephyr_source__/scene/animation/animation.ts", "/__zephyr_source__/scene/animation/animationcontroller.ts", "/__zephyr_source__/scene/animation/animationmask.ts", "/__zephyr_source__/scene/animation/animationset.ts", "/__zephyr_source__/scene/animation/animationtimeline.ts", "/__zephyr_source__/scene/animation/animationtrack.ts", "/__zephyr_source__/scene/animation/cloth/gpu_cloth_system.ts", "/__zephyr_source__/scene/animation/cloth/index.ts", "/__zephyr_source__/scene/animation/eulerrotationtrack.ts", "/__zephyr_source__/scene/animation/fixed_geometry_cache_track.ts", "/__zephyr_source__/scene/animation/geometry_cache_utils.ts", "/__zephyr_source__/scene/animation/ik/ccd_solver.ts", "/__zephyr_source__/scene/animation/ik/fabrik_solver.ts", "/__zephyr_source__/scene/animation/ik/ik_angle_constraint.ts", "/__zephyr_source__/scene/animation/ik/ik_chain.ts", "/__zephyr_source__/scene/animation/ik/ik_constraint.ts", "/__zephyr_source__/scene/animation/ik/ik_joint.ts", "/__zephyr_source__/scene/animation/ik/ik_solver.ts", "/__zephyr_source__/scene/animation/ik/ik_utils.ts", "/__zephyr_source__/scene/animation/ik/index.ts", "/__zephyr_source__/scene/animation/ik/two_bone_ik_solver.ts", "/__zephyr_source__/scene/animation/ik_modifier.ts", "/__zephyr_source__/scene/animation/index.ts", "/__zephyr_source__/scene/animation/joint_dynamics/collision.ts", "/__zephyr_source__/scene/animation/joint_dynamics/constraints.ts", "/__zephyr_source__/scene/animation/joint_dynamics/controller.ts", "/__zephyr_source__/scene/animation/joint_dynamics/index.ts", "/__zephyr_source__/scene/animation/joint_dynamics/joint_dynamics_system.ts", "/__zephyr_source__/scene/animation/joint_dynamics/solver.ts", "/__zephyr_source__/scene/animation/joint_dynamics/types.ts", "/__zephyr_source__/scene/animation/joint_dynamics_modifier.ts", "/__zephyr_source__/scene/animation/morphtarget.ts", "/__zephyr_source__/scene/animation/morphtrack.ts", "/__zephyr_source__/scene/animation/pca_geometry_cache_track.ts", "/__zephyr_source__/scene/animation/proptrack.ts", "/__zephyr_source__/scene/animation/rotationtrack.ts", "/__zephyr_source__/scene/animation/scaletrack.ts", "/__zephyr_source__/scene/animation/skeleton.ts", "/__zephyr_source__/scene/animation/skeleton_modifier.ts", "/__zephyr_source__/scene/animation/spring/index.ts", "/__zephyr_source__/scene/animation/spring/multi_chain_spring_system.ts", "/__zephyr_source__/scene/animation/spring/spring_chain.ts", "/__zephyr_source__/scene/animation/spring/spring_collider.ts", "/__zephyr_source__/scene/animation/spring/spring_constraint.ts", "/__zephyr_source__/scene/animation/spring/spring_particle.ts", "/__zephyr_source__/scene/animation/spring/spring_system.ts", "/__zephyr_source__/scene/animation/spring_modifier.ts", "/__zephyr_source__/scene/animation/translationtrack.ts", "/__zephyr_source__/scene/app/api.ts", "/__zephyr_source__/scene/app/app.ts", "/__zephyr_source__/scene/app/engine.ts", "/__zephyr_source__/scene/app/index.ts", "/__zephyr_source__/scene/app/inputmgr.ts", "/__zephyr_source__/scene/app/runtimescript.ts", "/__zephyr_source__/scene/app/screen.ts", "/__zephyr_source__/scene/app/scriptingsystem.ts", "/__zephyr_source__/scene/app/scriptregistry.ts", "/__zephyr_source__/scene/asset/assetmanager.ts", "/__zephyr_source__/scene/asset/builtin.ts", "/__zephyr_source__/scene/asset/index.ts", "/__zephyr_source__/scene/asset/loaders/dds/dds.ts", "/__zephyr_source__/scene/asset/loaders/dds/dds_loader.ts", "/__zephyr_source__/scene/asset/loaders/hdr/hdr.ts", "/__zephyr_source__/scene/asset/loaders/image/tga_Loader.ts", "/__zephyr_source__/scene/asset/loaders/image/webimage_loader.ts", "/__zephyr_source__/scene/asset/loaders/loader.ts", "/__zephyr_source__/scene/asset/loaders/zabc/zabc_loader.ts", "/__zephyr_source__/scene/asset/model.ts", "/__zephyr_source__/scene/avatar/index.ts", "/__zephyr_source__/scene/avatar/wardrobe.ts", "/__zephyr_source__/scene/blitter/bilateralblur.ts", "/__zephyr_source__/scene/blitter/blitter.ts", "/__zephyr_source__/scene/blitter/box.ts", "/__zephyr_source__/scene/blitter/copy.ts", "/__zephyr_source__/scene/blitter/gaussianblur.ts", "/__zephyr_source__/scene/blitter/index.ts", "/__zephyr_source__/scene/blitter/linearize.ts", "/__zephyr_source__/scene/blitter/linearizedepth.ts", "/__zephyr_source__/scene/camera/base.ts", "/__zephyr_source__/scene/camera/camera.ts", "/__zephyr_source__/scene/camera/fps.ts", "/__zephyr_source__/scene/camera/index.ts", "/__zephyr_source__/scene/camera/orbit.ts", "/__zephyr_source__/scene/camera/orthocamera.ts", "/__zephyr_source__/scene/camera/perspectivecamera.ts", "/__zephyr_source__/scene/index.ts", "/__zephyr_source__/scene/material/blinn.ts", "/__zephyr_source__/scene/material/grassmaterial.ts", "/__zephyr_source__/scene/material/index.ts", "/__zephyr_source__/scene/material/lambert.ts", "/__zephyr_source__/scene/material/material.ts", "/__zephyr_source__/scene/material/meshmaterial.ts", "/__zephyr_source__/scene/material/mixins/albedocolor.ts", "/__zephyr_source__/scene/material/mixins/foliage.ts", "/__zephyr_source__/scene/material/mixins/lightmodel/blinnphong.ts", "/__zephyr_source__/scene/material/mixins/lightmodel/lambert.ts", "/__zephyr_source__/scene/material/mixins/lightmodel/pbrblueprintmixin.ts", "/__zephyr_source__/scene/material/mixins/lightmodel/pbrmetallicroughness.ts", "/__zephyr_source__/scene/material/mixins/lightmodel/pbrspecularglossness.ts", "/__zephyr_source__/scene/material/mixins/lit.ts", "/__zephyr_source__/scene/material/mixins/pbr/brdf.ts", "/__zephyr_source__/scene/material/mixins/pbr/common.ts", "/__zephyr_source__/scene/material/mixins/texture.ts", "/__zephyr_source__/scene/material/mixins/vertexcolor.ts", "/__zephyr_source__/scene/material/msdf_text.ts", "/__zephyr_source__/scene/material/msdf_text_sprite.ts", "/__zephyr_source__/scene/material/mtoon.ts", "/__zephyr_source__/scene/material/particle.ts", "/__zephyr_source__/scene/material/pbrblueprint.ts", "/__zephyr_source__/scene/material/pbrmr.ts", "/__zephyr_source__/scene/material/pbrsg.ts", "/__zephyr_source__/scene/material/shader/helper.ts", "/__zephyr_source__/scene/material/sprite.ts", "/__zephyr_source__/scene/material/spriteblueprint.ts", "/__zephyr_source__/scene/material/sprite_sdf.ts", "/__zephyr_source__/scene/material/sprite_std.ts", "/__zephyr_source__/scene/material/stackedmaterial.ts", "/__zephyr_source__/scene/material/subsurfaceprofile.ts", "/__zephyr_source__/scene/material/terrain-cm.ts", "/__zephyr_source__/scene/material/unlit.ts", "/__zephyr_source__/scene/material/water.ts", "/__zephyr_source__/scene/posteffect/bloom.ts", "/__zephyr_source__/scene/posteffect/coloradjust.ts", "/__zephyr_source__/scene/posteffect/compositor.ts", "/__zephyr_source__/scene/posteffect/fxaa.ts", "/__zephyr_source__/scene/posteffect/grayscale.ts", "/__zephyr_source__/scene/posteffect/index.ts", "/__zephyr_source__/scene/posteffect/motionblur.ts", "/__zephyr_source__/scene/posteffect/posteffect.ts", "/__zephyr_source__/scene/posteffect/sao.ts", "/__zephyr_source__/scene/posteffect/ssr.ts", "/__zephyr_source__/scene/posteffect/sss.ts", "/__zephyr_source__/scene/posteffect/taa.ts", "/__zephyr_source__/scene/posteffect/tonemap.ts", "/__zephyr_source__/scene/render/abuffer_oit.ts", "/__zephyr_source__/scene/render/clipmap.ts", "/__zephyr_source__/scene/render/cluster_light.ts", "/__zephyr_source__/scene/render/cull_visitor.ts", "/__zephyr_source__/scene/render/depthpass.ts", "/__zephyr_source__/scene/render/drawable.ts", "/__zephyr_source__/scene/render/drawable_mixin.ts", "/__zephyr_source__/scene/render/envlight.ts", "/__zephyr_source__/scene/render/fbm_wavegenerator.ts", "/__zephyr_source__/scene/render/fft_wavegenerator.ts", "/__zephyr_source__/scene/render/fullscreenquad.ts", "/__zephyr_source__/scene/render/gerstner_wavegenerator.ts", "/__zephyr_source__/scene/render/globalbindgroup_allocator.ts", "/__zephyr_source__/scene/render/gpu_picking.ts", "/__zephyr_source__/scene/render/hzb.ts", "/__zephyr_source__/scene/render/index.ts", "/__zephyr_source__/scene/render/lightpass.ts", "/__zephyr_source__/scene/render/objectcolorpass.ts", "/__zephyr_source__/scene/render/oit.ts", "/__zephyr_source__/scene/render/primitive.ts", "/__zephyr_source__/scene/render/renderbundle_wrapper.ts", "/__zephyr_source__/scene/render/renderer.ts", "/__zephyr_source__/scene/render/rendergraph/device_pool_allocator.ts", "/__zephyr_source__/scene/render/rendergraph/executor.ts", "/__zephyr_source__/scene/render/rendergraph/forward_plus_builder.ts", "/__zephyr_source__/scene/render/rendergraph/history_resources.ts", "/__zephyr_source__/scene/render/rendergraph/history_resource_manager.ts", "/__zephyr_source__/scene/render/rendergraph/index.ts", "/__zephyr_source__/scene/render/rendergraph/rendergraph.ts", "/__zephyr_source__/scene/render/rendergraph/types.ts", "/__zephyr_source__/scene/render/renderpass.ts", "/__zephyr_source__/scene/render/rendertarget.ts", "/__zephyr_source__/scene/render/render_queue.ts", "/__zephyr_source__/scene/render/screenrendertarget.ts", "/__zephyr_source__/scene/render/shadowmap_pass.ts", "/__zephyr_source__/scene/render/sky.ts", "/__zephyr_source__/scene/render/wavegenerator.ts", "/__zephyr_source__/scene/render/weightedblended_oit.ts", "/__zephyr_source__/scene/scene/basesprite.ts", "/__zephyr_source__/scene/scene/batchgroup.ts", "/__zephyr_source__/scene/scene/environment.ts", "/__zephyr_source__/scene/scene/graph_node.ts", "/__zephyr_source__/scene/scene/index.ts", "/__zephyr_source__/scene/scene/light.ts", "/__zephyr_source__/scene/scene/mesh.ts", "/__zephyr_source__/scene/scene/meshdrawable.ts", "/__zephyr_source__/scene/scene/msdftext.ts", "/__zephyr_source__/scene/scene/msdftextsprite.ts", "/__zephyr_source__/scene/scene/octree.ts", "/__zephyr_source__/scene/scene/particlesys.ts", "/__zephyr_source__/scene/scene/raycast_visitor.ts", "/__zephyr_source__/scene/scene/scene.ts", "/__zephyr_source__/scene/scene/scene_node.ts", "/__zephyr_source__/scene/scene/script_attachment.ts", "/__zephyr_source__/scene/scene/sprite.ts", "/__zephyr_source__/scene/scene/terrain-cm/grass.ts", "/__zephyr_source__/scene/scene/terrain-cm/grassmaterial.ts", "/__zephyr_source__/scene/scene/terrain-cm/index.ts", "/__zephyr_source__/scene/scene/terrain-cm/terrain-cm.ts", "/__zephyr_source__/scene/scene/textsprite.ts", "/__zephyr_source__/scene/scene/visitor.ts", "/__zephyr_source__/scene/scene/water.ts", "/__zephyr_source__/scene/shaders/atmosphere.ts", "/__zephyr_source__/scene/shaders/fog.ts", "/__zephyr_source__/scene/shaders/index.ts", "/__zephyr_source__/scene/shaders/misc.ts", "/__zephyr_source__/scene/shaders/noise.ts", "/__zephyr_source__/scene/shaders/pbr.ts", "/__zephyr_source__/scene/shaders/shadow.ts", "/__zephyr_source__/scene/shaders/ssr.ts", "/__zephyr_source__/scene/shaders/temporal.ts", "/__zephyr_source__/scene/shaders/water.ts", "/__zephyr_source__/scene/shadow/esm.ts", "/__zephyr_source__/scene/shadow/index.ts", "/__zephyr_source__/scene/shadow/pcf_opt.ts", "/__zephyr_source__/scene/shadow/pcf_pd.ts", "/__zephyr_source__/scene/shadow/shader.ts", "/__zephyr_source__/scene/shadow/shadowmapper.ts", "/__zephyr_source__/scene/shadow/shadow_impl.ts", "/__zephyr_source__/scene/shadow/shadow_region.ts", "/__zephyr_source__/scene/shadow/ssm.ts", "/__zephyr_source__/scene/shadow/vsm.ts", "/__zephyr_source__/scene/shapes/box.ts", "/__zephyr_source__/scene/shapes/capsule.ts", "/__zephyr_source__/scene/shapes/cylinder.ts", "/__zephyr_source__/scene/shapes/index.ts", "/__zephyr_source__/scene/shapes/plane.ts", "/__zephyr_source__/scene/shapes/shape.ts", "/__zephyr_source__/scene/shapes/sphere.ts", "/__zephyr_source__/scene/shapes/tetrahedron.ts", "/__zephyr_source__/scene/shapes/torus.ts", "/__zephyr_source__/scene/text/font/cff_font.ts", "/__zephyr_source__/scene/text/font/font_asset.ts", "/__zephyr_source__/scene/text/font/index.ts", "/__zephyr_source__/scene/text/font/sfnt_reader.ts", "/__zephyr_source__/scene/text/font/types.ts", "/__zephyr_source__/scene/text/index.ts", "/__zephyr_source__/scene/text/msdf/generator.ts", "/__zephyr_source__/scene/text/msdf/index.ts", "/__zephyr_source__/scene/text/msdf/shape.ts", "/__zephyr_source__/scene/text/msdf/types.ts", "/__zephyr_source__/scene/text/runtime/index.ts", "/__zephyr_source__/scene/text/runtime/msdf_glyph_atlas.ts", "/__zephyr_source__/scene/text/runtime/msdf_text_atlas_manager.ts", "/__zephyr_source__/scene/text/runtime/text_layout.ts", "/__zephyr_source__/scene/utility/aabbtree.ts", "/__zephyr_source__/scene/utility/blueprint/common/constants.ts", "/__zephyr_source__/scene/utility/blueprint/common/math.ts", "/__zephyr_source__/scene/utility/blueprint/common.ts", "/__zephyr_source__/scene/utility/blueprint/material/func.ts", "/__zephyr_source__/scene/utility/blueprint/material/inputs.ts", "/__zephyr_source__/scene/utility/blueprint/material/ir.ts", "/__zephyr_source__/scene/utility/blueprint/material/pbr.ts", "/__zephyr_source__/scene/utility/blueprint/material/texture.ts", "/__zephyr_source__/scene/utility/blueprint/node.ts", "/__zephyr_source__/scene/utility/bounding_volume.ts", "/__zephyr_source__/scene/utility/debug.ts", "/__zephyr_source__/scene/utility/draco/decoder.ts", "/__zephyr_source__/scene/utility/index.ts", "/__zephyr_source__/scene/utility/misc.ts", "/__zephyr_source__/scene/utility/panorama.ts", "/__zephyr_source__/scene/utility/pmrem.ts", "/__zephyr_source__/scene/utility/rendermipmap.ts", "/__zephyr_source__/scene/utility/serialization/index.ts", "/__zephyr_source__/scene/utility/serialization/json.ts", "/__zephyr_source__/scene/utility/serialization/manager.ts", "/__zephyr_source__/scene/utility/serialization/scene/animation.ts", "/__zephyr_source__/scene/utility/serialization/scene/batch.ts", "/__zephyr_source__/scene/utility/serialization/scene/camera.ts", "/__zephyr_source__/scene/utility/serialization/scene/common.ts", "/__zephyr_source__/scene/utility/serialization/scene/light.ts", "/__zephyr_source__/scene/utility/serialization/scene/material.ts", "/__zephyr_source__/scene/utility/serialization/scene/mesh.ts", "/__zephyr_source__/scene/utility/serialization/scene/misc.ts", "/__zephyr_source__/scene/utility/serialization/scene/node.ts", "/__zephyr_source__/scene/utility/serialization/scene/particle.ts", "/__zephyr_source__/scene/utility/serialization/scene/primitive.ts", "/__zephyr_source__/scene/utility/serialization/scene/scene.ts", "/__zephyr_source__/scene/utility/serialization/scene/script.ts", "/__zephyr_source__/scene/utility/serialization/scene/sprite.ts", "/__zephyr_source__/scene/utility/serialization/scene/terrain.ts", "/__zephyr_source__/scene/utility/serialization/scene/text.ts", "/__zephyr_source__/scene/utility/serialization/scene/water.ts", "/__zephyr_source__/scene/utility/serialization/types.ts", "/__zephyr_source__/scene/utility/shprojector.ts", "/__zephyr_source__/scene/utility/textures/ggxlut.ts", "/__zephyr_source__/scene/utility/textures/gradientnoise.ts", "/__zephyr_source__/scene/utility/textures/ltcdata.ts", "/__zephyr_source__/scene/utility/textures/ltclut.ts", "/__zephyr_source__/scene/utility/textures/randomnoise.ts", "/__zephyr_source__/scene/utility/textures/sheenlut.ts", "/__zephyr_source__/scene/values.ts", "/__zephyr_source__/loaders/fbx/fbx_importer.ts", "/__zephyr_source__/loaders/fbx/index.ts", "/__zephyr_source__/loaders/fbx/parser.ts", "/__zephyr_source__/loaders/fbx/types.ts", "/__zephyr_source__/loaders/gltf/gltf_importer.ts", "/__zephyr_source__/loaders/gltf/gltf_types.ts", "/__zephyr_source__/loaders/gltf/helpers.ts", "/__zephyr_source__/loaders/gltf/index.ts", "/__zephyr_source__/loaders/importer.ts", "/__zephyr_source__/loaders/index.ts", "/__zephyr_source__/imgui/bind-imgui.d.ts", "/__zephyr_source__/imgui/bind-imgui.js", "/__zephyr_source__/imgui/emscripten.d.ts", "/__zephyr_source__/imgui/imconfig.ts", "/__zephyr_source__/imgui/imgui.ts", "/__zephyr_source__/imgui/imgui_impl.ts", "/__zephyr_source__/imgui/index.ts", "/__zephyr_source__/imgui/renderer.ts", "/__zephyr_source__/backend-webgl/basetexture_webgl.ts", "/__zephyr_source__/backend-webgl/bindgroup_webgl.ts", "/__zephyr_source__/backend-webgl/buffer_webgl.ts", "/__zephyr_source__/backend-webgl/capabilities_webgl.ts", "/__zephyr_source__/backend-webgl/constants_webgl.ts", "/__zephyr_source__/backend-webgl/device_webgl.ts", "/__zephyr_source__/backend-webgl/framebuffer_webgl.ts", "/__zephyr_source__/backend-webgl/gpuobject_webgl.ts", "/__zephyr_source__/backend-webgl/gpuprogram_webgl.ts", "/__zephyr_source__/backend-webgl/gpu_timer.ts", "/__zephyr_source__/backend-webgl/index.ts", "/__zephyr_source__/backend-webgl/indexbuffer_webgl.ts", "/__zephyr_source__/backend-webgl/renderstate_webgl.ts", "/__zephyr_source__/backend-webgl/sampler_cache.ts", "/__zephyr_source__/backend-webgl/sampler_webgl.ts", "/__zephyr_source__/backend-webgl/structuredbuffer_webgl.ts", "/__zephyr_source__/backend-webgl/texture2darray_webgl.ts", "/__zephyr_source__/backend-webgl/texture2d_webgl.ts", "/__zephyr_source__/backend-webgl/texture3d_webgl.ts", "/__zephyr_source__/backend-webgl/texturecube_webgl.ts", "/__zephyr_source__/backend-webgl/texturevideo_webgl.ts", "/__zephyr_source__/backend-webgl/utils.ts", "/__zephyr_source__/backend-webgl/vertexlayout_webgl.ts", "/__zephyr_source__/backend-webgl/webgl_enum.ts", "/__zephyr_source__/backend-webgpu/basetexture_webgpu.ts", "/__zephyr_source__/backend-webgpu/bindgroup_cache.ts", "/__zephyr_source__/backend-webgpu/bindgroup_webgpu.ts", "/__zephyr_source__/backend-webgpu/buffer_webgpu.ts", "/__zephyr_source__/backend-webgpu/capabilities_webgpu.ts", "/__zephyr_source__/backend-webgpu/commandqueue.ts", "/__zephyr_source__/backend-webgpu/computepass_webgpu.ts", "/__zephyr_source__/backend-webgpu/constants_webgpu.ts", "/__zephyr_source__/backend-webgpu/device.ts", "/__zephyr_source__/backend-webgpu/framebuffer_webgpu.ts", "/__zephyr_source__/backend-webgpu/gpuobject_webgpu.ts", "/__zephyr_source__/backend-webgpu/gpuprogram_webgpu.ts", "/__zephyr_source__/backend-webgpu/index.ts", "/__zephyr_source__/backend-webgpu/indexbuffer_webgpu.ts", "/__zephyr_source__/backend-webgpu/pipeline_cache.ts", "/__zephyr_source__/backend-webgpu/renderpass_webgpu.ts", "/__zephyr_source__/backend-webgpu/renderstates_webgpu.ts", "/__zephyr_source__/backend-webgpu/sampler_cache.ts", "/__zephyr_source__/backend-webgpu/sampler_webgpu.ts", "/__zephyr_source__/backend-webgpu/structuredbuffer_webgpu.ts", "/__zephyr_source__/backend-webgpu/texture2darray_webgpu.ts", "/__zephyr_source__/backend-webgpu/texture2d_webgpu.ts", "/__zephyr_source__/backend-webgpu/texture3d_webgpu.ts", "/__zephyr_source__/backend-webgpu/texturecube_webgpu.ts", "/__zephyr_source__/backend-webgpu/texturevideo_webgpu.ts", "/__zephyr_source__/backend-webgpu/uploadringbuffer.ts", "/__zephyr_source__/backend-webgpu/utils_webgpu.ts", "/__zephyr_source__/backend-webgpu/vertexlayout_cache.ts", "/__zephyr_source__/backend-webgpu/vertexlayout_webgpu.ts", "/__zephyr_source__/editor-plugin/app.ts", "/__zephyr_source__/editor-plugin/commands/scenecommands.ts", "/__zephyr_source__/editor-plugin/components/assetthumbnail.ts", "/__zephyr_source__/editor-plugin/components/assistantpanel.ts", "/__zephyr_source__/editor-plugin/components/blueprint/api.ts", "/__zephyr_source__/editor-plugin/components/blueprint/grapheditor.ts", "/__zephyr_source__/editor-plugin/components/blueprint/material/func.ts", "/__zephyr_source__/editor-plugin/components/blueprint/material/inputs.ts", "/__zephyr_source__/editor-plugin/components/blueprint/material/pbr.ts", "/__zephyr_source__/editor-plugin/components/blueprint/material/texture.ts", "/__zephyr_source__/editor-plugin/components/blueprint/node.ts", "/__zephyr_source__/editor-plugin/components/blueprint/nodeeditor.ts", "/__zephyr_source__/editor-plugin/components/blueprint/nodes/constants.ts", "/__zephyr_source__/editor-plugin/components/blueprint/nodes/func.ts", "/__zephyr_source__/editor-plugin/components/blueprint/nodes/math.ts", "/__zephyr_source__/editor-plugin/components/bottomview.ts", "/__zephyr_source__/editor-plugin/components/codeeditor.ts", "/__zephyr_source__/editor-plugin/components/common.ts", "/__zephyr_source__/editor-plugin/components/curveeditor.ts", "/__zephyr_source__/editor-plugin/components/dockpanel.ts", "/__zephyr_source__/editor-plugin/components/dragdrop.ts", "/__zephyr_source__/editor-plugin/components/editablecombo.ts", "/__zephyr_source__/editor-plugin/components/filepicker.ts", "/__zephyr_source__/editor-plugin/components/grid.ts", "/__zephyr_source__/editor-plugin/components/imagelist.ts", "/__zephyr_source__/editor-plugin/components/listview.ts", "/__zephyr_source__/editor-plugin/components/logview.ts", "/__zephyr_source__/editor-plugin/components/menubar.ts", "/__zephyr_source__/editor-plugin/components/modal.ts", "/__zephyr_source__/editor-plugin/components/multicombo.ts", "/__zephyr_source__/editor-plugin/components/noisetexture.ts", "/__zephyr_source__/editor-plugin/components/ramptexture.ts", "/__zephyr_source__/editor-plugin/components/rotationeditor.ts", "/__zephyr_source__/editor-plugin/components/scenehierarchy.ts", "/__zephyr_source__/editor-plugin/components/scriptpanel.ts", "/__zephyr_source__/editor-plugin/components/skeletonview.ts", "/__zephyr_source__/editor-plugin/components/statusbar.ts", "/__zephyr_source__/editor-plugin/components/textinput.ts", "/__zephyr_source__/editor-plugin/components/texturedrawer.ts", "/__zephyr_source__/editor-plugin/components/textureviewer.ts", "/__zephyr_source__/editor-plugin/components/toolbar.ts", "/__zephyr_source__/editor-plugin/components/treeview.ts", "/__zephyr_source__/editor-plugin/components/vfsrenderer.ts", "/__zephyr_source__/editor-plugin/controllers/basecontroller.ts", "/__zephyr_source__/editor-plugin/controllers/scenecontroller.ts", "/__zephyr_source__/editor-plugin/core/build/build.ts", "/__zephyr_source__/editor-plugin/core/build/dep.ts", "/__zephyr_source__/editor-plugin/core/build/loadtypes.ts", "/__zephyr_source__/editor-plugin/core/build/plugins/depresolve.ts", "/__zephyr_source__/editor-plugin/core/build/plugins/tstranspile.ts", "/__zephyr_source__/editor-plugin/core/build/plugins/vfsurl.ts", "/__zephyr_source__/editor-plugin/core/build/templates.ts", "/__zephyr_source__/editor-plugin/core/command.ts", "/__zephyr_source__/editor-plugin/core/editor.ts", "/__zephyr_source__/editor-plugin/core/eventbus.ts", "/__zephyr_source__/editor-plugin/core/fontglyph.ts", "/__zephyr_source__/editor-plugin/core/module.ts", "/__zephyr_source__/editor-plugin/core/plugin.ts", "/__zephyr_source__/editor-plugin/core/pluginapi.ts", "/__zephyr_source__/editor-plugin/core/services/assistant.ts", "/__zephyr_source__/editor-plugin/core/services/desktop.ts", "/__zephyr_source__/editor-plugin/core/services/editorsettings.ts", "/__zephyr_source__/editor-plugin/core/services/electronfs.ts", "/__zephyr_source__/editor-plugin/core/services/project.ts", "/__zephyr_source__/editor-plugin/core/services/resource.ts", "/__zephyr_source__/editor-plugin/core/services/storage.ts", "/__zephyr_source__/editor-plugin/core/services/systemplugin.ts", "/__zephyr_source__/editor-plugin/core/version.ts", "/__zephyr_source__/editor-plugin/editor-plugin.ts", "/__zephyr_source__/editor-plugin/helpers/defaultnodename.ts", "/__zephyr_source__/editor-plugin/helpers/downloader.ts", "/__zephyr_source__/editor-plugin/helpers/editorcontroller.ts", "/__zephyr_source__/editor-plugin/helpers/emoji.ts", "/__zephyr_source__/editor-plugin/helpers/leakdetector.ts", "/__zephyr_source__/editor-plugin/helpers/mcpbridge.ts", "/__zephyr_source__/editor-plugin/helpers/mimematch.ts", "/__zephyr_source__/editor-plugin/helpers/misc.ts", "/__zephyr_source__/editor-plugin/helpers/morphtargetprops.ts", "/__zephyr_source__/editor-plugin/helpers/primitiveglb.ts", "/__zephyr_source__/editor-plugin/helpers/proxy.ts", "/__zephyr_source__/editor-plugin/helpers/scriptprops.ts", "/__zephyr_source__/editor-plugin/helpers/shapeprimitives.ts", "/__zephyr_source__/editor-plugin/models/basemodel.ts", "/__zephyr_source__/editor-plugin/models/scenemodel.ts", "/__zephyr_source__/editor-plugin/monaco-init.ts", "/__zephyr_source__/editor-plugin/types.ts", "/__zephyr_source__/editor-plugin/views/baseview.ts", "/__zephyr_source__/editor-plugin/views/dlg/aboutdlg.ts", "/__zephyr_source__/editor-plugin/views/dlg/createprojectdlg.ts", "/__zephyr_source__/editor-plugin/views/dlg/curveeditordlg.ts", "/__zephyr_source__/editor-plugin/views/dlg/dlg.ts", "/__zephyr_source__/editor-plugin/views/dlg/editcolortrackdlg.ts", "/__zephyr_source__/editor-plugin/views/dlg/editorsettingsdlg.ts", "/__zephyr_source__/editor-plugin/views/dlg/importdlg.ts", "/__zephyr_source__/editor-plugin/views/dlg/importoptionsdlg.ts", "/__zephyr_source__/editor-plugin/views/dlg/materialeditor.ts", "/__zephyr_source__/editor-plugin/views/dlg/materialfunceditor.ts", "/__zephyr_source__/editor-plugin/views/dlg/messagedlg.ts", "/__zephyr_source__/editor-plugin/views/dlg/messageexdlg.ts", "/__zephyr_source__/editor-plugin/views/dlg/noisetexturedlg.ts", "/__zephyr_source__/editor-plugin/views/dlg/opendlg.ts", "/__zephyr_source__/editor-plugin/views/dlg/openfiledlg.ts", "/__zephyr_source__/editor-plugin/views/dlg/openfolderdlg.ts", "/__zephyr_source__/editor-plugin/views/dlg/progressdlg.ts", "/__zephyr_source__/editor-plugin/views/dlg/projectsettingsdlg.ts", "/__zephyr_source__/editor-plugin/views/dlg/promptnamedlg.ts", "/__zephyr_source__/editor-plugin/views/dlg/ramptexturedlg.ts", "/__zephyr_source__/editor-plugin/views/dlg/renamedlg.ts", "/__zephyr_source__/editor-plugin/views/dlg/savefiledlg.ts", "/__zephyr_source__/editor-plugin/views/dlg/selectanimationdlg.ts", "/__zephyr_source__/editor-plugin/views/dlg/skeletoneditor.ts", "/__zephyr_source__/editor-plugin/views/dlg/systempluginsdlg.ts", "/__zephyr_source__/editor-plugin/views/dlg/zabccompressdlg.ts", "/__zephyr_source__/editor-plugin/views/edittools/brushes/base.ts", "/__zephyr_source__/editor-plugin/views/edittools/brushes/flatten.ts", "/__zephyr_source__/editor-plugin/views/edittools/brushes/grass.ts", "/__zephyr_source__/editor-plugin/views/edittools/brushes/height.ts", "/__zephyr_source__/editor-plugin/views/edittools/brushes/hydraulicerosion.ts", "/__zephyr_source__/editor-plugin/views/edittools/brushes/lower.ts", "/__zephyr_source__/editor-plugin/views/edittools/brushes/raise.ts", "/__zephyr_source__/editor-plugin/views/edittools/brushes/smooth.ts", "/__zephyr_source__/editor-plugin/views/edittools/brushes/splat.ts", "/__zephyr_source__/editor-plugin/views/edittools/brushes/thermalerosion.ts", "/__zephyr_source__/editor-plugin/views/edittools/edittool.ts", "/__zephyr_source__/editor-plugin/views/edittools/terrain.ts", "/__zephyr_source__/editor-plugin/views/gizmo/decal.ts", "/__zephyr_source__/editor-plugin/views/gizmo/gizmo.ts", "/__zephyr_source__/editor-plugin/views/gizmo/postgizmo.ts", "/__zephyr_source__/editor-plugin/views/icons.ts", "/__zephyr_source__/editor-plugin/views/misc.ts", "/__zephyr_source__/editor-plugin/views/sceneview.ts", "/__zephyr_source__/editor-plugin/workers/generated_model.ts", "/__zephyr_source__/editor-plugin/workers/zabc_pca.ts", "/__zephyr_source__/editor-plugin/workers/zip.ts"];
36
+ var define_ZEPHYR3D_MONACO_SOURCE_FILES_default = ["/__zephyr_source__/base/diff.ts", "/__zephyr_source__/base/event.ts", "/__zephyr_source__/base/index.ts", "/__zephyr_source__/base/linkedlist.ts", "/__zephyr_source__/base/math/aabb.ts", "/__zephyr_source__/base/math/fft/complex.ts", "/__zephyr_source__/base/math/fft/fft.ts", "/__zephyr_source__/base/math/fft/fft2.ts", "/__zephyr_source__/base/math/fft/index.ts", "/__zephyr_source__/base/math/frustum.ts", "/__zephyr_source__/base/math/half.ts", "/__zephyr_source__/base/math/heightfield.ts", "/__zephyr_source__/base/math/index.ts", "/__zephyr_source__/base/math/interpolator.ts", "/__zephyr_source__/base/math/misc.ts", "/__zephyr_source__/base/math/noise.ts", "/__zephyr_source__/base/math/plane.ts", "/__zephyr_source__/base/math/ray.ts", "/__zephyr_source__/base/math/sh.ts", "/__zephyr_source__/base/math/tangent.ts", "/__zephyr_source__/base/math/types.ts", "/__zephyr_source__/base/math/vector.ts", "/__zephyr_source__/base/orderedstringset.ts", "/__zephyr_source__/base/prng.ts", "/__zephyr_source__/base/rectspacker.ts", "/__zephyr_source__/base/ref.ts", "/__zephyr_source__/base/utils.ts", "/__zephyr_source__/base/vfs/common.ts", "/__zephyr_source__/base/vfs/datatransferfs.ts", "/__zephyr_source__/base/vfs/httpfs.ts", "/__zephyr_source__/base/vfs/idbfs.ts", "/__zephyr_source__/base/vfs/index.ts", "/__zephyr_source__/base/vfs/memfs.ts", "/__zephyr_source__/base/vfs/nullfs.ts", "/__zephyr_source__/base/vfs/readers/generic_html_index_reader.ts", "/__zephyr_source__/base/vfs/readers/python_httpserver_reader.ts", "/__zephyr_source__/base/vfs/readers/reader.ts", "/__zephyr_source__/base/vfs/vfs.ts", "/__zephyr_source__/base/vfs/zipfs.ts", "/__zephyr_source__/device/base_types.ts", "/__zephyr_source__/device/builder/ast.ts", "/__zephyr_source__/device/builder/ast1.ts", "/__zephyr_source__/device/builder/base.ts", "/__zephyr_source__/device/builder/builtinfunc.ts", "/__zephyr_source__/device/builder/constructors.ts", "/__zephyr_source__/device/builder/errors.ts", "/__zephyr_source__/device/builder/index.ts", "/__zephyr_source__/device/builder/misc.ts", "/__zephyr_source__/device/builder/programbuilder.ts", "/__zephyr_source__/device/builder/reflection.ts", "/__zephyr_source__/device/builder/types.ts", "/__zephyr_source__/device/device.ts", "/__zephyr_source__/device/gpuobject.ts", "/__zephyr_source__/device/helpers/drawtext.ts", "/__zephyr_source__/device/helpers/font.ts", "/__zephyr_source__/device/helpers/glyphmanager.ts", "/__zephyr_source__/device/helpers/index.ts", "/__zephyr_source__/device/helpers/textureatlas.ts", "/__zephyr_source__/device/index.ts", "/__zephyr_source__/device/pool.ts", "/__zephyr_source__/device/render_states.ts", "/__zephyr_source__/device/timer.ts", "/__zephyr_source__/device/uniformdata.ts", "/__zephyr_source__/device/vertexdata.ts", "/__zephyr_source__/scene/animation/animation.ts", "/__zephyr_source__/scene/animation/animationcontroller.ts", "/__zephyr_source__/scene/animation/animationmask.ts", "/__zephyr_source__/scene/animation/animationset.ts", "/__zephyr_source__/scene/animation/animationtimeline.ts", "/__zephyr_source__/scene/animation/animationtrack.ts", "/__zephyr_source__/scene/animation/cloth/gpu_cloth_system.ts", "/__zephyr_source__/scene/animation/cloth/index.ts", "/__zephyr_source__/scene/animation/eulerrotationtrack.ts", "/__zephyr_source__/scene/animation/fixed_geometry_cache_track.ts", "/__zephyr_source__/scene/animation/geometry_cache_utils.ts", "/__zephyr_source__/scene/animation/ik/ccd_solver.ts", "/__zephyr_source__/scene/animation/ik/fabrik_solver.ts", "/__zephyr_source__/scene/animation/ik/ik_angle_constraint.ts", "/__zephyr_source__/scene/animation/ik/ik_chain.ts", "/__zephyr_source__/scene/animation/ik/ik_constraint.ts", "/__zephyr_source__/scene/animation/ik/ik_joint.ts", "/__zephyr_source__/scene/animation/ik/ik_solver.ts", "/__zephyr_source__/scene/animation/ik/ik_utils.ts", "/__zephyr_source__/scene/animation/ik/index.ts", "/__zephyr_source__/scene/animation/ik/two_bone_ik_solver.ts", "/__zephyr_source__/scene/animation/ik_modifier.ts", "/__zephyr_source__/scene/animation/index.ts", "/__zephyr_source__/scene/animation/joint_dynamics/collision.ts", "/__zephyr_source__/scene/animation/joint_dynamics/constraints.ts", "/__zephyr_source__/scene/animation/joint_dynamics/controller.ts", "/__zephyr_source__/scene/animation/joint_dynamics/index.ts", "/__zephyr_source__/scene/animation/joint_dynamics/joint_dynamics_system.ts", "/__zephyr_source__/scene/animation/joint_dynamics/solver.ts", "/__zephyr_source__/scene/animation/joint_dynamics/types.ts", "/__zephyr_source__/scene/animation/joint_dynamics_modifier.ts", "/__zephyr_source__/scene/animation/morphtarget.ts", "/__zephyr_source__/scene/animation/morphtargetgrouptrack.ts", "/__zephyr_source__/scene/animation/morphtrack.ts", "/__zephyr_source__/scene/animation/pca_geometry_cache_track.ts", "/__zephyr_source__/scene/animation/proptrack.ts", "/__zephyr_source__/scene/animation/rotationtrack.ts", "/__zephyr_source__/scene/animation/scaletrack.ts", "/__zephyr_source__/scene/animation/skeleton.ts", "/__zephyr_source__/scene/animation/skeleton_modifier.ts", "/__zephyr_source__/scene/animation/spring/index.ts", "/__zephyr_source__/scene/animation/spring/multi_chain_spring_system.ts", "/__zephyr_source__/scene/animation/spring/spring_chain.ts", "/__zephyr_source__/scene/animation/spring/spring_collider.ts", "/__zephyr_source__/scene/animation/spring/spring_constraint.ts", "/__zephyr_source__/scene/animation/spring/spring_particle.ts", "/__zephyr_source__/scene/animation/spring/spring_system.ts", "/__zephyr_source__/scene/animation/spring_modifier.ts", "/__zephyr_source__/scene/animation/translationtrack.ts", "/__zephyr_source__/scene/app/api.ts", "/__zephyr_source__/scene/app/app.ts", "/__zephyr_source__/scene/app/engine.ts", "/__zephyr_source__/scene/app/index.ts", "/__zephyr_source__/scene/app/inputmgr.ts", "/__zephyr_source__/scene/app/runtimescript.ts", "/__zephyr_source__/scene/app/screen.ts", "/__zephyr_source__/scene/app/scriptingsystem.ts", "/__zephyr_source__/scene/app/scriptregistry.ts", "/__zephyr_source__/scene/asset/assetmanager.ts", "/__zephyr_source__/scene/asset/builtin.ts", "/__zephyr_source__/scene/asset/index.ts", "/__zephyr_source__/scene/asset/loaders/dds/dds.ts", "/__zephyr_source__/scene/asset/loaders/dds/dds_loader.ts", "/__zephyr_source__/scene/asset/loaders/hdr/hdr.ts", "/__zephyr_source__/scene/asset/loaders/image/tga_Loader.ts", "/__zephyr_source__/scene/asset/loaders/image/webimage_loader.ts", "/__zephyr_source__/scene/asset/loaders/loader.ts", "/__zephyr_source__/scene/asset/loaders/zabc/zabc_loader.ts", "/__zephyr_source__/scene/asset/model.ts", "/__zephyr_source__/scene/avatar/index.ts", "/__zephyr_source__/scene/avatar/wardrobe.ts", "/__zephyr_source__/scene/blitter/bilateralblur.ts", "/__zephyr_source__/scene/blitter/blitter.ts", "/__zephyr_source__/scene/blitter/box.ts", "/__zephyr_source__/scene/blitter/copy.ts", "/__zephyr_source__/scene/blitter/gaussianblur.ts", "/__zephyr_source__/scene/blitter/index.ts", "/__zephyr_source__/scene/blitter/linearize.ts", "/__zephyr_source__/scene/blitter/linearizedepth.ts", "/__zephyr_source__/scene/camera/base.ts", "/__zephyr_source__/scene/camera/camera.ts", "/__zephyr_source__/scene/camera/fps.ts", "/__zephyr_source__/scene/camera/index.ts", "/__zephyr_source__/scene/camera/orbit.ts", "/__zephyr_source__/scene/camera/orthocamera.ts", "/__zephyr_source__/scene/camera/perspectivecamera.ts", "/__zephyr_source__/scene/index.ts", "/__zephyr_source__/scene/material/blinn.ts", "/__zephyr_source__/scene/material/grassmaterial.ts", "/__zephyr_source__/scene/material/index.ts", "/__zephyr_source__/scene/material/lambert.ts", "/__zephyr_source__/scene/material/material.ts", "/__zephyr_source__/scene/material/meshmaterial.ts", "/__zephyr_source__/scene/material/mixins/albedocolor.ts", "/__zephyr_source__/scene/material/mixins/foliage.ts", "/__zephyr_source__/scene/material/mixins/lightmodel/blinnphong.ts", "/__zephyr_source__/scene/material/mixins/lightmodel/lambert.ts", "/__zephyr_source__/scene/material/mixins/lightmodel/pbrblueprintmixin.ts", "/__zephyr_source__/scene/material/mixins/lightmodel/pbrmetallicroughness.ts", "/__zephyr_source__/scene/material/mixins/lightmodel/pbrspecularglossness.ts", "/__zephyr_source__/scene/material/mixins/lit.ts", "/__zephyr_source__/scene/material/mixins/pbr/brdf.ts", "/__zephyr_source__/scene/material/mixins/pbr/common.ts", "/__zephyr_source__/scene/material/mixins/texture.ts", "/__zephyr_source__/scene/material/mixins/vertexcolor.ts", "/__zephyr_source__/scene/material/msdf_text.ts", "/__zephyr_source__/scene/material/msdf_text_sprite.ts", "/__zephyr_source__/scene/material/mtoon.ts", "/__zephyr_source__/scene/material/particle.ts", "/__zephyr_source__/scene/material/pbrblueprint.ts", "/__zephyr_source__/scene/material/pbrmr.ts", "/__zephyr_source__/scene/material/pbrsg.ts", "/__zephyr_source__/scene/material/shader/helper.ts", "/__zephyr_source__/scene/material/sprite.ts", "/__zephyr_source__/scene/material/spriteblueprint.ts", "/__zephyr_source__/scene/material/sprite_sdf.ts", "/__zephyr_source__/scene/material/sprite_std.ts", "/__zephyr_source__/scene/material/stackedmaterial.ts", "/__zephyr_source__/scene/material/subsurfaceprofile.ts", "/__zephyr_source__/scene/material/terrain-cm.ts", "/__zephyr_source__/scene/material/unlit.ts", "/__zephyr_source__/scene/material/water.ts", "/__zephyr_source__/scene/posteffect/bloom.ts", "/__zephyr_source__/scene/posteffect/coloradjust.ts", "/__zephyr_source__/scene/posteffect/compositor.ts", "/__zephyr_source__/scene/posteffect/fxaa.ts", "/__zephyr_source__/scene/posteffect/grayscale.ts", "/__zephyr_source__/scene/posteffect/index.ts", "/__zephyr_source__/scene/posteffect/motionblur.ts", "/__zephyr_source__/scene/posteffect/posteffect.ts", "/__zephyr_source__/scene/posteffect/sao.ts", "/__zephyr_source__/scene/posteffect/ssr.ts", "/__zephyr_source__/scene/posteffect/sss.ts", "/__zephyr_source__/scene/posteffect/taa.ts", "/__zephyr_source__/scene/posteffect/tonemap.ts", "/__zephyr_source__/scene/render/abuffer_oit.ts", "/__zephyr_source__/scene/render/clipmap.ts", "/__zephyr_source__/scene/render/cluster_light.ts", "/__zephyr_source__/scene/render/cull_visitor.ts", "/__zephyr_source__/scene/render/depthpass.ts", "/__zephyr_source__/scene/render/drawable.ts", "/__zephyr_source__/scene/render/drawable_mixin.ts", "/__zephyr_source__/scene/render/envlight.ts", "/__zephyr_source__/scene/render/fbm_wavegenerator.ts", "/__zephyr_source__/scene/render/fft_wavegenerator.ts", "/__zephyr_source__/scene/render/fullscreenquad.ts", "/__zephyr_source__/scene/render/gerstner_wavegenerator.ts", "/__zephyr_source__/scene/render/globalbindgroup_allocator.ts", "/__zephyr_source__/scene/render/gpu_picking.ts", "/__zephyr_source__/scene/render/hzb.ts", "/__zephyr_source__/scene/render/index.ts", "/__zephyr_source__/scene/render/lightpass.ts", "/__zephyr_source__/scene/render/objectcolorpass.ts", "/__zephyr_source__/scene/render/oit.ts", "/__zephyr_source__/scene/render/primitive.ts", "/__zephyr_source__/scene/render/renderbundle_wrapper.ts", "/__zephyr_source__/scene/render/renderer.ts", "/__zephyr_source__/scene/render/rendergraph/device_pool_allocator.ts", "/__zephyr_source__/scene/render/rendergraph/executor.ts", "/__zephyr_source__/scene/render/rendergraph/forward_plus_builder.ts", "/__zephyr_source__/scene/render/rendergraph/history_resources.ts", "/__zephyr_source__/scene/render/rendergraph/history_resource_manager.ts", "/__zephyr_source__/scene/render/rendergraph/index.ts", "/__zephyr_source__/scene/render/rendergraph/rendergraph.ts", "/__zephyr_source__/scene/render/rendergraph/types.ts", "/__zephyr_source__/scene/render/renderpass.ts", "/__zephyr_source__/scene/render/rendertarget.ts", "/__zephyr_source__/scene/render/render_queue.ts", "/__zephyr_source__/scene/render/screenrendertarget.ts", "/__zephyr_source__/scene/render/shadowmap_pass.ts", "/__zephyr_source__/scene/render/sky.ts", "/__zephyr_source__/scene/render/wavegenerator.ts", "/__zephyr_source__/scene/render/weightedblended_oit.ts", "/__zephyr_source__/scene/scene/basesprite.ts", "/__zephyr_source__/scene/scene/batchgroup.ts", "/__zephyr_source__/scene/scene/environment.ts", "/__zephyr_source__/scene/scene/graph_node.ts", "/__zephyr_source__/scene/scene/index.ts", "/__zephyr_source__/scene/scene/light.ts", "/__zephyr_source__/scene/scene/mesh.ts", "/__zephyr_source__/scene/scene/meshdrawable.ts", "/__zephyr_source__/scene/scene/msdftext.ts", "/__zephyr_source__/scene/scene/msdftextsprite.ts", "/__zephyr_source__/scene/scene/octree.ts", "/__zephyr_source__/scene/scene/particlesys.ts", "/__zephyr_source__/scene/scene/raycast_visitor.ts", "/__zephyr_source__/scene/scene/scene.ts", "/__zephyr_source__/scene/scene/scene_node.ts", "/__zephyr_source__/scene/scene/script_attachment.ts", "/__zephyr_source__/scene/scene/sprite.ts", "/__zephyr_source__/scene/scene/terrain-cm/grass.ts", "/__zephyr_source__/scene/scene/terrain-cm/grassmaterial.ts", "/__zephyr_source__/scene/scene/terrain-cm/index.ts", "/__zephyr_source__/scene/scene/terrain-cm/terrain-cm.ts", "/__zephyr_source__/scene/scene/textsprite.ts", "/__zephyr_source__/scene/scene/visitor.ts", "/__zephyr_source__/scene/scene/water.ts", "/__zephyr_source__/scene/shaders/atmosphere.ts", "/__zephyr_source__/scene/shaders/fog.ts", "/__zephyr_source__/scene/shaders/index.ts", "/__zephyr_source__/scene/shaders/misc.ts", "/__zephyr_source__/scene/shaders/noise.ts", "/__zephyr_source__/scene/shaders/pbr.ts", "/__zephyr_source__/scene/shaders/shadow.ts", "/__zephyr_source__/scene/shaders/ssr.ts", "/__zephyr_source__/scene/shaders/temporal.ts", "/__zephyr_source__/scene/shaders/water.ts", "/__zephyr_source__/scene/shadow/esm.ts", "/__zephyr_source__/scene/shadow/index.ts", "/__zephyr_source__/scene/shadow/pcf_opt.ts", "/__zephyr_source__/scene/shadow/pcf_pd.ts", "/__zephyr_source__/scene/shadow/shader.ts", "/__zephyr_source__/scene/shadow/shadowmapper.ts", "/__zephyr_source__/scene/shadow/shadow_impl.ts", "/__zephyr_source__/scene/shadow/shadow_region.ts", "/__zephyr_source__/scene/shadow/ssm.ts", "/__zephyr_source__/scene/shadow/vsm.ts", "/__zephyr_source__/scene/shapes/box.ts", "/__zephyr_source__/scene/shapes/capsule.ts", "/__zephyr_source__/scene/shapes/cylinder.ts", "/__zephyr_source__/scene/shapes/index.ts", "/__zephyr_source__/scene/shapes/plane.ts", "/__zephyr_source__/scene/shapes/shape.ts", "/__zephyr_source__/scene/shapes/sphere.ts", "/__zephyr_source__/scene/shapes/tetrahedron.ts", "/__zephyr_source__/scene/shapes/torus.ts", "/__zephyr_source__/scene/text/font/cff_font.ts", "/__zephyr_source__/scene/text/font/font_asset.ts", "/__zephyr_source__/scene/text/font/index.ts", "/__zephyr_source__/scene/text/font/sfnt_reader.ts", "/__zephyr_source__/scene/text/font/types.ts", "/__zephyr_source__/scene/text/index.ts", "/__zephyr_source__/scene/text/msdf/generator.ts", "/__zephyr_source__/scene/text/msdf/index.ts", "/__zephyr_source__/scene/text/msdf/shape.ts", "/__zephyr_source__/scene/text/msdf/types.ts", "/__zephyr_source__/scene/text/runtime/index.ts", "/__zephyr_source__/scene/text/runtime/msdf_glyph_atlas.ts", "/__zephyr_source__/scene/text/runtime/msdf_text_atlas_manager.ts", "/__zephyr_source__/scene/text/runtime/text_layout.ts", "/__zephyr_source__/scene/utility/aabbtree.ts", "/__zephyr_source__/scene/utility/blueprint/common/constants.ts", "/__zephyr_source__/scene/utility/blueprint/common/math.ts", "/__zephyr_source__/scene/utility/blueprint/common.ts", "/__zephyr_source__/scene/utility/blueprint/material/func.ts", "/__zephyr_source__/scene/utility/blueprint/material/inputs.ts", "/__zephyr_source__/scene/utility/blueprint/material/ir.ts", "/__zephyr_source__/scene/utility/blueprint/material/pbr.ts", "/__zephyr_source__/scene/utility/blueprint/material/texture.ts", "/__zephyr_source__/scene/utility/blueprint/node.ts", "/__zephyr_source__/scene/utility/bounding_volume.ts", "/__zephyr_source__/scene/utility/debug.ts", "/__zephyr_source__/scene/utility/draco/decoder.ts", "/__zephyr_source__/scene/utility/index.ts", "/__zephyr_source__/scene/utility/misc.ts", "/__zephyr_source__/scene/utility/panorama.ts", "/__zephyr_source__/scene/utility/pmrem.ts", "/__zephyr_source__/scene/utility/rendermipmap.ts", "/__zephyr_source__/scene/utility/serialization/index.ts", "/__zephyr_source__/scene/utility/serialization/json.ts", "/__zephyr_source__/scene/utility/serialization/manager.ts", "/__zephyr_source__/scene/utility/serialization/scene/animation.ts", "/__zephyr_source__/scene/utility/serialization/scene/batch.ts", "/__zephyr_source__/scene/utility/serialization/scene/camera.ts", "/__zephyr_source__/scene/utility/serialization/scene/common.ts", "/__zephyr_source__/scene/utility/serialization/scene/light.ts", "/__zephyr_source__/scene/utility/serialization/scene/material.ts", "/__zephyr_source__/scene/utility/serialization/scene/mesh.ts", "/__zephyr_source__/scene/utility/serialization/scene/misc.ts", "/__zephyr_source__/scene/utility/serialization/scene/node.ts", "/__zephyr_source__/scene/utility/serialization/scene/particle.ts", "/__zephyr_source__/scene/utility/serialization/scene/primitive.ts", "/__zephyr_source__/scene/utility/serialization/scene/scene.ts", "/__zephyr_source__/scene/utility/serialization/scene/script.ts", "/__zephyr_source__/scene/utility/serialization/scene/sprite.ts", "/__zephyr_source__/scene/utility/serialization/scene/terrain.ts", "/__zephyr_source__/scene/utility/serialization/scene/text.ts", "/__zephyr_source__/scene/utility/serialization/scene/water.ts", "/__zephyr_source__/scene/utility/serialization/types.ts", "/__zephyr_source__/scene/utility/shprojector.ts", "/__zephyr_source__/scene/utility/textures/ggxlut.ts", "/__zephyr_source__/scene/utility/textures/gradientnoise.ts", "/__zephyr_source__/scene/utility/textures/ltcdata.ts", "/__zephyr_source__/scene/utility/textures/ltclut.ts", "/__zephyr_source__/scene/utility/textures/randomnoise.ts", "/__zephyr_source__/scene/utility/textures/sheenlut.ts", "/__zephyr_source__/scene/values.ts", "/__zephyr_source__/loaders/fbx/fbx_importer.ts", "/__zephyr_source__/loaders/fbx/index.ts", "/__zephyr_source__/loaders/fbx/parser.ts", "/__zephyr_source__/loaders/fbx/types.ts", "/__zephyr_source__/loaders/gltf/gltf_importer.ts", "/__zephyr_source__/loaders/gltf/gltf_types.ts", "/__zephyr_source__/loaders/gltf/helpers.ts", "/__zephyr_source__/loaders/gltf/index.ts", "/__zephyr_source__/loaders/importer.ts", "/__zephyr_source__/loaders/index.ts", "/__zephyr_source__/imgui/bind-imgui.d.ts", "/__zephyr_source__/imgui/bind-imgui.js", "/__zephyr_source__/imgui/emscripten.d.ts", "/__zephyr_source__/imgui/imconfig.ts", "/__zephyr_source__/imgui/imgui.ts", "/__zephyr_source__/imgui/imgui_impl.ts", "/__zephyr_source__/imgui/index.ts", "/__zephyr_source__/imgui/renderer.ts", "/__zephyr_source__/backend-webgl/basetexture_webgl.ts", "/__zephyr_source__/backend-webgl/bindgroup_webgl.ts", "/__zephyr_source__/backend-webgl/buffer_webgl.ts", "/__zephyr_source__/backend-webgl/capabilities_webgl.ts", "/__zephyr_source__/backend-webgl/constants_webgl.ts", "/__zephyr_source__/backend-webgl/device_webgl.ts", "/__zephyr_source__/backend-webgl/framebuffer_webgl.ts", "/__zephyr_source__/backend-webgl/gpuobject_webgl.ts", "/__zephyr_source__/backend-webgl/gpuprogram_webgl.ts", "/__zephyr_source__/backend-webgl/gpu_timer.ts", "/__zephyr_source__/backend-webgl/index.ts", "/__zephyr_source__/backend-webgl/indexbuffer_webgl.ts", "/__zephyr_source__/backend-webgl/renderstate_webgl.ts", "/__zephyr_source__/backend-webgl/sampler_cache.ts", "/__zephyr_source__/backend-webgl/sampler_webgl.ts", "/__zephyr_source__/backend-webgl/structuredbuffer_webgl.ts", "/__zephyr_source__/backend-webgl/texture2darray_webgl.ts", "/__zephyr_source__/backend-webgl/texture2d_webgl.ts", "/__zephyr_source__/backend-webgl/texture3d_webgl.ts", "/__zephyr_source__/backend-webgl/texturecube_webgl.ts", "/__zephyr_source__/backend-webgl/texturevideo_webgl.ts", "/__zephyr_source__/backend-webgl/utils.ts", "/__zephyr_source__/backend-webgl/vertexlayout_webgl.ts", "/__zephyr_source__/backend-webgl/webgl_enum.ts", "/__zephyr_source__/backend-webgpu/basetexture_webgpu.ts", "/__zephyr_source__/backend-webgpu/bindgroup_cache.ts", "/__zephyr_source__/backend-webgpu/bindgroup_webgpu.ts", "/__zephyr_source__/backend-webgpu/buffer_webgpu.ts", "/__zephyr_source__/backend-webgpu/capabilities_webgpu.ts", "/__zephyr_source__/backend-webgpu/commandqueue.ts", "/__zephyr_source__/backend-webgpu/computepass_webgpu.ts", "/__zephyr_source__/backend-webgpu/constants_webgpu.ts", "/__zephyr_source__/backend-webgpu/device.ts", "/__zephyr_source__/backend-webgpu/framebuffer_webgpu.ts", "/__zephyr_source__/backend-webgpu/gpuobject_webgpu.ts", "/__zephyr_source__/backend-webgpu/gpuprogram_webgpu.ts", "/__zephyr_source__/backend-webgpu/index.ts", "/__zephyr_source__/backend-webgpu/indexbuffer_webgpu.ts", "/__zephyr_source__/backend-webgpu/pipeline_cache.ts", "/__zephyr_source__/backend-webgpu/renderpass_webgpu.ts", "/__zephyr_source__/backend-webgpu/renderstates_webgpu.ts", "/__zephyr_source__/backend-webgpu/sampler_cache.ts", "/__zephyr_source__/backend-webgpu/sampler_webgpu.ts", "/__zephyr_source__/backend-webgpu/structuredbuffer_webgpu.ts", "/__zephyr_source__/backend-webgpu/texture2darray_webgpu.ts", "/__zephyr_source__/backend-webgpu/texture2d_webgpu.ts", "/__zephyr_source__/backend-webgpu/texture3d_webgpu.ts", "/__zephyr_source__/backend-webgpu/texturecube_webgpu.ts", "/__zephyr_source__/backend-webgpu/texturevideo_webgpu.ts", "/__zephyr_source__/backend-webgpu/timestamp_query.ts", "/__zephyr_source__/backend-webgpu/uploadringbuffer.ts", "/__zephyr_source__/backend-webgpu/utils_webgpu.ts", "/__zephyr_source__/backend-webgpu/vertexlayout_cache.ts", "/__zephyr_source__/backend-webgpu/vertexlayout_webgpu.ts", "/__zephyr_source__/editor-plugin/app.ts", "/__zephyr_source__/editor-plugin/commands/scenecommands.ts", "/__zephyr_source__/editor-plugin/components/assetthumbnail.ts", "/__zephyr_source__/editor-plugin/components/assistantpanel.ts", "/__zephyr_source__/editor-plugin/components/blueprint/api.ts", "/__zephyr_source__/editor-plugin/components/blueprint/grapheditor.ts", "/__zephyr_source__/editor-plugin/components/blueprint/material/func.ts", "/__zephyr_source__/editor-plugin/components/blueprint/material/inputs.ts", "/__zephyr_source__/editor-plugin/components/blueprint/material/pbr.ts", "/__zephyr_source__/editor-plugin/components/blueprint/material/texture.ts", "/__zephyr_source__/editor-plugin/components/blueprint/node.ts", "/__zephyr_source__/editor-plugin/components/blueprint/nodeeditor.ts", "/__zephyr_source__/editor-plugin/components/blueprint/nodes/constants.ts", "/__zephyr_source__/editor-plugin/components/blueprint/nodes/func.ts", "/__zephyr_source__/editor-plugin/components/blueprint/nodes/math.ts", "/__zephyr_source__/editor-plugin/components/bottomview.ts", "/__zephyr_source__/editor-plugin/components/codeeditor.ts", "/__zephyr_source__/editor-plugin/components/common.ts", "/__zephyr_source__/editor-plugin/components/curveeditor.ts", "/__zephyr_source__/editor-plugin/components/dockpanel.ts", "/__zephyr_source__/editor-plugin/components/dragdrop.ts", "/__zephyr_source__/editor-plugin/components/editablecombo.ts", "/__zephyr_source__/editor-plugin/components/filepicker.ts", "/__zephyr_source__/editor-plugin/components/grid.ts", "/__zephyr_source__/editor-plugin/components/imagelist.ts", "/__zephyr_source__/editor-plugin/components/listview.ts", "/__zephyr_source__/editor-plugin/components/logview.ts", "/__zephyr_source__/editor-plugin/components/menubar.ts", "/__zephyr_source__/editor-plugin/components/modal.ts", "/__zephyr_source__/editor-plugin/components/multicombo.ts", "/__zephyr_source__/editor-plugin/components/noisetexture.ts", "/__zephyr_source__/editor-plugin/components/ramptexture.ts", "/__zephyr_source__/editor-plugin/components/rotationeditor.ts", "/__zephyr_source__/editor-plugin/components/scenehierarchy.ts", "/__zephyr_source__/editor-plugin/components/scriptpanel.ts", "/__zephyr_source__/editor-plugin/components/skeletonview.ts", "/__zephyr_source__/editor-plugin/components/statusbar.ts", "/__zephyr_source__/editor-plugin/components/textinput.ts", "/__zephyr_source__/editor-plugin/components/texturedrawer.ts", "/__zephyr_source__/editor-plugin/components/textureviewer.ts", "/__zephyr_source__/editor-plugin/components/toolbar.ts", "/__zephyr_source__/editor-plugin/components/treeview.ts", "/__zephyr_source__/editor-plugin/components/vfsrenderer.ts", "/__zephyr_source__/editor-plugin/controllers/basecontroller.ts", "/__zephyr_source__/editor-plugin/controllers/scenecontroller.ts", "/__zephyr_source__/editor-plugin/core/build/build.ts", "/__zephyr_source__/editor-plugin/core/build/dep.ts", "/__zephyr_source__/editor-plugin/core/build/loadtypes.ts", "/__zephyr_source__/editor-plugin/core/build/plugins/depresolve.ts", "/__zephyr_source__/editor-plugin/core/build/plugins/tstranspile.ts", "/__zephyr_source__/editor-plugin/core/build/plugins/vfsurl.ts", "/__zephyr_source__/editor-plugin/core/build/templates.ts", "/__zephyr_source__/editor-plugin/core/command.ts", "/__zephyr_source__/editor-plugin/core/editor.ts", "/__zephyr_source__/editor-plugin/core/eventbus.ts", "/__zephyr_source__/editor-plugin/core/fontglyph.ts", "/__zephyr_source__/editor-plugin/core/module.ts", "/__zephyr_source__/editor-plugin/core/plugin.ts", "/__zephyr_source__/editor-plugin/core/pluginapi.ts", "/__zephyr_source__/editor-plugin/core/services/assistant.ts", "/__zephyr_source__/editor-plugin/core/services/desktop.ts", "/__zephyr_source__/editor-plugin/core/services/editorsettings.ts", "/__zephyr_source__/editor-plugin/core/services/electronfs.ts", "/__zephyr_source__/editor-plugin/core/services/project.ts", "/__zephyr_source__/editor-plugin/core/services/resource.ts", "/__zephyr_source__/editor-plugin/core/services/storage.ts", "/__zephyr_source__/editor-plugin/core/services/systemplugin.ts", "/__zephyr_source__/editor-plugin/core/version.ts", "/__zephyr_source__/editor-plugin/editor-plugin.ts", "/__zephyr_source__/editor-plugin/helpers/defaultnodename.ts", "/__zephyr_source__/editor-plugin/helpers/downloader.ts", "/__zephyr_source__/editor-plugin/helpers/editorcontroller.ts", "/__zephyr_source__/editor-plugin/helpers/emoji.ts", "/__zephyr_source__/editor-plugin/helpers/leakdetector.ts", "/__zephyr_source__/editor-plugin/helpers/mcpbridge.ts", "/__zephyr_source__/editor-plugin/helpers/mimematch.ts", "/__zephyr_source__/editor-plugin/helpers/misc.ts", "/__zephyr_source__/editor-plugin/helpers/morphtargetprops.ts", "/__zephyr_source__/editor-plugin/helpers/primitiveglb.ts", "/__zephyr_source__/editor-plugin/helpers/proxy.ts", "/__zephyr_source__/editor-plugin/helpers/scriptprops.ts", "/__zephyr_source__/editor-plugin/helpers/shapeprimitives.ts", "/__zephyr_source__/editor-plugin/models/basemodel.ts", "/__zephyr_source__/editor-plugin/models/scenemodel.ts", "/__zephyr_source__/editor-plugin/monaco-init.ts", "/__zephyr_source__/editor-plugin/types.ts", "/__zephyr_source__/editor-plugin/views/baseview.ts", "/__zephyr_source__/editor-plugin/views/dlg/aboutdlg.ts", "/__zephyr_source__/editor-plugin/views/dlg/createprojectdlg.ts", "/__zephyr_source__/editor-plugin/views/dlg/curveeditordlg.ts", "/__zephyr_source__/editor-plugin/views/dlg/dlg.ts", "/__zephyr_source__/editor-plugin/views/dlg/editcolortrackdlg.ts", "/__zephyr_source__/editor-plugin/views/dlg/editorsettingsdlg.ts", "/__zephyr_source__/editor-plugin/views/dlg/importdlg.ts", "/__zephyr_source__/editor-plugin/views/dlg/importoptionsdlg.ts", "/__zephyr_source__/editor-plugin/views/dlg/materialeditor.ts", "/__zephyr_source__/editor-plugin/views/dlg/materialfunceditor.ts", "/__zephyr_source__/editor-plugin/views/dlg/messagedlg.ts", "/__zephyr_source__/editor-plugin/views/dlg/messageexdlg.ts", "/__zephyr_source__/editor-plugin/views/dlg/noisetexturedlg.ts", "/__zephyr_source__/editor-plugin/views/dlg/opendlg.ts", "/__zephyr_source__/editor-plugin/views/dlg/openfiledlg.ts", "/__zephyr_source__/editor-plugin/views/dlg/openfolderdlg.ts", "/__zephyr_source__/editor-plugin/views/dlg/progressdlg.ts", "/__zephyr_source__/editor-plugin/views/dlg/projectsettingsdlg.ts", "/__zephyr_source__/editor-plugin/views/dlg/promptnamedlg.ts", "/__zephyr_source__/editor-plugin/views/dlg/ramptexturedlg.ts", "/__zephyr_source__/editor-plugin/views/dlg/renamedlg.ts", "/__zephyr_source__/editor-plugin/views/dlg/savefiledlg.ts", "/__zephyr_source__/editor-plugin/views/dlg/selectanimationdlg.ts", "/__zephyr_source__/editor-plugin/views/dlg/skeletoneditor.ts", "/__zephyr_source__/editor-plugin/views/dlg/systempluginsdlg.ts", "/__zephyr_source__/editor-plugin/views/dlg/zabccompressdlg.ts", "/__zephyr_source__/editor-plugin/views/edittools/brushes/base.ts", "/__zephyr_source__/editor-plugin/views/edittools/brushes/flatten.ts", "/__zephyr_source__/editor-plugin/views/edittools/brushes/grass.ts", "/__zephyr_source__/editor-plugin/views/edittools/brushes/height.ts", "/__zephyr_source__/editor-plugin/views/edittools/brushes/hydraulicerosion.ts", "/__zephyr_source__/editor-plugin/views/edittools/brushes/lower.ts", "/__zephyr_source__/editor-plugin/views/edittools/brushes/raise.ts", "/__zephyr_source__/editor-plugin/views/edittools/brushes/smooth.ts", "/__zephyr_source__/editor-plugin/views/edittools/brushes/splat.ts", "/__zephyr_source__/editor-plugin/views/edittools/brushes/thermalerosion.ts", "/__zephyr_source__/editor-plugin/views/edittools/edittool.ts", "/__zephyr_source__/editor-plugin/views/edittools/terrain.ts", "/__zephyr_source__/editor-plugin/views/gizmo/decal.ts", "/__zephyr_source__/editor-plugin/views/gizmo/gizmo.ts", "/__zephyr_source__/editor-plugin/views/gizmo/postgizmo.ts", "/__zephyr_source__/editor-plugin/views/icons.ts", "/__zephyr_source__/editor-plugin/views/misc.ts", "/__zephyr_source__/editor-plugin/views/sceneview.ts", "/__zephyr_source__/editor-plugin/workers/generated_model.ts", "/__zephyr_source__/editor-plugin/workers/zabc_pca.ts", "/__zephyr_source__/editor-plugin/workers/zip.ts"];
37
37
  const monacoCssHref = "./vendor/monaco/vs/editor/editor.main.css";
38
38
  const monacoLoaderHref = "./vendor/monaco/vs/loader.js";
39
39
  const monacoBaseHref = "./vendor/monaco/vs";
@@ -35108,6 +35108,7 @@ class SceneView extends BaseView {
35108
35108
  _postGizmoCaptured;
35109
35109
  _showTextureViewer;
35110
35110
  _showDeviceInfo;
35111
+ _showProfiler;
35111
35112
  _clipBoardData;
35112
35113
  _clipBoardNodes;
35113
35114
  _proxy;
@@ -35156,6 +35157,7 @@ class SceneView extends BaseView {
35156
35157
  this._postGizmoCaptured = false;
35157
35158
  this._showTextureViewer = false;
35158
35159
  this._showDeviceInfo = false;
35160
+ this._showProfiler = false;
35159
35161
  this._clipBoardNodes = [];
35160
35162
  this._proxy = null;
35161
35163
  this._springBoneGizmo = null;
@@ -35584,6 +35586,27 @@ class SceneView extends BaseView {
35584
35586
  return true;
35585
35587
  },
35586
35588
  checked: () => this._showDeviceInfo
35589
+ },
35590
+ {
35591
+ label: "Profiler",
35592
+ id: "SHOW_PROFILER",
35593
+ action: () => {
35594
+ this._showProfiler = !this._showProfiler;
35595
+ if (this._showProfiler) {
35596
+ RenderGraphExecutor.setDefaultProfilingOptions({
35597
+ enabled: true,
35598
+ graph: true,
35599
+ pass: true,
35600
+ subpass: true,
35601
+ includePendingUploads: true,
35602
+ maxPendingFrames: 3,
35603
+ label: "RenderGraph"
35604
+ });
35605
+ } else {
35606
+ RenderGraphExecutor.setDefaultProfilingOptions(false);
35607
+ }
35608
+ return true;
35609
+ }
35587
35610
  }
35588
35611
  ]
35589
35612
  },
@@ -36031,6 +36054,8 @@ class SceneView extends BaseView {
36031
36054
  this._postGizmoCaptured = false;
36032
36055
  this._showTextureViewer = false;
36033
36056
  this._showDeviceInfo = false;
36057
+ this._showProfiler = false;
36058
+ RenderGraphExecutor.setDefaultProfilingOptions(false);
36034
36059
  this._animatedCamera = null;
36035
36060
  this._currentEditTool?.dispose();
36036
36061
  this.sceneSetup();
@@ -36773,6 +36798,21 @@ class SceneView extends BaseView {
36773
36798
  } else {
36774
36799
  this.selectSpringBone(null);
36775
36800
  }
36801
+ if (this._showProfiler) {
36802
+ RenderGraphExecutor.resolveProfileResult().then((profile) => {
36803
+ if (profile) {
36804
+ console.log(profile.status, profile.graph.durationMs);
36805
+ console.table(
36806
+ profile.passes.map((p2) => ({
36807
+ pass: p2.name,
36808
+ status: p2.status,
36809
+ ms: p2.durationMs,
36810
+ children: p2.children.length
36811
+ }))
36812
+ );
36813
+ }
36814
+ });
36815
+ }
36776
36816
  }
36777
36817
  updateSpringBone(obj) {
36778
36818
  if (!obj) {
@@ -40536,7 +40576,7 @@ class DlgEditorSettings extends DialogRenderer {
40536
40576
  return this._clearApiKey;
40537
40577
  }
40538
40578
  }
40539
- const EDITOR_VERSION = "0.3.5";
40579
+ const EDITOR_VERSION = "0.3.7";
40540
40580
  class DlgAbout extends DialogRenderer {
40541
40581
  static LABEL_COLUMN_WIDTH = 110;
40542
40582
  static about(title) {