@galacean/engine-core 1.1.0-beta.0 → 1.1.0-beta.10

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 (122) hide show
  1. package/dist/main.js +745 -396
  2. package/dist/main.js.map +1 -1
  3. package/dist/miniprogram.js +745 -396
  4. package/dist/module.js +734 -397
  5. package/dist/module.js.map +1 -1
  6. package/package.json +3 -3
  7. package/types/Background.d.ts +8 -0
  8. package/types/Component.d.ts +1 -1
  9. package/types/DisorderedArray.d.ts +1 -1
  10. package/types/RenderPipeline/MeshRenderElement.d.ts +3 -1
  11. package/types/RenderPipeline/SpriteElement.d.ts +3 -1
  12. package/types/RenderPipeline/SpriteMaskElement.d.ts +3 -1
  13. package/types/RenderPipeline/TextRenderElement.d.ts +3 -1
  14. package/types/Scene.d.ts +6 -0
  15. package/types/lighting/DirectLight.d.ts +8 -1
  16. package/types/lighting/Light.d.ts +0 -4
  17. package/types/lighting/LightManager.d.ts +7 -0
  18. package/types/lighting/PointLight.d.ts +9 -1
  19. package/types/lighting/SpotLight.d.ts +12 -1
  20. package/types/particle/ParticleGenerator.d.ts +0 -2
  21. package/types/particle/index.d.ts +10 -0
  22. package/types/particle/modules/MainModule.d.ts +7 -5
  23. package/types/particle/modules/ParticleGeneratorModule.d.ts +0 -1
  24. package/types/particle/modules/RotationOverLifetimeModule.d.ts +1 -1
  25. package/types/particle/modules/TextureSheetAnimationModule.d.ts +0 -4
  26. package/types/physics/Collider.d.ts +3 -1
  27. package/types/physics/PhysicsMaterial.d.ts +1 -0
  28. package/types/physics/joint/HingeJoint.d.ts +1 -1
  29. package/types/physics/joint/Joint.d.ts +4 -3
  30. package/types/physics/shape/ColliderShape.d.ts +2 -1
  31. package/types/physics/shape/SphereColliderShape.d.ts +1 -0
  32. package/types/RenderPipeline/RenderElementX.d.ts +0 -12
  33. package/types/SafeLoopArray.d.ts +0 -37
  34. package/types/Ticker.d.ts +0 -30
  35. package/types/animation/internal/AnimationCurveOwnerLayerData.d.ts +0 -1
  36. package/types/graphic/PrimitiveVertexBinding.d.ts +0 -1
  37. package/types/particle/ParticleData.d.ts +0 -1
  38. package/types/particle/ParticleMesh.d.ts +0 -289
  39. package/types/particle/ParticleShaderDeclaration.d.ts +0 -1
  40. package/types/particle/ParticleShaderMacro.d.ts +0 -1
  41. package/types/particle/ParticleShaderProperty.d.ts +0 -1
  42. package/types/particle/ParticleSystem.d.ts +0 -41
  43. package/types/particle/ParticleVertexElements.d.ts +0 -1
  44. package/types/particle/ParticleVertexUtils.d.ts +0 -1
  45. package/types/particle/enum/ParticleAnimationRowMode.d.ts +0 -9
  46. package/types/particle/enum/ParticleAnimationType.d.ts +0 -9
  47. package/types/particle/enum/ParticleCurveMode.d.ts +0 -13
  48. package/types/particle/enum/ParticleGradientMode.d.ts +0 -13
  49. package/types/particle/enum/ParticleRenderMode.d.ts +0 -17
  50. package/types/particle/enum/ParticleScaleMode.d.ts +0 -11
  51. package/types/particle/enum/ParticleShapeMultiModeValue.d.ts +0 -9
  52. package/types/particle/enum/ParticleShapeType.d.ts +0 -15
  53. package/types/particle/enum/ParticleSimulationSpace.d.ts +0 -9
  54. package/types/particle/enum/index.d.ts +0 -9
  55. package/types/particle/module/Burst.d.ts +0 -38
  56. package/types/particle/module/ColorGradient.d.ts +0 -75
  57. package/types/particle/module/ColorOverLifetimeModule.d.ts +0 -20
  58. package/types/particle/module/EmissionModule.d.ts +0 -63
  59. package/types/particle/module/FrameOverTime.d.ts +0 -73
  60. package/types/particle/module/ParticleCurve.d.ts +0 -37
  61. package/types/particle/module/RotationOverLifetimeModule.d.ts +0 -21
  62. package/types/particle/module/RotationVelocityGradient.d.ts +0 -184
  63. package/types/particle/module/SizeGradient.d.ts +0 -151
  64. package/types/particle/module/SizeOverLifetimeModule.d.ts +0 -21
  65. package/types/particle/module/StartFrame.d.ts +0 -46
  66. package/types/particle/module/TextureSheetAnimationModule.d.ts +0 -37
  67. package/types/particle/module/VelocityGradient.d.ts +0 -110
  68. package/types/particle/module/VelocityOverLifetimeModule.d.ts +0 -22
  69. package/types/particle/module/index.d.ts +0 -15
  70. package/types/particle/module/shape/BaseShape.d.ts +0 -26
  71. package/types/particle/module/shape/BoxShape.d.ts +0 -20
  72. package/types/particle/module/shape/CircleShape.d.ts +0 -27
  73. package/types/particle/module/shape/ConeShape.d.ts +0 -35
  74. package/types/particle/module/shape/HemisphereShape.d.ts +0 -23
  75. package/types/particle/module/shape/ShapeUtils.d.ts +0 -1
  76. package/types/particle/module/shape/SphereShape.d.ts +0 -23
  77. package/types/particle/module/shape/index.d.ts +0 -5
  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/Burst.d.ts +0 -25
  81. package/types/particle/moudules/Emission.d.ts +0 -47
  82. package/types/particle/moudules/EmissionModule.d.ts +0 -49
  83. package/types/particle/moudules/MainModule.d.ts +0 -59
  84. package/types/particle/moudules/ParticleCurve.d.ts +0 -27
  85. package/types/particle/moudules/ParticleGradient.d.ts +0 -28
  86. package/types/particle/moudules/ShapeModule.d.ts +0 -7
  87. package/types/particle/moudules/shape/BaseShape.d.ts +0 -28
  88. package/types/particle/moudules/shape/BoxShape.d.ts +0 -20
  89. package/types/particle/moudules/shape/CircleShape.d.ts +0 -27
  90. package/types/particle/moudules/shape/ConeShape.d.ts +0 -35
  91. package/types/particle/moudules/shape/HemisphereShape.d.ts +0 -23
  92. package/types/particle/moudules/shape/ShapeUtils.d.ts +0 -1
  93. package/types/particle/moudules/shape/SphereShape.d.ts +0 -23
  94. package/types/particle/moudules/shape/enums/ParticleShapeMultiModeValue.d.ts +0 -9
  95. package/types/particle/moudules/shape/enums/ParticleShapeType.d.ts +0 -15
  96. package/types/particle/moudules/shape/index.d.ts +0 -5
  97. package/types/shadow/PipelinePass.d.ts +0 -16
  98. package/types/utils/BoolUpdateFlag.d.ts +0 -12
  99. package/types/utils/DisorderedArray.d.ts +0 -18
  100. package/types/utils/UpdateFlag.d.ts +0 -20
  101. package/types/utils/UpdateFlagManager.d.ts +0 -1
  102. package/types/utils/Utils.d.ts +0 -31
  103. package/types/xr/XRManager.d.ts +0 -31
  104. package/types/xr/component/XRPoseDriver.d.ts +0 -10
  105. package/types/xr/data/XRCamera.d.ts +0 -6
  106. package/types/xr/data/XRDevice.d.ts +0 -9
  107. package/types/xr/data/XRHandle.d.ts +0 -10
  108. package/types/xr/enum/EnumXRButton.d.ts +0 -5
  109. package/types/xr/enum/EnumXRDevicePhase.d.ts +0 -4
  110. package/types/xr/enum/EnumXRFeature.d.ts +0 -9
  111. package/types/xr/enum/EnumXRInputSource.d.ts +0 -8
  112. package/types/xr/enum/EnumXRMode.d.ts +0 -7
  113. package/types/xr/enum/EnumXRSubsystem.d.ts +0 -4
  114. package/types/xr/enum/EnumXRTrackingMode.d.ts +0 -7
  115. package/types/xr/feature/XRCameraManager.d.ts +0 -21
  116. package/types/xr/feature/XRFeature.d.ts +0 -29
  117. package/types/xr/feature/XRImageTrackManager.d.ts +0 -10
  118. package/types/xr/feature/XRInputManager.d.ts +0 -16
  119. package/types/xr/index.d.ts +0 -18
  120. package/types/xr/provider/XRProvider.d.ts +0 -19
  121. package/types/xr/subsystem/XRInputSubsystem.d.ts +0 -5
  122. 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.