@galacean/engine-core 0.0.0-experimental-0.9-plus.8 → 0.0.0-experimental-double11.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (168) hide show
  1. package/dist/main.js +15851 -13975
  2. package/dist/main.js.map +1 -1
  3. package/dist/miniprogram.js +15851 -13975
  4. package/dist/module.js +15837 -13971
  5. package/dist/module.js.map +1 -1
  6. package/package.json +3 -3
  7. package/types/2d/atlas/SpriteAtlas.d.ts +2 -6
  8. package/types/2d/enums/SpriteDirtyFlag.d.ts +13 -0
  9. package/types/2d/enums/SpriteDrawMode.d.ts +4 -2
  10. package/types/2d/index.d.ts +1 -0
  11. package/types/2d/sprite/Sprite.d.ts +5 -2
  12. package/types/2d/sprite/SpriteMask.d.ts +0 -11
  13. package/types/2d/sprite/SpriteRenderer.d.ts +15 -11
  14. package/types/2d/text/Font.d.ts +2 -7
  15. package/types/2d/text/TextRenderer.d.ts +0 -11
  16. package/types/2d/text/index.d.ts +1 -0
  17. package/types/Camera.d.ts +27 -8
  18. package/types/Component.d.ts +0 -8
  19. package/types/ComponentsDependencies.d.ts +17 -9
  20. package/types/ComponentsManager.d.ts +3 -2
  21. package/types/DisorderedArray.d.ts +4 -3
  22. package/types/Engine.d.ts +35 -43
  23. package/types/Entity.d.ts +2 -2
  24. package/types/ListenerUpdateFlag.d.ts +12 -0
  25. package/types/RenderPipeline/Basic2DBatcher.d.ts +6 -7
  26. package/types/RenderPipeline/BasicRenderPipeline.d.ts +8 -6
  27. package/types/RenderPipeline/PipelinePass.d.ts +16 -0
  28. package/types/RenderPipeline/RenderElement.d.ts +8 -8
  29. package/types/RenderPipeline/RenderPass.d.ts +1 -1
  30. package/types/RenderPipeline/RenderQueue.d.ts +3 -5
  31. package/types/RenderPipeline/SpriteMaskBatcher.d.ts +4 -3
  32. package/types/Renderer.d.ts +3 -12
  33. package/types/Scene.d.ts +0 -1
  34. package/types/Script.d.ts +18 -15
  35. package/types/Transform.d.ts +10 -12
  36. package/types/Utils.d.ts +28 -0
  37. package/types/animation/AnimationClip.d.ts +2 -1
  38. package/types/animation/Animator.d.ts +7 -4
  39. package/types/animation/AnimatorStateTransition.d.ts +12 -0
  40. package/types/animation/AnimatorTransitionBase.d.ts +10 -0
  41. package/types/animation/animationCurve/AnimationFloatArrayCurve.d.ts +0 -1
  42. package/types/animation/animationCurve/AnimationRectCurve.d.ts +8 -0
  43. package/types/animation/animationCurve/AnimationRefCurve.d.ts +8 -0
  44. package/types/animation/enums/LayerState.d.ts +3 -1
  45. package/types/animation/enums/StateMachineState.d.ts +13 -0
  46. package/types/animation/index.d.ts +0 -4
  47. package/types/animation/internal/AnimatorPlayableObject.d.ts +23 -0
  48. package/types/animation/internal/CrossCurveData.d.ts +1 -0
  49. package/types/animation/internal/animationCurveOwner/Assembler/BlendShapeWeightsAnimationCurveOwnerAssembler.d.ts +1 -0
  50. package/types/animation/internal/animationCurveOwner/Assembler/IAnimationCurveOwnerAssembler.d.ts +1 -0
  51. package/types/animation/internal/animationCurveOwner/Assembler/PositionAnimationCurveOwnerAssembler.d.ts +1 -0
  52. package/types/animation/internal/animationCurveOwner/Assembler/RotationAnimationCurveOwnerAssembler.d.ts +1 -0
  53. package/types/animation/internal/animationCurveOwner/Assembler/ScaleAnimationCurveOwnerAssembler.d.ts +1 -0
  54. package/types/animation/internal/animationCurveOwner/Assembler/UniversalAnimationCurveOwnerAssembler.d.ts +1 -0
  55. package/types/asset/AssetType.d.ts +16 -16
  56. package/types/asset/LoadItem.d.ts +16 -9
  57. package/types/asset/ResourceManager.d.ts +17 -9
  58. package/types/asset/request.d.ts +7 -3
  59. package/types/base/Constant.d.ts +2 -1
  60. package/types/base/EngineObject.d.ts +1 -0
  61. package/types/base/EventDispatcher.d.ts +2 -15
  62. package/types/base/Time.d.ts +25 -24
  63. package/types/base/index.d.ts +0 -2
  64. package/types/enums/DepthTextureMode.d.ts +7 -0
  65. package/types/env-probe/CubeProbe.d.ts +0 -7
  66. package/types/env-probe/Probe.d.ts +0 -6
  67. package/types/fog/EXP2Fog.d.ts +15 -0
  68. package/types/fog/Fog.d.ts +14 -0
  69. package/types/fog/LinearFog.d.ts +22 -0
  70. package/types/fog/index.d.ts +3 -0
  71. package/types/graphic/Buffer.d.ts +5 -12
  72. package/types/graphic/Mesh.d.ts +5 -16
  73. package/types/graphic/Primitive.d.ts +1 -0
  74. package/types/graphic/SubPrimitive.d.ts +9 -0
  75. package/types/index.d.ts +8 -7
  76. package/types/input/InputManager.d.ts +1 -1
  77. package/types/input/interface/IInput.d.ts +1 -1
  78. package/types/lighting/AmbientLight.d.ts +4 -1
  79. package/types/lighting/DirectLight.d.ts +0 -1
  80. package/types/lighting/Light.d.ts +0 -1
  81. package/types/lighting/LightManager.d.ts +1 -0
  82. package/types/lighting/SpotLight.d.ts +0 -1
  83. package/types/material/BaseMaterial.d.ts +8 -10
  84. package/types/material/BlinnPhongMaterial.d.ts +0 -3
  85. package/types/material/Material.d.ts +3 -6
  86. package/types/material/PBRMaterial.d.ts +1 -1
  87. package/types/material/PBRSpecularMaterial.d.ts +1 -1
  88. package/types/material/UnlitMaterial.d.ts +1 -1
  89. package/types/mesh/BlendShape.d.ts +1 -1
  90. package/types/mesh/BlendShapeFrame.d.ts +28 -6
  91. package/types/mesh/MeshRenderer.d.ts +1 -11
  92. package/types/mesh/ModelMesh.d.ts +5 -5
  93. package/types/mesh/PrimitiveMesh.d.ts +4 -2
  94. package/types/mesh/SkinnedMeshRenderer.d.ts +0 -15
  95. package/types/particle/ParticleBufferUtils.d.ts +1 -0
  96. package/types/particle/ParticleGenerator.d.ts +72 -0
  97. package/types/particle/ParticleMaterial.d.ts +28 -0
  98. package/types/particle/ParticleRenderer.d.ts +2 -2
  99. package/types/particle/enums/ParticleCurveMode.d.ts +9 -0
  100. package/types/particle/enums/ParticleGradientMode.d.ts +9 -0
  101. package/types/particle/enums/ParticleRandomSubSeeds.d.ts +1 -0
  102. package/types/particle/enums/ParticleRenderMode.d.ts +17 -0
  103. package/types/particle/enums/ParticleScaleMode.d.ts +11 -0
  104. package/types/particle/enums/ParticleSimulationSpace.d.ts +9 -0
  105. package/types/particle/enums/ParticleStopMode.d.ts +6 -0
  106. package/types/particle/enums/attributes/BillboardParticleVertexAttribute.d.ts +1 -0
  107. package/types/particle/enums/attributes/MeshParticleVertexAttribute.d.ts +5 -0
  108. package/types/particle/enums/attributes/ParticleInstanceVertexAttribute.d.ts +1 -0
  109. package/types/particle/modules/Burst.d.ts +14 -0
  110. package/types/particle/modules/ColorOverLifetimeModule.d.ts +20 -0
  111. package/types/particle/modules/EmissionModule.d.ts +45 -0
  112. package/types/particle/modules/MainModule.d.ts +68 -0
  113. package/types/particle/modules/ParticleCompositeCurve.d.ts +56 -0
  114. package/types/particle/modules/ParticleCompositeGradient.d.ts +55 -0
  115. package/types/particle/modules/ParticleCurve.d.ts +56 -0
  116. package/types/particle/modules/ParticleGeneratorModule.d.ts +12 -0
  117. package/types/particle/modules/ParticleGradient.d.ts +94 -0
  118. package/types/particle/modules/RotationOverLifetimeModule.d.ts +34 -0
  119. package/types/particle/modules/SizeOverLifetimeModule.d.ts +34 -0
  120. package/types/particle/modules/TextureSheetAnimationModule.d.ts +42 -0
  121. package/types/particle/modules/VelocityOverLifetimeModule.d.ts +34 -0
  122. package/types/particle/modules/shape/BaseShape.d.ts +12 -0
  123. package/types/particle/modules/shape/BoxShape.d.ts +11 -0
  124. package/types/particle/modules/shape/CircleShape.d.ts +17 -0
  125. package/types/particle/modules/shape/ConeShape.d.ts +28 -0
  126. package/types/particle/modules/shape/HemisphereShape.d.ts +9 -0
  127. package/types/particle/modules/shape/ShapeUtils.d.ts +1 -0
  128. package/types/particle/modules/shape/SphereShape.d.ts +9 -0
  129. package/types/particle/modules/shape/enums/ParticleShapeArcMode.d.ts +9 -0
  130. package/types/particle/modules/shape/enums/ParticleShapeType.d.ts +15 -0
  131. package/types/particle/modules/shape/index.d.ts +6 -0
  132. package/types/physics/CharacterController.d.ts +0 -2
  133. package/types/physics/Collider.d.ts +3 -2
  134. package/types/physics/PhysicsManager.d.ts +5 -22
  135. package/types/physics/PhysicsScene.d.ts +6 -2
  136. package/types/physics/joint/HingeJoint.d.ts +2 -2
  137. package/types/physics/joint/Joint.d.ts +3 -4
  138. package/types/physics/joint/SpringJoint.d.ts +3 -2
  139. package/types/physics/shape/BoxColliderShape.d.ts +2 -0
  140. package/types/physics/shape/CapsuleColliderShape.d.ts +2 -0
  141. package/types/physics/shape/ColliderShape.d.ts +4 -1
  142. package/types/physics/shape/PlaneColliderShape.d.ts +1 -0
  143. package/types/physics/shape/SphereColliderShape.d.ts +2 -0
  144. package/types/renderingHardwareInterface/index.d.ts +1 -0
  145. package/types/shader/Shader.d.ts +32 -23
  146. package/types/shader/ShaderData.d.ts +24 -24
  147. package/types/shader/ShaderMacro.d.ts +16 -0
  148. package/types/shader/ShaderPass.d.ts +9 -2
  149. package/types/shader/ShaderProperty.d.ts +7 -0
  150. package/types/shader/enums/RenderStateElementKey.d.ts +58 -0
  151. package/types/shader/index.d.ts +5 -1
  152. package/types/shaderlib/particle/index.d.ts +14 -0
  153. package/types/shadow/CascadedShadowCasterPass.d.ts +0 -1
  154. package/types/shadow/enum/ShadowMode.d.ts +13 -0
  155. package/types/sky/SkyBoxMaterial.d.ts +27 -9
  156. package/types/sky/index.d.ts +1 -0
  157. package/types/texture/RenderTarget.d.ts +2 -6
  158. package/types/texture/Texture.d.ts +8 -6
  159. package/types/texture/Texture2D.d.ts +3 -1
  160. package/types/texture/index.d.ts +1 -0
  161. package/types/trail/TrailRenderer.d.ts +0 -5
  162. package/types/SafeLoopArray.d.ts +0 -37
  163. /package/types/{animation/internal/animationCurveOwner/assembler/BlendShapeWeightsAnimationCurveOwnerAssembler.d.ts → RenderPipeline/CullingResults.d.ts} +0 -0
  164. /package/types/{animation/internal/animationCurveOwner/assembler/IAnimationCurveOwnerAssembler.d.ts → RenderPipeline/DepthOnlyPass.d.ts} +0 -0
  165. /package/types/{animation/internal/animationCurveOwner/assembler/PositionAnimationCurveOwnerAssembler.d.ts → RenderPipeline/PipelineUtils.d.ts} +0 -0
  166. /package/types/animation/{internal/animationCurveOwner/assembler/RotationAnimationCurveOwnerAssembler.d.ts → AnimatorStatePlayData.d.ts} +0 -0
  167. /package/types/animation/internal/{animationCurveOwner/assembler/ScaleAnimationCurveOwnerAssembler.d.ts → AnimatorStateInfo.d.ts} +0 -0
  168. /package/types/animation/internal/{animationCurveOwner/assembler/UniversalAnimationCurveOwnerAssembler.d.ts → AnimatorStateMachineData.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.