@galacean/engine-core 1.1.0-beta.5 → 1.1.0-beta.50

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 (141) hide show
  1. package/dist/main.js +8329 -7307
  2. package/dist/main.js.map +1 -1
  3. package/dist/miniprogram.js +8329 -7307
  4. package/dist/module.js +8318 -7309
  5. package/dist/module.js.map +1 -1
  6. package/package.json +3 -3
  7. package/types/2d/atlas/types.d.ts +5 -0
  8. package/types/2d/enums/SpriteModifyFlags.d.ts +2 -1
  9. package/types/2d/text/TextRenderer.d.ts +1 -0
  10. package/types/Background.d.ts +6 -0
  11. package/types/Camera.d.ts +1 -1
  12. package/types/Canvas.d.ts +15 -5
  13. package/types/Deprecated.d.ts +101 -0
  14. package/types/DisorderedArray.d.ts +1 -1
  15. package/types/animation/AnimatorLayerMask.d.ts +45 -0
  16. package/types/animation/LayerPathMask.d.ts +16 -0
  17. package/types/animation/animationCurve/AnimationStringCurve.d.ts +7 -0
  18. package/types/asset/AssetPromise.d.ts +1 -0
  19. package/types/asset/ResourceManager.d.ts +0 -1
  20. package/types/enums/Downsampling.d.ts +11 -0
  21. package/types/enums/MSAASamples.d.ts +13 -0
  22. package/types/index.d.ts +1 -1
  23. package/types/mesh/PrimitiveMesh.d.ts +22 -0
  24. package/types/mesh/SkinnedMeshRenderer.d.ts +1 -1
  25. package/types/particle/ParticleGenerator.d.ts +0 -2
  26. package/types/particle/index.d.ts +10 -0
  27. package/types/particle/modules/EmissionModule.d.ts +0 -1
  28. package/types/particle/modules/MainModule.d.ts +0 -1
  29. package/types/particle/modules/ParticleGeneratorModule.d.ts +0 -1
  30. package/types/particle/modules/ParticleGradient.d.ts +38 -18
  31. package/types/physics/Collider.d.ts +3 -1
  32. package/types/physics/HitResult.d.ts +3 -0
  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/texture/enums/PixelFormat.d.ts +73 -0
  40. package/types/xr/XRManager.d.ts +3 -29
  41. package/types/RenderPipeline/MeshRenderData.d.ts +0 -17
  42. package/types/RenderPipeline/MeshRenderElement.d.ts +0 -19
  43. package/types/RenderPipeline/RenderElementX.d.ts +0 -12
  44. package/types/RenderPipeline/SpriteElement.d.ts +0 -15
  45. package/types/RenderPipeline/SpriteMaskElement.d.ts +0 -12
  46. package/types/RenderPipeline/TextRenderElement.d.ts +0 -8
  47. package/types/SafeLoopArray.d.ts +0 -37
  48. package/types/Ticker.d.ts +0 -30
  49. package/types/asset/IRefObject.d.ts +0 -2
  50. package/types/asset/RefObject.d.ts +0 -27
  51. package/types/base/Event.d.ts +0 -24
  52. package/types/base/Util.d.ts +0 -14
  53. package/types/particle/ParticleData.d.ts +0 -1
  54. package/types/particle/ParticleMesh.d.ts +0 -289
  55. package/types/particle/ParticleShaderDeclaration.d.ts +0 -1
  56. package/types/particle/ParticleShaderMacro.d.ts +0 -1
  57. package/types/particle/ParticleShaderProperty.d.ts +0 -1
  58. package/types/particle/ParticleSystem.d.ts +0 -41
  59. package/types/particle/ParticleVertexElements.d.ts +0 -1
  60. package/types/particle/ParticleVertexUtils.d.ts +0 -1
  61. package/types/particle/enum/ParticleAnimationRowMode.d.ts +0 -9
  62. package/types/particle/enum/ParticleAnimationType.d.ts +0 -9
  63. package/types/particle/enum/ParticleCurveMode.d.ts +0 -13
  64. package/types/particle/enum/ParticleGradientMode.d.ts +0 -13
  65. package/types/particle/enum/ParticleRenderMode.d.ts +0 -17
  66. package/types/particle/enum/ParticleScaleMode.d.ts +0 -11
  67. package/types/particle/enum/ParticleShapeMultiModeValue.d.ts +0 -9
  68. package/types/particle/enum/ParticleShapeType.d.ts +0 -15
  69. package/types/particle/enum/ParticleSimulationSpace.d.ts +0 -9
  70. package/types/particle/enum/index.d.ts +0 -9
  71. package/types/particle/module/Burst.d.ts +0 -38
  72. package/types/particle/module/ColorGradient.d.ts +0 -75
  73. package/types/particle/module/ColorOverLifetimeModule.d.ts +0 -20
  74. package/types/particle/module/EmissionModule.d.ts +0 -63
  75. package/types/particle/module/FrameOverTime.d.ts +0 -73
  76. package/types/particle/module/ParticleCurve.d.ts +0 -37
  77. package/types/particle/module/RotationOverLifetimeModule.d.ts +0 -21
  78. package/types/particle/module/RotationVelocityGradient.d.ts +0 -184
  79. package/types/particle/module/SizeGradient.d.ts +0 -151
  80. package/types/particle/module/SizeOverLifetimeModule.d.ts +0 -21
  81. package/types/particle/module/StartFrame.d.ts +0 -46
  82. package/types/particle/module/TextureSheetAnimationModule.d.ts +0 -37
  83. package/types/particle/module/VelocityGradient.d.ts +0 -110
  84. package/types/particle/module/VelocityOverLifetimeModule.d.ts +0 -22
  85. package/types/particle/module/index.d.ts +0 -15
  86. package/types/particle/module/shape/BaseShape.d.ts +0 -26
  87. package/types/particle/module/shape/BoxShape.d.ts +0 -20
  88. package/types/particle/module/shape/CircleShape.d.ts +0 -27
  89. package/types/particle/module/shape/ConeShape.d.ts +0 -35
  90. package/types/particle/module/shape/HemisphereShape.d.ts +0 -23
  91. package/types/particle/module/shape/ShapeUtils.d.ts +0 -1
  92. package/types/particle/module/shape/SphereShape.d.ts +0 -23
  93. package/types/particle/module/shape/index.d.ts +0 -5
  94. package/types/particle/modules/ShapeModule.d.ts +0 -9
  95. package/types/particle/modules/shape/enums/ParticleShapeMultiModeValue.d.ts +0 -9
  96. package/types/particle/moudules/Burst.d.ts +0 -25
  97. package/types/particle/moudules/Emission.d.ts +0 -47
  98. package/types/particle/moudules/EmissionModule.d.ts +0 -49
  99. package/types/particle/moudules/MainModule.d.ts +0 -59
  100. package/types/particle/moudules/ParticleCurve.d.ts +0 -27
  101. package/types/particle/moudules/ParticleGradient.d.ts +0 -28
  102. package/types/particle/moudules/ShapeModule.d.ts +0 -7
  103. package/types/particle/moudules/shape/BaseShape.d.ts +0 -28
  104. package/types/particle/moudules/shape/BoxShape.d.ts +0 -20
  105. package/types/particle/moudules/shape/CircleShape.d.ts +0 -27
  106. package/types/particle/moudules/shape/ConeShape.d.ts +0 -35
  107. package/types/particle/moudules/shape/HemisphereShape.d.ts +0 -23
  108. package/types/particle/moudules/shape/ShapeUtils.d.ts +0 -1
  109. package/types/particle/moudules/shape/SphereShape.d.ts +0 -23
  110. package/types/particle/moudules/shape/enums/ParticleShapeMultiModeValue.d.ts +0 -9
  111. package/types/particle/moudules/shape/enums/ParticleShapeType.d.ts +0 -15
  112. package/types/particle/moudules/shape/index.d.ts +0 -5
  113. package/types/physics/PhysicsManager.d.ts +0 -78
  114. package/types/shadow/PipelinePass.d.ts +0 -16
  115. package/types/utils/BoolUpdateFlag.d.ts +0 -12
  116. package/types/utils/DisorderedArray.d.ts +0 -18
  117. package/types/utils/UpdateFlag.d.ts +0 -20
  118. package/types/utils/UpdateFlagManager.d.ts +0 -1
  119. package/types/utils/Utils.d.ts +0 -31
  120. package/types/xr/component/XRPoseDriver.d.ts +0 -10
  121. package/types/xr/data/XRCamera.d.ts +0 -6
  122. package/types/xr/data/XRDevice.d.ts +0 -9
  123. package/types/xr/data/XRHandle.d.ts +0 -10
  124. package/types/xr/enum/EnumXRButton.d.ts +0 -5
  125. package/types/xr/enum/EnumXRDevicePhase.d.ts +0 -4
  126. package/types/xr/enum/EnumXRFeature.d.ts +0 -9
  127. package/types/xr/enum/EnumXRInputSource.d.ts +0 -8
  128. package/types/xr/enum/EnumXRMode.d.ts +0 -7
  129. package/types/xr/enum/EnumXRSubsystem.d.ts +0 -4
  130. package/types/xr/enum/EnumXRTrackingMode.d.ts +0 -7
  131. package/types/xr/feature/XRCameraManager.d.ts +0 -21
  132. package/types/xr/feature/XRFeature.d.ts +0 -29
  133. package/types/xr/feature/XRImageTrackManager.d.ts +0 -10
  134. package/types/xr/feature/XRInputManager.d.ts +0 -16
  135. package/types/xr/index.d.ts +0 -18
  136. package/types/xr/provider/XRProvider.d.ts +0 -19
  137. package/types/xr/subsystem/XRInputSubsystem.d.ts +0 -5
  138. package/types/xr/subsystem/XRSubsystem.d.ts +0 -30
  139. /package/types/{2d/data/RenderData2D.d.ts → BasicResources.d.ts} +0 -0
  140. /package/types/{animation/internal/AnimationCurveOwnerLayerData.d.ts → RenderPipeline/OpaqueTexturePass.d.ts} +0 -0
  141. /package/types/{graphic/PrimitiveVertexBinding.d.ts → enums/CameraType.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.