@galacean/engine-core 1.1.0-beta.2 → 1.1.0-beta.21

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 (116) hide show
  1. package/dist/main.js +7720 -7225
  2. package/dist/main.js.map +1 -1
  3. package/dist/miniprogram.js +7720 -7225
  4. package/dist/module.js +7710 -7227
  5. package/dist/module.js.map +1 -1
  6. package/package.json +3 -3
  7. package/types/2d/atlas/types.d.ts +3 -0
  8. package/types/2d/enums/SpriteModifyFlags.d.ts +2 -1
  9. package/types/Background.d.ts +8 -0
  10. package/types/Component.d.ts +1 -1
  11. package/types/DisorderedArray.d.ts +1 -1
  12. package/types/RenderPipeline/MeshRenderElement.d.ts +3 -1
  13. package/types/RenderPipeline/SpriteElement.d.ts +3 -1
  14. package/types/RenderPipeline/SpriteMaskElement.d.ts +3 -1
  15. package/types/RenderPipeline/TextRenderElement.d.ts +3 -1
  16. package/types/Scene.d.ts +6 -0
  17. package/types/asset/AssetPromise.d.ts +1 -0
  18. package/types/asset/ResourceManager.d.ts +0 -1
  19. package/types/enums/DepthMode.d.ts +8 -0
  20. package/types/lighting/DirectLight.d.ts +8 -1
  21. package/types/lighting/Light.d.ts +0 -4
  22. package/types/lighting/LightManager.d.ts +7 -0
  23. package/types/lighting/PointLight.d.ts +9 -1
  24. package/types/lighting/SpotLight.d.ts +12 -1
  25. package/types/mesh/SkinnedMeshRenderer.d.ts +1 -1
  26. package/types/particle/ParticleGenerator.d.ts +0 -2
  27. package/types/particle/enum/ParticleShapeType.d.ts +1 -1
  28. package/types/particle/index.d.ts +10 -0
  29. package/types/particle/module/shape/BaseShape.d.ts +4 -7
  30. package/types/particle/module/shape/BoxShape.d.ts +3 -11
  31. package/types/particle/module/shape/CircleShape.d.ts +1 -9
  32. package/types/particle/module/shape/ConeShape.d.ts +1 -9
  33. package/types/particle/module/shape/HemisphereShape.d.ts +1 -9
  34. package/types/particle/module/shape/SphereShape.d.ts +1 -9
  35. package/types/particle/modules/EmissionModule.d.ts +0 -1
  36. package/types/particle/modules/MainModule.d.ts +7 -6
  37. package/types/particle/modules/ParticleGeneratorModule.d.ts +0 -1
  38. package/types/particle/modules/RotationOverLifetimeModule.d.ts +1 -1
  39. package/types/particle/modules/TextureSheetAnimationModule.d.ts +0 -4
  40. package/types/particle/moudules/Burst.d.ts +12 -4
  41. package/types/particle/moudules/Emission.d.ts +27 -11
  42. package/types/particle/moudules/ParticleCurve.d.ts +1 -17
  43. package/types/physics/Collider.d.ts +3 -1
  44. package/types/physics/PhysicsManager.d.ts +2 -4
  45. package/types/physics/PhysicsMaterial.d.ts +1 -0
  46. package/types/physics/joint/HingeJoint.d.ts +1 -1
  47. package/types/physics/joint/Joint.d.ts +4 -3
  48. package/types/physics/shape/ColliderShape.d.ts +2 -1
  49. package/types/physics/shape/SphereColliderShape.d.ts +1 -0
  50. package/types/shader/Shader.d.ts +1 -1
  51. package/types/xr/IXRDevice.d.ts +26 -0
  52. package/types/xr/XRManager.d.ts +91 -24
  53. package/types/xr/feature/XRFeatureManager.d.ts +65 -0
  54. package/types/xr/feature/XRFeatureType.d.ts +17 -0
  55. package/types/xr/feature/XRPlatformFeature.d.ts +17 -0
  56. package/types/xr/index.d.ts +16 -18
  57. package/types/xr/input/XRCamera.d.ts +28 -0
  58. package/types/xr/input/XRController.d.ts +38 -0
  59. package/types/xr/input/XRControllerPoseMode.d.ts +9 -0
  60. package/types/xr/input/XRInputButton.d.ts +19 -0
  61. package/types/xr/input/XRInputEvent.d.ts +21 -0
  62. package/types/xr/input/XRInputManager.d.ts +58 -0
  63. package/types/xr/input/XRInputType.d.ts +23 -0
  64. package/types/xr/input/XRTrackedUpdateFlag.d.ts +11 -0
  65. package/types/xr/input/XRTrackingState.d.ts +11 -0
  66. package/types/xr/session/XRSessionManager.d.ts +76 -0
  67. package/types/xr/session/XRSessionState.d.ts +13 -0
  68. package/types/xr/session/XRSessionType.d.ts +7 -0
  69. package/types/RenderPipeline/RenderElementX.d.ts +0 -12
  70. package/types/Ticker.d.ts +0 -30
  71. package/types/animation/internal/AnimationCurveOwnerLayerData.d.ts +0 -1
  72. package/types/graphic/PrimitiveVertexBinding.d.ts +0 -1
  73. package/types/particle/ParticleShaderMacro.d.ts +0 -1
  74. package/types/particle/ParticleShaderProperty.d.ts +0 -1
  75. package/types/particle/ParticleSystem.d.ts +0 -41
  76. package/types/particle/ParticleVertexElements.d.ts +0 -1
  77. package/types/particle/ParticleVertexUtils.d.ts +0 -1
  78. package/types/particle/modules/ShapeModule.d.ts +0 -9
  79. package/types/particle/modules/shape/enums/ParticleShapeMultiModeValue.d.ts +0 -9
  80. package/types/particle/moudules/EmissionModule.d.ts +0 -49
  81. package/types/particle/moudules/MainModule.d.ts +0 -59
  82. package/types/particle/moudules/ParticleGradient.d.ts +0 -28
  83. package/types/particle/moudules/ShapeModule.d.ts +0 -7
  84. package/types/particle/moudules/shape/BaseShape.d.ts +0 -28
  85. package/types/particle/moudules/shape/BoxShape.d.ts +0 -20
  86. package/types/particle/moudules/shape/CircleShape.d.ts +0 -27
  87. package/types/particle/moudules/shape/ConeShape.d.ts +0 -35
  88. package/types/particle/moudules/shape/HemisphereShape.d.ts +0 -23
  89. package/types/particle/moudules/shape/ShapeUtils.d.ts +0 -1
  90. package/types/particle/moudules/shape/SphereShape.d.ts +0 -23
  91. package/types/particle/moudules/shape/enums/ParticleShapeMultiModeValue.d.ts +0 -9
  92. package/types/particle/moudules/shape/enums/ParticleShapeType.d.ts +0 -15
  93. package/types/particle/moudules/shape/index.d.ts +0 -5
  94. package/types/utils/BoolUpdateFlag.d.ts +0 -12
  95. package/types/utils/DisorderedArray.d.ts +0 -18
  96. package/types/utils/UpdateFlag.d.ts +0 -20
  97. package/types/utils/UpdateFlagManager.d.ts +0 -1
  98. package/types/utils/Utils.d.ts +0 -31
  99. package/types/xr/component/XRPoseDriver.d.ts +0 -10
  100. package/types/xr/data/XRCamera.d.ts +0 -6
  101. package/types/xr/data/XRDevice.d.ts +0 -9
  102. package/types/xr/data/XRHandle.d.ts +0 -10
  103. package/types/xr/enum/EnumXRButton.d.ts +0 -5
  104. package/types/xr/enum/EnumXRDevicePhase.d.ts +0 -4
  105. package/types/xr/enum/EnumXRFeature.d.ts +0 -9
  106. package/types/xr/enum/EnumXRInputSource.d.ts +0 -8
  107. package/types/xr/enum/EnumXRMode.d.ts +0 -7
  108. package/types/xr/enum/EnumXRSubsystem.d.ts +0 -4
  109. package/types/xr/enum/EnumXRTrackingMode.d.ts +0 -7
  110. package/types/xr/feature/XRCameraManager.d.ts +0 -21
  111. package/types/xr/feature/XRFeature.d.ts +0 -29
  112. package/types/xr/feature/XRImageTrackManager.d.ts +0 -10
  113. package/types/xr/feature/XRInputManager.d.ts +0 -16
  114. package/types/xr/provider/XRProvider.d.ts +0 -19
  115. package/types/xr/subsystem/XRInputSubsystem.d.ts +0 -5
  116. package/types/xr/subsystem/XRSubsystem.d.ts +0 -30

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.