@galacean/engine-core 1.1.0-beta.3 → 1.1.0-beta.30

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 (183) hide show
  1. package/dist/main.js +7972 -7356
  2. package/dist/main.js.map +1 -1
  3. package/dist/miniprogram.js +7972 -7356
  4. package/dist/module.js +7962 -7358
  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/Scene.d.ts +6 -0
  13. package/types/animation/AnimatorLayerMask.d.ts +45 -0
  14. package/types/animation/LayerPathMask.d.ts +16 -0
  15. package/types/animation/animationCurve/AnimationStringCurve.d.ts +7 -0
  16. package/types/asset/AssetPromise.d.ts +1 -0
  17. package/types/asset/ResourceManager.d.ts +0 -1
  18. package/types/lighting/DirectLight.d.ts +8 -1
  19. package/types/lighting/Light.d.ts +0 -4
  20. package/types/lighting/LightManager.d.ts +7 -0
  21. package/types/lighting/PointLight.d.ts +9 -1
  22. package/types/lighting/SpotLight.d.ts +12 -1
  23. package/types/mesh/SkinnedMeshRenderer.d.ts +1 -1
  24. package/types/particle/ParticleGenerator.d.ts +0 -2
  25. package/types/particle/index.d.ts +10 -0
  26. package/types/particle/modules/EmissionModule.d.ts +0 -1
  27. package/types/particle/modules/MainModule.d.ts +7 -6
  28. package/types/particle/modules/ParticleGeneratorModule.d.ts +0 -1
  29. package/types/particle/modules/ParticleGradient.d.ts +38 -18
  30. package/types/particle/modules/RotationOverLifetimeModule.d.ts +1 -1
  31. package/types/particle/modules/TextureSheetAnimationModule.d.ts +0 -4
  32. package/types/physics/Collider.d.ts +3 -1
  33. package/types/physics/PhysicsMaterial.d.ts +1 -0
  34. package/types/physics/joint/HingeJoint.d.ts +1 -1
  35. package/types/physics/joint/Joint.d.ts +4 -3
  36. package/types/physics/shape/ColliderShape.d.ts +2 -1
  37. package/types/physics/shape/SphereColliderShape.d.ts +1 -0
  38. package/types/shader/Shader.d.ts +1 -1
  39. package/types/xr/XRManager.d.ts +3 -29
  40. package/types/xr/XRPose.d.ts +15 -0
  41. package/types/xr/feature/XRFeature.d.ts +13 -26
  42. package/types/xr/feature/XRFeatureManager.d.ts +65 -0
  43. package/types/xr/feature/XRFeatureType.d.ts +13 -0
  44. package/types/xr/feature/camera/XRCameraManager.d.ts +26 -0
  45. package/types/xr/feature/hitTest/TrackableType.d.ts +10 -0
  46. package/types/xr/feature/hitTest/XRHitResult.d.ts +19 -0
  47. package/types/xr/feature/hitTest/XRHitTest.d.ts +39 -0
  48. package/types/xr/feature/hitTest/XRHitTestManager.d.ts +38 -0
  49. package/types/xr/feature/hitTest/XRHitTestType.d.ts +16 -0
  50. package/types/xr/feature/movementTracking/XRMovementTracking.d.ts +18 -0
  51. package/types/xr/feature/movementTracking/XRMovementTrackingManager.d.ts +10 -0
  52. package/types/xr/feature/movementTracking/XRMovementTrackingMode.d.ts +5 -0
  53. package/types/xr/feature/trackable/XRRequestTrackingState.d.ts +11 -0
  54. package/types/xr/feature/trackable/XRTrackableFeature.d.ts +38 -0
  55. package/types/xr/feature/trackable/XRTrackableManager.d.ts +41 -0
  56. package/types/xr/feature/trackable/anchor/XRAnchor.d.ts +6 -0
  57. package/types/xr/feature/trackable/anchor/XRAnchorTracking.d.ts +37 -0
  58. package/types/xr/feature/trackable/anchor/XRAnchorTrackingManager.d.ts +20 -0
  59. package/types/xr/feature/trackable/anchor/XRRequestAnchor.d.ts +15 -0
  60. package/types/xr/feature/trackable/image/XRImageTracking.d.ts +24 -0
  61. package/types/xr/feature/trackable/image/XRImageTrackingManager.d.ts +31 -0
  62. package/types/xr/feature/trackable/image/XRReferenceImage.d.ts +11 -0
  63. package/types/xr/feature/trackable/image/XRRequestImage.d.ts +13 -0
  64. package/types/xr/feature/trackable/image/XRTrackedImage.d.ts +8 -0
  65. package/types/xr/feature/trackable/plane/XRPlaneMode.d.ts +13 -0
  66. package/types/xr/feature/trackable/plane/XRPlaneTracking.d.ts +23 -0
  67. package/types/xr/feature/trackable/plane/XRPlaneTrackingManager.d.ts +11 -0
  68. package/types/xr/feature/trackable/plane/XRRequestPlane.d.ts +12 -0
  69. package/types/xr/feature/trackable/plane/XRTrackedPlane.d.ts +20 -0
  70. package/types/xr/index.d.ts +25 -18
  71. package/types/xr/input/XRCamera.d.ts +15 -0
  72. package/types/xr/input/XRController.d.ts +38 -0
  73. package/types/xr/input/XRControllerPoseMode.d.ts +9 -0
  74. package/types/xr/input/XRInput.d.ts +8 -0
  75. package/types/xr/input/XRInputButton.d.ts +19 -0
  76. package/types/xr/input/XRInputEvent.d.ts +24 -0
  77. package/types/xr/input/XRInputEventType.d.ts +11 -0
  78. package/types/xr/input/XRInputManager.d.ts +31 -0
  79. package/types/xr/input/XRInputType.d.ts +23 -0
  80. package/types/xr/input/XRTargetRayMode.d.ts +12 -0
  81. package/types/xr/input/XRTrackedInputDevice.d.ts +21 -0
  82. package/types/xr/input/XRTrackedUpdateFlag.d.ts +11 -0
  83. package/types/xr/input/XRTrackingState.d.ts +11 -0
  84. package/types/xr/session/XRSessionManager.d.ts +45 -0
  85. package/types/xr/session/XRSessionMode.d.ts +8 -0
  86. package/types/xr/session/XRSessionState.d.ts +13 -0
  87. package/types/RenderPipeline/MeshRenderElement.d.ts +0 -17
  88. package/types/RenderPipeline/RenderElementX.d.ts +0 -12
  89. package/types/RenderPipeline/SpriteElement.d.ts +0 -13
  90. package/types/RenderPipeline/SpriteMaskElement.d.ts +0 -10
  91. package/types/RenderPipeline/TextRenderElement.d.ts +0 -6
  92. package/types/SafeLoopArray.d.ts +0 -37
  93. package/types/Ticker.d.ts +0 -30
  94. package/types/asset/IRefObject.d.ts +0 -2
  95. package/types/asset/RefObject.d.ts +0 -27
  96. package/types/base/Event.d.ts +0 -24
  97. package/types/base/Util.d.ts +0 -14
  98. package/types/particle/ParticleData.d.ts +0 -1
  99. package/types/particle/ParticleMesh.d.ts +0 -289
  100. package/types/particle/ParticleShaderDeclaration.d.ts +0 -1
  101. package/types/particle/ParticleShaderMacro.d.ts +0 -1
  102. package/types/particle/ParticleShaderProperty.d.ts +0 -1
  103. package/types/particle/ParticleSystem.d.ts +0 -41
  104. package/types/particle/ParticleVertexElements.d.ts +0 -1
  105. package/types/particle/ParticleVertexUtils.d.ts +0 -1
  106. package/types/particle/enum/ParticleAnimationRowMode.d.ts +0 -9
  107. package/types/particle/enum/ParticleAnimationType.d.ts +0 -9
  108. package/types/particle/enum/ParticleCurveMode.d.ts +0 -13
  109. package/types/particle/enum/ParticleGradientMode.d.ts +0 -13
  110. package/types/particle/enum/ParticleRenderMode.d.ts +0 -17
  111. package/types/particle/enum/ParticleScaleMode.d.ts +0 -11
  112. package/types/particle/enum/ParticleShapeMultiModeValue.d.ts +0 -9
  113. package/types/particle/enum/ParticleShapeType.d.ts +0 -15
  114. package/types/particle/enum/ParticleSimulationSpace.d.ts +0 -9
  115. package/types/particle/enum/index.d.ts +0 -9
  116. package/types/particle/module/Burst.d.ts +0 -38
  117. package/types/particle/module/ColorGradient.d.ts +0 -75
  118. package/types/particle/module/ColorOverLifetimeModule.d.ts +0 -20
  119. package/types/particle/module/EmissionModule.d.ts +0 -63
  120. package/types/particle/module/FrameOverTime.d.ts +0 -73
  121. package/types/particle/module/ParticleCurve.d.ts +0 -37
  122. package/types/particle/module/RotationOverLifetimeModule.d.ts +0 -21
  123. package/types/particle/module/RotationVelocityGradient.d.ts +0 -184
  124. package/types/particle/module/SizeGradient.d.ts +0 -151
  125. package/types/particle/module/SizeOverLifetimeModule.d.ts +0 -21
  126. package/types/particle/module/StartFrame.d.ts +0 -46
  127. package/types/particle/module/TextureSheetAnimationModule.d.ts +0 -37
  128. package/types/particle/module/VelocityGradient.d.ts +0 -110
  129. package/types/particle/module/VelocityOverLifetimeModule.d.ts +0 -22
  130. package/types/particle/module/index.d.ts +0 -15
  131. package/types/particle/module/shape/BaseShape.d.ts +0 -26
  132. package/types/particle/module/shape/BoxShape.d.ts +0 -20
  133. package/types/particle/module/shape/CircleShape.d.ts +0 -27
  134. package/types/particle/module/shape/ConeShape.d.ts +0 -35
  135. package/types/particle/module/shape/HemisphereShape.d.ts +0 -23
  136. package/types/particle/module/shape/ShapeUtils.d.ts +0 -1
  137. package/types/particle/module/shape/SphereShape.d.ts +0 -23
  138. package/types/particle/module/shape/index.d.ts +0 -5
  139. package/types/particle/modules/ShapeModule.d.ts +0 -9
  140. package/types/particle/modules/shape/enums/ParticleShapeMultiModeValue.d.ts +0 -9
  141. package/types/particle/moudules/Burst.d.ts +0 -25
  142. package/types/particle/moudules/Emission.d.ts +0 -47
  143. package/types/particle/moudules/EmissionModule.d.ts +0 -49
  144. package/types/particle/moudules/MainModule.d.ts +0 -59
  145. package/types/particle/moudules/ParticleCurve.d.ts +0 -27
  146. package/types/particle/moudules/ParticleGradient.d.ts +0 -28
  147. package/types/particle/moudules/ShapeModule.d.ts +0 -7
  148. package/types/particle/moudules/shape/BaseShape.d.ts +0 -28
  149. package/types/particle/moudules/shape/BoxShape.d.ts +0 -20
  150. package/types/particle/moudules/shape/CircleShape.d.ts +0 -27
  151. package/types/particle/moudules/shape/ConeShape.d.ts +0 -35
  152. package/types/particle/moudules/shape/HemisphereShape.d.ts +0 -23
  153. package/types/particle/moudules/shape/ShapeUtils.d.ts +0 -1
  154. package/types/particle/moudules/shape/SphereShape.d.ts +0 -23
  155. package/types/particle/moudules/shape/enums/ParticleShapeMultiModeValue.d.ts +0 -9
  156. package/types/particle/moudules/shape/enums/ParticleShapeType.d.ts +0 -15
  157. package/types/particle/moudules/shape/index.d.ts +0 -5
  158. package/types/shadow/PipelinePass.d.ts +0 -16
  159. package/types/utils/BoolUpdateFlag.d.ts +0 -12
  160. package/types/utils/DisorderedArray.d.ts +0 -18
  161. package/types/utils/UpdateFlag.d.ts +0 -20
  162. package/types/utils/UpdateFlagManager.d.ts +0 -1
  163. package/types/utils/Utils.d.ts +0 -31
  164. package/types/xr/component/XRPoseDriver.d.ts +0 -10
  165. package/types/xr/data/XRCamera.d.ts +0 -6
  166. package/types/xr/data/XRDevice.d.ts +0 -9
  167. package/types/xr/data/XRHandle.d.ts +0 -10
  168. package/types/xr/enum/EnumXRButton.d.ts +0 -5
  169. package/types/xr/enum/EnumXRDevicePhase.d.ts +0 -4
  170. package/types/xr/enum/EnumXRFeature.d.ts +0 -9
  171. package/types/xr/enum/EnumXRInputSource.d.ts +0 -8
  172. package/types/xr/enum/EnumXRMode.d.ts +0 -7
  173. package/types/xr/enum/EnumXRSubsystem.d.ts +0 -4
  174. package/types/xr/enum/EnumXRTrackingMode.d.ts +0 -7
  175. package/types/xr/feature/XRCameraManager.d.ts +0 -21
  176. package/types/xr/feature/XRImageTrackManager.d.ts +0 -10
  177. package/types/xr/feature/XRInputManager.d.ts +0 -16
  178. package/types/xr/provider/XRProvider.d.ts +0 -19
  179. package/types/xr/subsystem/XRInputSubsystem.d.ts +0 -5
  180. package/types/xr/subsystem/XRSubsystem.d.ts +0 -30
  181. /package/types/{2d/data/RenderData2D.d.ts → enums/CameraType.d.ts} +0 -0
  182. /package/types/{animation/internal/AnimationCurveOwnerLayerData.d.ts → xr/feature/trackable/XRRequestTracking.d.ts} +0 -0
  183. /package/types/{graphic/PrimitiveVertexBinding.d.ts → xr/feature/trackable/XRTracked.d.ts} +0 -0

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.