@galacean/engine-core 0.0.0-experimental-ktx2.0 → 0.0.0-experimental-double11.2
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.
- package/dist/main.js +9997 -10838
- package/dist/main.js.map +1 -1
- package/dist/miniprogram.js +9997 -10838
- package/dist/module.js +9901 -10742
- package/dist/module.js.map +1 -1
- package/package.json +3 -3
- package/types/2d/enums/SpriteDirtyFlag.d.ts +13 -0
- package/types/Camera.d.ts +8 -30
- package/types/Component.d.ts +0 -1
- package/types/ComponentsManager.d.ts +3 -2
- package/types/Engine.d.ts +4 -9
- package/types/Entity.d.ts +0 -2
- package/types/ListenerUpdateFlag.d.ts +12 -0
- package/types/RenderPipeline/BasicRenderPipeline.d.ts +2 -1
- package/types/RenderPipeline/MeshRenderElement.d.ts +3 -1
- package/types/RenderPipeline/RenderElement.d.ts +4 -2
- package/types/RenderPipeline/RenderQueue.d.ts +1 -1
- package/types/RenderPipeline/SpriteElement.d.ts +3 -1
- package/types/RenderPipeline/SpriteMaskElement.d.ts +3 -1
- package/types/RenderPipeline/TextRenderElement.d.ts +3 -1
- package/types/RenderPipeline/enums/PipelineStage.d.ts +0 -2
- package/types/Scene.d.ts +4 -3
- package/types/SceneManager.d.ts +5 -28
- package/types/animation/Animator.d.ts +2 -0
- package/types/animation/AnimatorStateTransition.d.ts +12 -0
- package/types/animation/AnimatorTransitionBase.d.ts +10 -0
- package/types/animation/animationCurve/AnimationRectCurve.d.ts +8 -0
- package/types/animation/animationCurve/AnimationRefCurve.d.ts +8 -0
- package/types/animation/enums/StateMachineState.d.ts +13 -0
- package/types/animation/index.d.ts +0 -4
- package/types/animation/internal/AnimatorPlayableObject.d.ts +23 -0
- package/types/animation/internal/animationCurveOwner/Assembler/PositionAnimationCurveOwnerAssembler.d.ts +1 -0
- package/types/animation/internal/animationCurveOwner/Assembler/RotationAnimationCurveOwnerAssembler.d.ts +1 -0
- package/types/animation/internal/animationCurveOwner/Assembler/ScaleAnimationCurveOwnerAssembler.d.ts +1 -0
- package/types/animation/internal/animationCurveOwner/Assembler/UniversalAnimationCurveOwnerAssembler.d.ts +1 -0
- package/types/asset/AssetType.d.ts +0 -2
- package/types/asset/Loader.d.ts +1 -3
- package/types/asset/ResourceManager.d.ts +2 -6
- package/types/base/Constant.d.ts +0 -1
- package/types/clone/ComponentCloner.d.ts +1 -2
- package/types/fog/EXP2Fog.d.ts +15 -0
- package/types/fog/Fog.d.ts +14 -0
- package/types/fog/LinearFog.d.ts +22 -0
- package/types/fog/index.d.ts +3 -0
- package/types/graphic/Buffer.d.ts +6 -22
- package/types/graphic/BufferUtil.d.ts +0 -1
- package/types/graphic/Primitive.d.ts +1 -0
- package/types/graphic/SubPrimitive.d.ts +9 -0
- package/types/graphic/VertexElement.d.ts +6 -10
- package/types/index.d.ts +0 -1
- package/types/input/InputManager.d.ts +2 -2
- package/types/mesh/BufferMesh.d.ts +2 -2
- package/types/mesh/ModelMesh.d.ts +41 -62
- package/types/mesh/PrimitiveMesh.d.ts +2 -4
- package/types/mesh/Skin.d.ts +0 -3
- package/types/mesh/SkinnedMeshRenderer.d.ts +11 -20
- package/types/mesh/index.d.ts +5 -6
- package/types/particle/ParticleBufferUtils.d.ts +1 -0
- package/types/particle/ParticleGenerator.d.ts +72 -0
- package/types/particle/ParticleMaterial.d.ts +28 -0
- package/types/particle/enums/ParticleCurveMode.d.ts +9 -0
- package/types/particle/enums/ParticleGradientMode.d.ts +9 -0
- package/types/particle/enums/ParticleRandomSubSeeds.d.ts +1 -0
- package/types/particle/enums/ParticleRenderMode.d.ts +17 -0
- package/types/particle/enums/ParticleScaleMode.d.ts +11 -0
- package/types/particle/enums/ParticleSimulationSpace.d.ts +9 -0
- package/types/particle/enums/ParticleStopMode.d.ts +6 -0
- package/types/particle/enums/attributes/BillboardParticleVertexAttribute.d.ts +1 -0
- package/types/particle/enums/attributes/MeshParticleVertexAttribute.d.ts +5 -0
- package/types/particle/enums/attributes/ParticleInstanceVertexAttribute.d.ts +1 -0
- package/types/particle/modules/Burst.d.ts +14 -0
- package/types/particle/modules/ColorOverLifetimeModule.d.ts +20 -0
- package/types/particle/modules/EmissionModule.d.ts +45 -0
- package/types/particle/modules/MainModule.d.ts +68 -0
- package/types/particle/modules/ParticleCompositeCurve.d.ts +56 -0
- package/types/particle/modules/ParticleCompositeGradient.d.ts +55 -0
- package/types/particle/modules/ParticleCurve.d.ts +56 -0
- package/types/particle/modules/ParticleGeneratorModule.d.ts +12 -0
- package/types/particle/modules/ParticleGradient.d.ts +94 -0
- package/types/particle/modules/RotationOverLifetimeModule.d.ts +34 -0
- package/types/particle/modules/SizeOverLifetimeModule.d.ts +34 -0
- package/types/particle/modules/TextureSheetAnimationModule.d.ts +42 -0
- package/types/particle/modules/VelocityOverLifetimeModule.d.ts +34 -0
- package/types/particle/modules/shape/BaseShape.d.ts +12 -0
- package/types/particle/modules/shape/BoxShape.d.ts +11 -0
- package/types/particle/modules/shape/CircleShape.d.ts +17 -0
- package/types/particle/modules/shape/ConeShape.d.ts +28 -0
- package/types/particle/modules/shape/HemisphereShape.d.ts +9 -0
- package/types/particle/modules/shape/ShapeUtils.d.ts +1 -0
- package/types/particle/modules/shape/SphereShape.d.ts +9 -0
- package/types/particle/modules/shape/enums/ParticleShapeArcMode.d.ts +9 -0
- package/types/particle/modules/shape/enums/ParticleShapeType.d.ts +15 -0
- package/types/particle/modules/shape/index.d.ts +6 -0
- package/types/physics/Collider.d.ts +2 -1
- package/types/physics/PhysicsManager.d.ts +4 -2
- package/types/physics/PhysicsScene.d.ts +6 -2
- package/types/physics/index.d.ts +7 -7
- package/types/physics/joint/Joint.d.ts +1 -2
- package/types/physics/joint/SpringJoint.d.ts +2 -1
- package/types/physics/shape/BoxColliderShape.d.ts +2 -0
- package/types/physics/shape/CapsuleColliderShape.d.ts +2 -0
- package/types/physics/shape/ColliderShape.d.ts +4 -1
- package/types/physics/shape/PlaneColliderShape.d.ts +1 -0
- package/types/physics/shape/SphereColliderShape.d.ts +2 -0
- package/types/renderingHardwareInterface/IPlatformBuffer.d.ts +1 -0
- package/types/renderingHardwareInterface/IPlatformTexture2D.d.ts +1 -1
- package/types/renderingHardwareInterface/IPlatformTexture2DArray.d.ts +1 -1
- package/types/renderingHardwareInterface/IPlatformTextureCube.d.ts +1 -1
- package/types/shader/Shader.d.ts +0 -22
- package/types/shader/enums/RenderStateElementKey.d.ts +3 -1
- package/types/shader/index.d.ts +0 -1
- package/types/shaderlib/particle/index.d.ts +14 -0
- package/types/shadow/CascadedShadowCasterPass.d.ts +6 -5
- package/types/shadow/enum/ShadowMode.d.ts +13 -0
- package/types/texture/RenderTarget.d.ts +2 -1
- package/types/texture/Texture2D.d.ts +1 -1
- package/types/texture/Texture2DArray.d.ts +1 -1
- package/types/texture/TextureCube.d.ts +1 -1
- package/types/texture/enums/TextureFormat.d.ts +49 -55
- /package/types/animation/{internal/animationCurveOwner/assembler/BlendShapeWeightsAnimationCurveOwnerAssembler.d.ts → AnimatorStatePlayData.d.ts} +0 -0
- /package/types/animation/internal/{animationCurveOwner/assembler/IAnimationCurveOwnerAssembler.d.ts → AnimatorStateInfo.d.ts} +0 -0
- /package/types/animation/internal/{animationCurveOwner/assembler/PositionAnimationCurveOwnerAssembler.d.ts → AnimatorStateMachineData.d.ts} +0 -0
- /package/types/animation/internal/{animationCurveOwner/assembler/RotationAnimationCurveOwnerAssembler.d.ts → CrossCurveData.d.ts} +0 -0
- /package/types/animation/internal/animationCurveOwner/{assembler/ScaleAnimationCurveOwnerAssembler.d.ts → Assembler/BlendShapeWeightsAnimationCurveOwnerAssembler.d.ts} +0 -0
- /package/types/animation/internal/animationCurveOwner/{assembler/UniversalAnimationCurveOwnerAssembler.d.ts → Assembler/IAnimationCurveOwnerAssembler.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.