@galacean/engine-core 1.2.0-beta.6 → 1.3.0-alpha.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 (89) hide show
  1. package/dist/main.js +18802 -16268
  2. package/dist/main.js.map +1 -1
  3. package/dist/miniprogram.js +18802 -16268
  4. package/dist/module.js +18798 -16269
  5. package/dist/module.js.map +1 -1
  6. package/package.json +3 -3
  7. package/types/2d/sprite/SpriteMask.d.ts +11 -0
  8. package/types/2d/sprite/SpriteRenderer.d.ts +6 -3
  9. package/types/2d/text/TextRenderer.d.ts +10 -4
  10. package/types/Camera.d.ts +11 -3
  11. package/types/Deprecated.d.ts +101 -0
  12. package/types/Engine.d.ts +3 -0
  13. package/types/RenderPipeline/BasicRenderPipeline.d.ts +11 -5
  14. package/types/RenderPipeline/BatchUtils.d.ts +1 -0
  15. package/types/RenderPipeline/BatcherManager.d.ts +1 -12
  16. package/types/RenderPipeline/Chunk.d.ts +1 -0
  17. package/types/RenderPipeline/MaskManager.d.ts +1 -0
  18. package/types/RenderPipeline/PipelinePass.d.ts +1 -1
  19. package/types/RenderPipeline/PrimitiveChunk.d.ts +1 -0
  20. package/types/RenderPipeline/PrimitiveChunkManager.d.ts +1 -0
  21. package/types/RenderPipeline/RenderElement.d.ts +9 -6
  22. package/types/RenderPipeline/RenderQueue.d.ts +1 -30
  23. package/types/RenderPipeline/SubPrimitiveChunk.d.ts +1 -0
  24. package/types/RenderPipeline/SubRenderElement.d.ts +22 -0
  25. package/types/RenderPipeline/VertexArea.d.ts +1 -0
  26. package/types/RenderPipeline/batcher/MeshBuffer.d.ts +1 -0
  27. package/types/RenderPipeline/enums/RenderBufferStoreAction.d.ts +13 -0
  28. package/types/RenderPipeline/index.d.ts +1 -1
  29. package/types/Renderer.d.ts +4 -3
  30. package/types/Scene.d.ts +6 -0
  31. package/types/animation/Animator.d.ts +35 -6
  32. package/types/animation/AnimatorCondition.d.ts +13 -0
  33. package/types/animation/AnimatorController.d.ts +32 -2
  34. package/types/animation/AnimatorControllerParameter.d.ts +10 -0
  35. package/types/animation/AnimatorState.d.ts +15 -5
  36. package/types/animation/AnimatorStateMachine.d.ts +44 -0
  37. package/types/animation/AnimatorStateTransition.d.ts +51 -0
  38. package/types/animation/enums/AnimatorConditionMode.d.ts +9 -0
  39. package/types/animation/index.d.ts +1 -1
  40. package/types/asset/AssetType.d.ts +2 -0
  41. package/types/graphic/SubMesh.d.ts +3 -16
  42. package/types/graphic/SubPrimitive.d.ts +10 -0
  43. package/types/graphic/index.d.ts +1 -0
  44. package/types/index.d.ts +2 -1
  45. package/types/material/BaseMaterial.d.ts +1 -1
  46. package/types/mesh/SkinnedMeshRenderer.d.ts +1 -1
  47. package/types/particle/ParticleGenerator.d.ts +20 -0
  48. package/types/particle/ParticleRenderer.d.ts +3 -1
  49. package/types/particle/modules/EmissionModule.d.ts +6 -2
  50. package/types/particle/modules/MainModule.d.ts +49 -15
  51. package/types/particle/modules/ParticleCompositeCurve.d.ts +35 -10
  52. package/types/particle/modules/ParticleCurve.d.ts +16 -9
  53. package/types/particle/modules/ParticleGeneratorModule.d.ts +6 -2
  54. package/types/particle/modules/SizeOverLifetimeModule.d.ts +27 -8
  55. package/types/particle/modules/VelocityOverLifetimeModule.d.ts +29 -8
  56. package/types/particle/modules/shape/BaseShape.d.ts +14 -4
  57. package/types/particle/modules/shape/BoxShape.d.ts +7 -2
  58. package/types/particle/modules/shape/CircleShape.d.ts +25 -8
  59. package/types/particle/modules/shape/ConeShape.d.ts +24 -8
  60. package/types/particle/modules/shape/HemisphereShape.d.ts +6 -2
  61. package/types/particle/modules/shape/SphereShape.d.ts +6 -2
  62. package/types/postProcess/PostProcessEffect.d.ts +13 -0
  63. package/types/postProcess/PostProcessManager.d.ts +1 -0
  64. package/types/postProcess/PostProcessPass.d.ts +55 -0
  65. package/types/postProcess/effects/BloomEffect.d.ts +94 -0
  66. package/types/postProcess/effects/TonemappingEffect.d.ts +35 -0
  67. package/types/postProcess/effects/index.d.ts +2 -0
  68. package/types/postProcess/index.d.ts +3 -0
  69. package/types/shader/enums/ShaderDataGroup.d.ts +4 -2
  70. package/types/shader/enums/ShaderPlatformTarget.d.ts +4 -0
  71. package/types/shader/enums/ShaderType.d.ts +1 -0
  72. package/types/shader/state/RenderState.d.ts +1 -0
  73. package/types/texture/enums/PixelFormat.d.ts +73 -0
  74. package/types/texture/enums/TextureFormat.d.ts +2 -0
  75. package/types/utils/ClearableObjectPool.d.ts +16 -0
  76. package/types/utils/ObjectPool.d.ts +16 -0
  77. package/types/utils/ReturnableObjectPool.d.ts +16 -0
  78. package/types/utils/index.d.ts +3 -0
  79. package/types/input/pointer/PointerEvent.d.ts +0 -4
  80. package/types/input/pointer/PointerEventType.d.ts +0 -7
  81. package/types/ui/Image.d.ts +0 -41
  82. package/types/ui/RedBlackTree.d.ts +0 -2
  83. package/types/ui/UICanvas.d.ts +0 -49
  84. package/types/ui/UIRenderer.d.ts +0 -20
  85. package/types/ui/UITransform.d.ts +0 -20
  86. package/types/ui/enums/BlockingObjects.d.ts +0 -6
  87. package/types/ui/enums/CanvasRenderMode.d.ts +0 -8
  88. package/types/ui/enums/ResolutionAdaptationStrategy.d.ts +0 -10
  89. package/types/ui/index.d.ts +0 -6

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.