@galacean/engine-core 1.1.0-beta.9 → 1.2.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 (189) hide show
  1. package/dist/main.js +17413 -16437
  2. package/dist/main.js.map +1 -1
  3. package/dist/miniprogram.js +17413 -16437
  4. package/dist/module.js +20381 -19408
  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/Camera.d.ts +1 -1
  11. package/types/Canvas.d.ts +14 -5
  12. package/types/Component.d.ts +2 -0
  13. package/types/ComponentsManager.d.ts +3 -0
  14. package/types/DisorderedArray.d.ts +1 -0
  15. package/types/Engine.d.ts +6 -2
  16. package/types/Entity.d.ts +1 -0
  17. package/types/RenderPipeline/BasicRenderPipeline.d.ts +3 -1
  18. package/types/RenderPipeline/RenderQueue.d.ts +0 -7
  19. package/types/Scene.d.ts +9 -2
  20. package/types/SystemInfo.d.ts +2 -0
  21. package/types/Utils.d.ts +1 -0
  22. package/types/animation/AnimationClip.d.ts +32 -4
  23. package/types/animation/AnimationClipCurveBinding.d.ts +12 -2
  24. package/types/animation/AnimatorControllerLayer.d.ts +3 -0
  25. package/types/animation/AnimatorLayerMask.d.ts +45 -0
  26. package/types/animation/Keyframe.d.ts +1 -1
  27. package/types/animation/LayerPathMask.d.ts +16 -0
  28. package/types/animation/animationCurve/AnimationStringCurve.d.ts +7 -0
  29. package/types/animation/animationCurve/index.d.ts +1 -0
  30. package/types/animation/index.d.ts +1 -0
  31. package/types/asset/AssetPromise.d.ts +10 -4
  32. package/types/asset/ReferResource.d.ts +3 -2
  33. package/types/asset/ResourceManager.d.ts +0 -1
  34. package/types/index.d.ts +3 -1
  35. package/types/lighting/Light.d.ts +0 -1
  36. package/types/lighting/LightManager.d.ts +0 -1
  37. package/types/material/PBRMaterial.d.ts +23 -0
  38. package/types/mesh/PrimitiveMesh.d.ts +22 -0
  39. package/types/mesh/SkinnedMeshRenderer.d.ts +1 -1
  40. package/types/particle/modules/EmissionModule.d.ts +0 -1
  41. package/types/particle/modules/MainModule.d.ts +0 -1
  42. package/types/particle/modules/ParticleGradient.d.ts +38 -18
  43. package/types/renderingHardwareInterface/index.d.ts +0 -1
  44. package/types/shader/Shader.d.ts +16 -3
  45. package/types/xr/XRManager.d.ts +3 -29
  46. package/types/xr/XRPose.d.ts +15 -0
  47. package/types/xr/feature/XRFeature.d.ts +13 -26
  48. package/types/xr/feature/XRFeatureManager.d.ts +65 -0
  49. package/types/xr/feature/XRFeatureType.d.ts +13 -0
  50. package/types/xr/feature/camera/XRCameraManager.d.ts +26 -0
  51. package/types/xr/feature/hitTest/TrackableType.d.ts +10 -0
  52. package/types/xr/feature/hitTest/XRHitResult.d.ts +19 -0
  53. package/types/xr/feature/hitTest/XRHitTest.d.ts +39 -0
  54. package/types/xr/feature/hitTest/XRHitTestManager.d.ts +38 -0
  55. package/types/xr/feature/hitTest/XRHitTestType.d.ts +16 -0
  56. package/types/xr/feature/movementTracking/XRMovementTracking.d.ts +18 -0
  57. package/types/xr/feature/movementTracking/XRMovementTrackingManager.d.ts +10 -0
  58. package/types/xr/feature/movementTracking/XRMovementTrackingMode.d.ts +5 -0
  59. package/types/xr/feature/trackable/XRRequestTrackingState.d.ts +11 -0
  60. package/types/xr/feature/trackable/XRTrackableFeature.d.ts +38 -0
  61. package/types/xr/feature/trackable/XRTrackableManager.d.ts +41 -0
  62. package/types/xr/feature/trackable/anchor/XRAnchor.d.ts +6 -0
  63. package/types/xr/feature/trackable/anchor/XRAnchorTracking.d.ts +37 -0
  64. package/types/xr/feature/trackable/anchor/XRAnchorTrackingManager.d.ts +20 -0
  65. package/types/xr/feature/trackable/anchor/XRRequestAnchor.d.ts +15 -0
  66. package/types/xr/feature/trackable/image/XRImageTracking.d.ts +24 -0
  67. package/types/xr/feature/trackable/image/XRImageTrackingManager.d.ts +31 -0
  68. package/types/xr/feature/trackable/image/XRReferenceImage.d.ts +11 -0
  69. package/types/xr/feature/trackable/image/XRRequestImage.d.ts +13 -0
  70. package/types/xr/feature/trackable/image/XRTrackedImage.d.ts +8 -0
  71. package/types/xr/feature/trackable/plane/XRPlaneMode.d.ts +13 -0
  72. package/types/xr/feature/trackable/plane/XRPlaneTracking.d.ts +23 -0
  73. package/types/xr/feature/trackable/plane/XRPlaneTrackingManager.d.ts +11 -0
  74. package/types/xr/feature/trackable/plane/XRRequestPlane.d.ts +12 -0
  75. package/types/xr/feature/trackable/plane/XRTrackedPlane.d.ts +20 -0
  76. package/types/xr/index.d.ts +25 -18
  77. package/types/xr/input/XRCamera.d.ts +15 -0
  78. package/types/xr/input/XRController.d.ts +38 -0
  79. package/types/xr/input/XRControllerPoseMode.d.ts +9 -0
  80. package/types/xr/input/XRInput.d.ts +8 -0
  81. package/types/xr/input/XRInputButton.d.ts +19 -0
  82. package/types/xr/input/XRInputEvent.d.ts +24 -0
  83. package/types/xr/input/XRInputEventType.d.ts +11 -0
  84. package/types/xr/input/XRInputManager.d.ts +31 -0
  85. package/types/xr/input/XRInputType.d.ts +23 -0
  86. package/types/xr/input/XRTargetRayMode.d.ts +12 -0
  87. package/types/xr/input/XRTrackedInputDevice.d.ts +21 -0
  88. package/types/xr/input/XRTrackedUpdateFlag.d.ts +11 -0
  89. package/types/xr/input/XRTrackingState.d.ts +11 -0
  90. package/types/xr/session/XRSessionManager.d.ts +45 -0
  91. package/types/xr/session/XRSessionMode.d.ts +8 -0
  92. package/types/xr/session/XRSessionState.d.ts +13 -0
  93. package/types/RenderPipeline/MeshRenderElement.d.ts +0 -19
  94. package/types/RenderPipeline/RenderElementX.d.ts +0 -12
  95. package/types/RenderPipeline/SpriteElement.d.ts +0 -15
  96. package/types/RenderPipeline/SpriteMaskElement.d.ts +0 -12
  97. package/types/RenderPipeline/TextRenderElement.d.ts +0 -8
  98. package/types/SafeLoopArray.d.ts +0 -37
  99. package/types/Ticker.d.ts +0 -30
  100. package/types/asset/IRefObject.d.ts +0 -2
  101. package/types/asset/RefObject.d.ts +0 -27
  102. package/types/base/Event.d.ts +0 -24
  103. package/types/base/Util.d.ts +0 -14
  104. package/types/particle/ParticleData.d.ts +0 -1
  105. package/types/particle/ParticleMesh.d.ts +0 -289
  106. package/types/particle/ParticleShaderDeclaration.d.ts +0 -1
  107. package/types/particle/ParticleShaderMacro.d.ts +0 -1
  108. package/types/particle/ParticleShaderProperty.d.ts +0 -1
  109. package/types/particle/ParticleSystem.d.ts +0 -41
  110. package/types/particle/ParticleVertexElements.d.ts +0 -1
  111. package/types/particle/ParticleVertexUtils.d.ts +0 -1
  112. package/types/particle/enum/ParticleAnimationRowMode.d.ts +0 -9
  113. package/types/particle/enum/ParticleAnimationType.d.ts +0 -9
  114. package/types/particle/enum/ParticleCurveMode.d.ts +0 -13
  115. package/types/particle/enum/ParticleGradientMode.d.ts +0 -13
  116. package/types/particle/enum/ParticleRenderMode.d.ts +0 -17
  117. package/types/particle/enum/ParticleScaleMode.d.ts +0 -11
  118. package/types/particle/enum/ParticleShapeMultiModeValue.d.ts +0 -9
  119. package/types/particle/enum/ParticleShapeType.d.ts +0 -15
  120. package/types/particle/enum/ParticleSimulationSpace.d.ts +0 -9
  121. package/types/particle/enum/index.d.ts +0 -9
  122. package/types/particle/module/Burst.d.ts +0 -38
  123. package/types/particle/module/ColorGradient.d.ts +0 -75
  124. package/types/particle/module/ColorOverLifetimeModule.d.ts +0 -20
  125. package/types/particle/module/EmissionModule.d.ts +0 -63
  126. package/types/particle/module/FrameOverTime.d.ts +0 -73
  127. package/types/particle/module/ParticleCurve.d.ts +0 -37
  128. package/types/particle/module/RotationOverLifetimeModule.d.ts +0 -21
  129. package/types/particle/module/RotationVelocityGradient.d.ts +0 -184
  130. package/types/particle/module/SizeGradient.d.ts +0 -151
  131. package/types/particle/module/SizeOverLifetimeModule.d.ts +0 -21
  132. package/types/particle/module/StartFrame.d.ts +0 -46
  133. package/types/particle/module/TextureSheetAnimationModule.d.ts +0 -37
  134. package/types/particle/module/VelocityGradient.d.ts +0 -110
  135. package/types/particle/module/VelocityOverLifetimeModule.d.ts +0 -22
  136. package/types/particle/module/index.d.ts +0 -15
  137. package/types/particle/module/shape/BaseShape.d.ts +0 -26
  138. package/types/particle/module/shape/BoxShape.d.ts +0 -20
  139. package/types/particle/module/shape/CircleShape.d.ts +0 -27
  140. package/types/particle/module/shape/ConeShape.d.ts +0 -35
  141. package/types/particle/module/shape/HemisphereShape.d.ts +0 -23
  142. package/types/particle/module/shape/ShapeUtils.d.ts +0 -1
  143. package/types/particle/module/shape/SphereShape.d.ts +0 -23
  144. package/types/particle/module/shape/index.d.ts +0 -5
  145. package/types/particle/modules/ShapeModule.d.ts +0 -9
  146. package/types/particle/modules/shape/enums/ParticleShapeMultiModeValue.d.ts +0 -9
  147. package/types/particle/moudules/Burst.d.ts +0 -25
  148. package/types/particle/moudules/Emission.d.ts +0 -47
  149. package/types/particle/moudules/EmissionModule.d.ts +0 -49
  150. package/types/particle/moudules/MainModule.d.ts +0 -59
  151. package/types/particle/moudules/ParticleCurve.d.ts +0 -27
  152. package/types/particle/moudules/ParticleGradient.d.ts +0 -28
  153. package/types/particle/moudules/ShapeModule.d.ts +0 -7
  154. package/types/particle/moudules/shape/BaseShape.d.ts +0 -28
  155. package/types/particle/moudules/shape/BoxShape.d.ts +0 -20
  156. package/types/particle/moudules/shape/CircleShape.d.ts +0 -27
  157. package/types/particle/moudules/shape/ConeShape.d.ts +0 -35
  158. package/types/particle/moudules/shape/HemisphereShape.d.ts +0 -23
  159. package/types/particle/moudules/shape/ShapeUtils.d.ts +0 -1
  160. package/types/particle/moudules/shape/SphereShape.d.ts +0 -23
  161. package/types/particle/moudules/shape/enums/ParticleShapeMultiModeValue.d.ts +0 -9
  162. package/types/particle/moudules/shape/enums/ParticleShapeType.d.ts +0 -15
  163. package/types/particle/moudules/shape/index.d.ts +0 -5
  164. package/types/shadow/PipelinePass.d.ts +0 -16
  165. package/types/utils/BoolUpdateFlag.d.ts +0 -12
  166. package/types/utils/DisorderedArray.d.ts +0 -18
  167. package/types/utils/UpdateFlag.d.ts +0 -20
  168. package/types/utils/UpdateFlagManager.d.ts +0 -1
  169. package/types/utils/Utils.d.ts +0 -31
  170. package/types/xr/component/XRPoseDriver.d.ts +0 -10
  171. package/types/xr/data/XRCamera.d.ts +0 -6
  172. package/types/xr/data/XRDevice.d.ts +0 -9
  173. package/types/xr/data/XRHandle.d.ts +0 -10
  174. package/types/xr/enum/EnumXRButton.d.ts +0 -5
  175. package/types/xr/enum/EnumXRDevicePhase.d.ts +0 -4
  176. package/types/xr/enum/EnumXRFeature.d.ts +0 -9
  177. package/types/xr/enum/EnumXRInputSource.d.ts +0 -8
  178. package/types/xr/enum/EnumXRMode.d.ts +0 -7
  179. package/types/xr/enum/EnumXRSubsystem.d.ts +0 -4
  180. package/types/xr/enum/EnumXRTrackingMode.d.ts +0 -7
  181. package/types/xr/feature/XRCameraManager.d.ts +0 -21
  182. package/types/xr/feature/XRImageTrackManager.d.ts +0 -10
  183. package/types/xr/feature/XRInputManager.d.ts +0 -16
  184. package/types/xr/provider/XRProvider.d.ts +0 -19
  185. package/types/xr/subsystem/XRInputSubsystem.d.ts +0 -5
  186. package/types/xr/subsystem/XRSubsystem.d.ts +0 -30
  187. /package/types/{2d/data/RenderData2D.d.ts → enums/CameraType.d.ts} +0 -0
  188. /package/types/{animation/internal/AnimationCurveOwnerLayerData.d.ts → xr/feature/trackable/XRRequestTracking.d.ts} +0 -0
  189. /package/types/{graphic/PrimitiveVertexBinding.d.ts → xr/feature/trackable/XRTracked.d.ts} +0 -0
@@ -1,20 +0,0 @@
1
- import { BoundingBox, Vector3 } from "@galacean/engine-math";
2
- import { BaseShape } from "./BaseShape";
3
- /**
4
- * Box emitter shape
5
- */
6
- export declare class BoxShape extends BaseShape {
7
- /** Thickness of the box to emit particles from. */
8
- boxThickness: Vector3;
9
- constructor();
10
- /**
11
- * @inheritDoc
12
- */
13
- protected _getShapeBoundBox(boundBox: BoundingBox): void;
14
- /**
15
- * @inheritDoc
16
- */
17
- protected _getSpeedBoundBox(boundBox: BoundingBox): void;
18
- cloneTo(destShape: BoxShape): void;
19
- clone(): BoxShape;
20
- }
@@ -1,27 +0,0 @@
1
- import { BoundingBox, Vector2, Vector3 } from "@galacean/engine-math";
2
- import { BaseShape } from "./BaseShape";
3
- import { ParticleShapeMultiModeValue } from "./enums/ParticleShapeMultiModeValue";
4
- /**
5
- * Circle Particle Emitter
6
- */
7
- export declare class CircleShape extends BaseShape {
8
- protected static _tempPositionPoint: Vector2;
9
- /** Radius of the shape to emit particles from. */
10
- radius: number;
11
- /** Angle of the circle arc to emit particles from. */
12
- arc: number;
13
- /** The mode to generate particles around the arc. */
14
- arcMode: ParticleShapeMultiModeValue;
15
- constructor();
16
- /**
17
- * @inheritDoc
18
- */
19
- protected _getShapeBoundBox(boundBox: BoundingBox): void;
20
- /**
21
- * @inheritDoc
22
- */
23
- protected _getSpeedBoundBox(boundBox: BoundingBox): void;
24
- _generatePositionAndDirection(position: Vector3, direction: Vector3): void;
25
- cloneTo(destShape: CircleShape): void;
26
- clone(): CircleShape;
27
- }
@@ -1,35 +0,0 @@
1
- import { BoundingBox, Vector2, Vector3 } from "@galacean/engine-math";
2
- import { BaseShape } from "./BaseShape";
3
- export declare enum ConeEmitType {
4
- Base = 0,
5
- BaseShell = 1,
6
- Volume = 2,
7
- VolumeShell = 3
8
- }
9
- /**
10
- * Cone particle emitter
11
- */
12
- export declare class ConeShape extends BaseShape {
13
- protected static _tempPositionPoint: Vector2;
14
- protected static _tempDirectionPoint: Vector2;
15
- /** Angle of the cone to emit particles from. */
16
- angle: number;
17
- /** Radius of the shape to emit particles from. */
18
- radius: number;
19
- /** Length of the cone to emit particles from. */
20
- length: number;
21
- /** Cone emitter subtype */
22
- emitType: ConeEmitType;
23
- constructor();
24
- /**
25
- * @inheritDoc
26
- */
27
- protected _getShapeBoundBox(boundBox: BoundingBox): void;
28
- /**
29
- * @inheritDoc
30
- */
31
- protected _getSpeedBoundBox(boundBox: BoundingBox): void;
32
- _generatePositionAndDirection(position: Vector3, direction: Vector3): void;
33
- cloneTo(destShape: ConeShape): void;
34
- clone(): ConeShape;
35
- }
@@ -1,23 +0,0 @@
1
- import { BoundingBox, Vector3 } from "@galacean/engine-math";
2
- import { BaseShape } from "./BaseShape";
3
- /**
4
- * Hemisphere emitter
5
- */
6
- export declare class HemisphereShape extends BaseShape {
7
- /** Radius of the shape to emit particles from. */
8
- radius: number;
9
- /** Whether emit from shell */
10
- emitFromShell: boolean;
11
- constructor();
12
- /**
13
- * @inheritDoc
14
- */
15
- protected _getShapeBoundBox(boundBox: BoundingBox): void;
16
- /**
17
- * @inheritDoc
18
- */
19
- protected _getSpeedBoundBox(boundBox: BoundingBox): void;
20
- _generatePositionAndDirection(position: Vector3, direction: Vector3): void;
21
- cloneTo(destShape: HemisphereShape): void;
22
- clone(): HemisphereShape;
23
- }
@@ -1 +0,0 @@
1
- export {};
@@ -1,23 +0,0 @@
1
- import { BoundingBox, Rand, Vector3 } from "@galacean/engine-math";
2
- import { BaseShape } from "./BaseShape";
3
- /**
4
- * Sphere emitter
5
- */
6
- export declare class SphereShape extends BaseShape {
7
- /** Radius of the shape to emit particles from. */
8
- radius: number;
9
- /** Whether emit from shell */
10
- emitFromShell: boolean;
11
- constructor();
12
- /**
13
- * @inheritDoc
14
- */
15
- protected _getShapeBoundBox(boundBox: BoundingBox): void;
16
- /**
17
- * @inheritDoc
18
- */
19
- protected _getSpeedBoundBox(boundBox: BoundingBox): void;
20
- _generatePositionAndDirection(position: Vector3, direction: Vector3, rand?: Rand, randomSeeds?: Uint32Array): void;
21
- cloneTo(destShape: SphereShape): void;
22
- clone(): SphereShape;
23
- }
@@ -1,9 +0,0 @@
1
- /**
2
- * The mode used to generate new points in a shape.
3
- */
4
- export declare enum ParticleShapeMultiModeValue {
5
- /** Generate points randomly. (Default) */
6
- Random = 0,
7
- /** Animate the emission point around the shape. */
8
- Loop = 1
9
- }
@@ -1,15 +0,0 @@
1
- /**
2
- * The emission shape.
3
- */
4
- export declare enum ParticleShapeType {
5
- /** Emit from the volume of a box. */
6
- Box = 0,
7
- /** Emit from a circle. */
8
- Circle = 1,
9
- /** Emit from the base of a cone. */
10
- Cone = 2,
11
- /** Emit from a half-sphere. */
12
- Hemisphere = 3,
13
- /** Emit from a sphere. */
14
- Sphere = 4
15
- }
@@ -1,5 +0,0 @@
1
- export { BoxShape } from "./BoxShape";
2
- export { CircleShape } from "./CircleShape";
3
- export { ConeShape, ConeEmitType } from "./ConeShape";
4
- export { HemisphereShape } from "./HemisphereShape";
5
- export { SphereShape } from "./SphereShape";
@@ -1,16 +0,0 @@
1
- import { Engine } from "../Engine";
2
- import { CullingResults } from "../RenderPipeline/CullingResults";
3
- import { RenderContext } from "../RenderPipeline/RenderContext";
4
- /**
5
- * PipelinePass is a base class for all pipeline passes.
6
- */
7
- export declare abstract class PipelinePass {
8
- protected _engine: Engine;
9
- constructor(engine: Engine);
10
- /**
11
- * Called before rendering a camera, override this method to configure the camera If you need to configure the camera clear flag or render target.
12
- * @param context - Rendering context
13
- * @param cullingResults - Culling results
14
- */
15
- abstract onRender(context: RenderContext, cullingResults: CullingResults): void;
16
- }
@@ -1,12 +0,0 @@
1
- import { UpdateFlag } from "./UpdateFlag";
2
- /**
3
- * Bool update flag.
4
- */
5
- export declare class BoolUpdateFlag extends UpdateFlag {
6
- /** Bool flag. */
7
- flag: boolean;
8
- /**
9
- * @inheritdoc
10
- */
11
- dispatch(): void;
12
- }
@@ -1,18 +0,0 @@
1
- /**
2
- * High-performance unordered array, delete uses exchange method to improve performance, internal capacity only increases.
3
- */
4
- export declare class DisorderedArray<T> {
5
- _elements: T[];
6
- length: number;
7
- constructor(count?: number);
8
- add(element: T): void;
9
- delete(element: T): void;
10
- get(index: number): T;
11
- /**
12
- *
13
- * @param index
14
- * @returns The replaced item is used to reset its index.
15
- */
16
- deleteByIndex(index: number): T;
17
- garbageCollection(): void;
18
- }
@@ -1,20 +0,0 @@
1
- /**
2
- * Used to update tags.
3
- */
4
- export declare abstract class UpdateFlag {
5
- /**
6
- * Dispatch.
7
- * @param bit - Bit
8
- * @param param - Parameter
9
- */
10
- abstract dispatch(bit?: number, param?: Object): void;
11
- /**
12
- * Clear.
13
- */
14
- clearFromManagers(): void;
15
- /**
16
- * Destroy.
17
- */
18
- destroy(): void;
19
- private _removeFromManagers;
20
- }
@@ -1 +0,0 @@
1
- export {};
@@ -1,31 +0,0 @@
1
- export declare class Utils {
2
- /**
3
- * Fast remove an element from array.
4
- * @param array - Array
5
- * @param item - Element
6
- */
7
- static removeFromArray(array: any[], item: any): boolean;
8
- /**
9
- * Decodes a given Uint8Array into a string.
10
- */
11
- static decodeText(array: Uint8Array): string;
12
- /**
13
- * Judge whether the url is absolute url.
14
- * @param url - The url to be judged.
15
- * @returns Whether the url is absolute url.
16
- */
17
- static isAbsoluteUrl(url: string): boolean;
18
- /**
19
- * Get the values of an object.
20
- */
21
- static objectValues(obj: any): any[];
22
- /**
23
- * Convert a relative URL to an absolute URL based on a given base URL.
24
- * @param baseUrl - The base url.
25
- * @param relativeUrl - The relative url.
26
- * @returns The resolved url.
27
- */
28
- static resolveAbsoluteUrl(baseUrl: string, relativeUrl: string): string;
29
- private static _stringToPath;
30
- private static _formatRelativePath;
31
- }
@@ -1,10 +0,0 @@
1
- import { Script } from "../../Script";
2
- import { EnumXRInputSource } from "../enum/EnumXRInputSource";
3
- import { EnumXRTrackingMode } from "../enum/EnumXRTrackingMode";
4
- export declare class XRPoseDriver extends Script {
5
- source: EnumXRInputSource;
6
- updateType: EnumXRTrackingMode;
7
- private _xrManager;
8
- onLateUpdate(): void;
9
- onAwake(): void;
10
- }
@@ -1,6 +0,0 @@
1
- import { Matrix, Vector4 } from "@galacean/engine-math";
2
- import { XRDevice } from "./XRDevice";
3
- export declare class XRCamera extends XRDevice {
4
- project: Matrix;
5
- viewport: Vector4;
6
- }
@@ -1,9 +0,0 @@
1
- import { Matrix, Quaternion, Vector3 } from "@galacean/engine-math";
2
- import { EnumXRDevicePhase } from "../enum/EnumXRDevicePhase";
3
- export declare class XRDevice {
4
- matrix: Matrix;
5
- position: Vector3;
6
- linearVelocity: Vector3;
7
- quaternion: Quaternion;
8
- phase: EnumXRDevicePhase;
9
- }
@@ -1,10 +0,0 @@
1
- import { XRDevice } from "./XRDevice";
2
- import { EnumXRButton } from "../enum/EnumXRButton";
3
- import { DisorderedArray } from "../../DisorderedArray";
4
- export declare class XRHandle extends XRDevice {
5
- pressedButtons: EnumXRButton;
6
- upMap: number[];
7
- downMap: number[];
8
- upList: DisorderedArray<EnumXRButton>;
9
- downList: DisorderedArray<EnumXRButton>;
10
- }
@@ -1,5 +0,0 @@
1
- export declare enum EnumXRButton {
2
- None = 0,
3
- Select = 1,
4
- Squeeze = 2
5
- }
@@ -1,4 +0,0 @@
1
- export declare enum EnumXRDevicePhase {
2
- active = 0,
3
- leave = 1
4
- }
@@ -1,9 +0,0 @@
1
- /**
2
- *
3
- */
4
- export declare enum EnumXRFeature {
5
- input = 0,
6
- camera = 1,
7
- imageTracking = 2,
8
- objectTracking = 3
9
- }
@@ -1,8 +0,0 @@
1
- export declare enum EnumXRInputSource {
2
- Handler = 0,
3
- LeftHandle = 1,
4
- RightHandle = 2,
5
- Eye = 3,
6
- LeftEye = 4,
7
- RightEye = 5
8
- }
@@ -1,7 +0,0 @@
1
- /**
2
- * Modes for XR
3
- */
4
- export declare enum EnumXRMode {
5
- AR = 0,
6
- VR = 1
7
- }
@@ -1,4 +0,0 @@
1
- export declare enum EnumXRSubsystem {
2
- input = 0,
3
- imageTracking = 1
4
- }
@@ -1,7 +0,0 @@
1
- export declare enum EnumXRTrackingMode {
2
- None = 0,
3
- RotationOnly = 1,
4
- PositionOnly = 2,
5
- RotationAndPosition = 3,
6
- Auto = 4
7
- }
@@ -1,21 +0,0 @@
1
- import { Camera } from "../../Camera";
2
- import { EnumXRInputSource } from "../enum/EnumXRInputSource";
3
- import { XRFeature } from "./XRFeature";
4
- export declare class XRCameraManager extends XRFeature {
5
- private _cameras;
6
- private _automaticNear;
7
- private _customNear;
8
- private _automaticFar;
9
- private _customFar;
10
- get near(): number;
11
- set near(value: number);
12
- get far(): number;
13
- set far(value: number);
14
- attachCamera(source: EnumXRInputSource, camera: Camera): void;
15
- detachCamera(source: EnumXRInputSource): void;
16
- getCamera(source: EnumXRInputSource): Camera;
17
- onUpdate(): void;
18
- onEnable(): void;
19
- onDisable(): void;
20
- onDestroy(): void;
21
- }
@@ -1,10 +0,0 @@
1
- import { Entity } from "../../Entity";
2
- import { XRFeature } from "./XRFeature";
3
- export declare class XRImageTrackManager extends XRFeature {
4
- addImage(): void;
5
- removeImage(): void;
6
- getTrackedObject(): Entity;
7
- onEnable(): void;
8
- onDisable(): void;
9
- onDestroy(): void;
10
- }
@@ -1,16 +0,0 @@
1
- import { Engine } from "../../Engine";
2
- import { XRDevice } from "../data/XRDevice";
3
- import { EnumXRButton } from "../enum/EnumXRButton";
4
- import { EnumXRInputSource } from "../enum/EnumXRInputSource";
5
- import { XRFeature } from "./XRFeature";
6
- export declare class XRInputManager extends XRFeature {
7
- private _subSystem;
8
- getDevice<T extends XRDevice>(source: EnumXRInputSource): T;
9
- isButtonDown(handedness: EnumXRInputSource, button: EnumXRButton): boolean;
10
- isButtonUp(handedness: EnumXRInputSource, button: EnumXRButton): boolean;
11
- isButtonHeldDown(handedness: EnumXRInputSource, button: EnumXRButton): boolean;
12
- onEnable(): void;
13
- onDisable(): void;
14
- onDestroy(): void;
15
- constructor(engine: Engine);
16
- }
@@ -1,19 +0,0 @@
1
- import { EnumXRMode } from "../enum/EnumXRMode";
2
- import { EnumXRTrackingMode } from "../enum/EnumXRTrackingMode";
3
- import { XRSubsystem } from "../subsystem/XRSubsystem";
4
- import { Engine } from "../../Engine";
5
- import { EnumXRSubsystem } from "../enum/EnumXRSubsystem";
6
- export declare class XRProvider {
7
- name: string;
8
- protected _engine: Engine;
9
- isSupportedMode(mode: EnumXRMode): Promise<void>;
10
- isSupportedTrackingMode(mode: EnumXRTrackingMode): Promise<void>;
11
- isSupportedSubsystem(feature: number): Promise<void>;
12
- createSubsystem<T extends XRSubsystem>(feature: number): Promise<T>;
13
- initialize(mode: EnumXRMode, trackingMode: EnumXRTrackingMode, subsystems: EnumXRSubsystem[]): Promise<XRSubsystem[]>;
14
- start(): Promise<void>;
15
- onUpdate(): void;
16
- onLateUpdate(): void;
17
- onDestroy(): void;
18
- constructor(engine: Engine);
19
- }
@@ -1,5 +0,0 @@
1
- import { XRDevice } from "../data/XRDevice";
2
- import { XRSubsystem } from "./XRSubsystem";
3
- export declare abstract class XRInputSubsystem extends XRSubsystem {
4
- devices: XRDevice[];
5
- }
@@ -1,30 +0,0 @@
1
- import { Engine } from "../../Engine";
2
- export declare abstract class XRSubsystem {
3
- running: boolean;
4
- _engine: Engine;
5
- /**
6
- * Starts an instance of a system.
7
- * This method needs to be override.
8
- * @returns
9
- */
10
- start(): Promise<void>;
11
- /**
12
- * Stops an instance of a system.
13
- * This method needs to be override.
14
- * @returns
15
- */
16
- stop(): Promise<void>;
17
- /**
18
- * Destroys this instance of a system.
19
- * This method needs to be override.
20
- * @returns
21
- */
22
- destroy(): Promise<void>;
23
- /**
24
- * Update this instance of a system.
25
- * This method needs to be override.
26
- * @returns
27
- */
28
- update(): void;
29
- constructor(engine: Engine);
30
- }