excalibur 0.33.0-alpha.21 → 0.33.0-alpha.24
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/.git-blame-ignore-revs +2 -1
- package/build/dist/{Actions/Action/ActionSequence.d.ts → actions/action/action-sequence.d.ts} +3 -3
- package/build/dist/{Actions/Action/Blink.d.ts → actions/action/blink.d.ts} +2 -2
- package/build/dist/{Actions/Action/CallMethod.d.ts → actions/action/call-method.d.ts} +1 -1
- package/build/dist/{Actions/Action/CurveBy.d.ts → actions/action/curve-by.d.ts} +3 -3
- package/build/dist/{Actions/Action/CurveTo.d.ts → actions/action/curve-to.d.ts} +3 -3
- package/build/dist/{Actions/Action/Delay.d.ts → actions/action/delay.d.ts} +1 -1
- package/build/dist/{Actions/Action/Die.d.ts → actions/action/die.d.ts} +2 -2
- package/build/dist/{Actions/Action/EaseBy.d.ts → actions/action/ease-by.d.ts} +2 -2
- package/build/dist/{Actions/Action/EaseTo.d.ts → actions/action/ease-to.d.ts} +2 -2
- package/build/dist/{Actions/Action/Fade.d.ts → actions/action/fade.d.ts} +2 -2
- package/build/dist/{Actions/Action/Flash.d.ts → actions/action/flash.d.ts} +3 -3
- package/build/dist/{Actions/Action/Follow.d.ts → actions/action/follow.d.ts} +2 -2
- package/build/dist/{Actions/Action/Meet.d.ts → actions/action/meet.d.ts} +2 -2
- package/build/dist/{Actions/Action/MoveBy.d.ts → actions/action/move-by.d.ts} +5 -5
- package/build/dist/{Actions/Action/MoveTo.d.ts → actions/action/move-to.d.ts} +5 -5
- package/build/dist/{Actions/Action/ParallelActions.d.ts → actions/action/parallel-actions.d.ts} +2 -2
- package/build/dist/{Actions/Action/RepeatForever.d.ts → actions/action/repeat-forever.d.ts} +3 -3
- package/build/dist/{Actions/Action/Repeat.d.ts → actions/action/repeat.d.ts} +3 -3
- package/build/dist/{Actions/Action/RotateBy.d.ts → actions/action/rotate-by.d.ts} +3 -3
- package/build/dist/{Actions/Action/RotateTo.d.ts → actions/action/rotate-to.d.ts} +3 -3
- package/build/dist/{Actions/Action/ScaleBy.d.ts → actions/action/scale-by.d.ts} +3 -3
- package/build/dist/{Actions/Action/ScaleTo.d.ts → actions/action/scale-to.d.ts} +3 -3
- package/build/dist/{Actions/ActionContext.d.ts → actions/action-context.d.ts} +15 -15
- package/build/dist/{Actions/ActionQueue.d.ts → actions/action-queue.d.ts} +2 -2
- package/build/dist/{Actions/Action.d.ts → actions/action.d.ts} +1 -1
- package/build/dist/{Actions/Actionable.d.ts → actions/actionable.d.ts} +1 -1
- package/build/dist/{Actions/ActionsComponent.d.ts → actions/actions-component.d.ts} +14 -14
- package/build/dist/{Actions/ActionsSystem.d.ts → actions/actions-system.d.ts} +3 -3
- package/build/dist/actions/index.d.ts +27 -0
- package/build/dist/{Actor.d.ts → actor.d.ts} +27 -27
- package/build/dist/{Camera.d.ts → camera.d.ts} +12 -12
- package/build/dist/{Collision/BodyComponent.d.ts → collision/body-component.d.ts} +13 -13
- package/build/dist/{Collision/BoundingBox.d.ts → collision/bounding-box.d.ts} +5 -5
- package/build/dist/{Collision/ColliderComponent.d.ts → collision/collider-component.d.ts} +12 -12
- package/build/dist/{Collision/Colliders/CircleCollider.d.ts → collision/colliders/circle-collider.d.ts} +11 -11
- package/build/dist/{Collision/Colliders/ClosestLineJumpTable.d.ts → collision/colliders/closest-line-jump-table.d.ts} +4 -4
- package/build/dist/{Collision/Colliders/Collider.d.ts → collision/colliders/collider.d.ts} +15 -15
- package/build/dist/{Collision/Colliders/CollisionJumpTable.d.ts → collision/colliders/collision-jump-table.d.ts} +5 -5
- package/build/dist/{Collision/Colliders/CompositeCollider.d.ts → collision/colliders/composite-collider.d.ts} +11 -11
- package/build/dist/{Collision/Colliders/EdgeCollider.d.ts → collision/colliders/edge-collider.d.ts} +11 -11
- package/build/dist/{Collision/Colliders/PolygonCollider.d.ts → collision/colliders/polygon-collider.d.ts} +11 -11
- package/build/dist/{Collision/Colliders/SeparatingAxis.d.ts → collision/colliders/separating-axis.d.ts} +6 -6
- package/build/dist/{Collision/Colliders/Shape.d.ts → collision/colliders/shape.d.ts} +5 -5
- package/build/dist/{Collision/CollisionSystem.d.ts → collision/collision-system.d.ts} +9 -9
- package/build/dist/{Collision/Detection/CollisionContact.d.ts → collision/detection/collision-contact.d.ts} +4 -4
- package/build/dist/{Collision/Detection/CollisionProcessor.d.ts → collision/detection/collision-processor.d.ts} +10 -10
- package/build/dist/{Collision/Detection/DynamicTreeCollisionProcessor.d.ts → collision/detection/dynamic-tree-collision-processor.d.ts} +13 -13
- package/build/dist/{Collision/Detection/DynamicTree.d.ts → collision/detection/dynamic-tree.d.ts} +5 -5
- package/build/dist/{Collision/Detection/Pair.d.ts → collision/detection/pair.d.ts} +3 -3
- package/build/dist/{Collision/Detection/QuadTree.d.ts → collision/detection/quad-tree.d.ts} +2 -2
- package/build/dist/{Collision/Detection/RayCastHit.d.ts → collision/detection/ray-cast-hit.d.ts} +3 -3
- package/build/dist/{Collision/Detection/RayCastOptions.d.ts → collision/detection/ray-cast-options.d.ts} +2 -2
- package/build/dist/{Collision/Detection/SparseHashGridCollisionProcessor.d.ts → collision/detection/sparse-hash-grid-collision-processor.d.ts} +16 -16
- package/build/dist/{Collision/Detection/SparseHashGrid.d.ts → collision/detection/sparse-hash-grid.d.ts} +3 -3
- package/build/dist/{Collision/Group/CollisionGroupManager.d.ts → collision/group/collision-group-manager.d.ts} +1 -1
- package/build/dist/collision/index.d.ts +38 -0
- package/build/dist/{Collision/Integrator.d.ts → collision/integrator.d.ts} +3 -3
- package/build/dist/{Collision/Island.d.ts → collision/island.d.ts} +2 -2
- package/build/dist/{Collision/MotionSystem.d.ts → collision/motion-system.d.ts} +5 -5
- package/build/dist/{Collision/PhysicsConfig.d.ts → collision/physics-config.d.ts} +5 -5
- package/build/dist/{Collision/PhysicsWorld.d.ts → collision/physics-world.d.ts} +11 -11
- package/build/dist/{Collision/Side.d.ts → collision/side.d.ts} +1 -1
- package/build/dist/{Collision/Solver/ArcadeSolver.d.ts → collision/solver/arcade-solver.d.ts} +4 -4
- package/build/dist/{Collision/Solver/ContactConstraintPoint.d.ts → collision/solver/contact-constraint-point.d.ts} +2 -2
- package/build/dist/{Collision/Solver/RealisticSolver.d.ts → collision/solver/realistic-solver.d.ts} +5 -5
- package/build/dist/{Collision/Solver/Solver.d.ts → collision/solver/solver.d.ts} +1 -1
- package/build/dist/{Color.d.ts → color.d.ts} +1 -1
- package/build/dist/{Debug/DebugConfig.d.ts → debug/debug-config.d.ts} +5 -5
- package/build/dist/{Debug/DebugFlags.d.ts → debug/debug-flags.d.ts} +2 -2
- package/build/dist/{Debug/DebugSystem.d.ts → debug/debug-system.d.ts} +4 -4
- package/build/dist/debug/index.d.ts +3 -0
- package/build/dist/{Director/CrossFade.d.ts → director/cross-fade.d.ts} +5 -5
- package/build/dist/{Director/DefaultLoader.d.ts → director/default-loader.d.ts} +5 -5
- package/build/dist/{Director/Director.d.ts → director/director.d.ts} +7 -7
- package/build/dist/{Director/FadeInOut.d.ts → director/fade-in-out.d.ts} +5 -5
- package/build/dist/director/index.d.ts +7 -0
- package/build/dist/{Director/Loader.d.ts → director/loader.d.ts} +9 -9
- package/build/dist/{Director/Slide.d.ts → director/slide.d.ts} +5 -5
- package/build/dist/{Director/Transition.d.ts → director/transition.d.ts} +7 -7
- package/build/dist/{Engine.d.ts → engine.d.ts} +31 -31
- package/build/dist/{EntityComponentSystem/Component.d.ts → entity-component-system/component.d.ts} +1 -1
- package/build/dist/{EntityComponentSystem/Components/MotionComponent.d.ts → entity-component-system/components/motion-component.d.ts} +2 -2
- package/build/dist/{EntityComponentSystem/Components/TagsComponent.d.ts → entity-component-system/components/tags-component.d.ts} +1 -1
- package/build/dist/{EntityComponentSystem/Components/TransformComponent.d.ts → entity-component-system/components/transform-component.d.ts} +6 -6
- package/build/dist/{EntityComponentSystem/EntityManager.d.ts → entity-component-system/entity-manager.d.ts} +3 -3
- package/build/dist/{EntityComponentSystem/Entity.d.ts → entity-component-system/entity.d.ts} +12 -12
- package/build/dist/entity-component-system/index.d.ts +13 -0
- package/build/dist/{EntityComponentSystem/QueryManager.d.ts → entity-component-system/query-manager.d.ts} +5 -5
- package/build/dist/{EntityComponentSystem/Query.d.ts → entity-component-system/query.d.ts} +3 -3
- package/build/dist/{EntityComponentSystem/SystemManager.d.ts → entity-component-system/system-manager.d.ts} +4 -4
- package/build/dist/{EntityComponentSystem/System.d.ts → entity-component-system/system.d.ts} +2 -2
- package/build/dist/{EntityComponentSystem/TagQuery.d.ts → entity-component-system/tag-query.d.ts} +2 -2
- package/build/dist/{EntityComponentSystem/World.d.ts → entity-component-system/world.d.ts} +9 -9
- package/build/dist/{Events/MediaEvents.d.ts → events/media-events.d.ts} +4 -4
- package/build/dist/{Events/PointerEvents.d.ts → events/pointer-events.d.ts} +3 -3
- package/build/dist/{Events.d.ts → events.d.ts} +15 -15
- package/build/dist/excalibur.development.js +155 -155
- package/build/dist/excalibur.js +155 -155
- package/build/dist/excalibur.min.development.js +3 -3
- package/build/dist/excalibur.min.js +3 -3
- package/build/dist/{Graphics/Animation.d.ts → graphics/animation.d.ts} +5 -5
- package/build/dist/{Graphics/Canvas.d.ts → graphics/canvas.d.ts} +3 -3
- package/build/dist/{Graphics/Circle.d.ts → graphics/circle.d.ts} +2 -2
- package/build/dist/{Graphics/Context → graphics/context}/circle-renderer/circle-renderer.d.ts +3 -3
- package/build/dist/{Graphics/Context → graphics/context}/debug-circle-renderer/debug-circle-renderer.d.ts +3 -3
- package/build/dist/{Graphics/Context → graphics/context}/debug-line-renderer/debug-line-renderer.d.ts +3 -3
- package/build/dist/{Graphics/Context → graphics/context}/debug-point-renderer/debug-point-renderer.d.ts +3 -3
- package/build/dist/{Graphics/Context → graphics/context}/debug-text.d.ts +3 -3
- package/build/dist/{Graphics/Context → graphics/context}/draw-call.d.ts +2 -2
- package/build/dist/{Graphics/Context/ExcaliburGraphicsContext2DCanvas.d.ts → graphics/context/excalibur-graphics-context-2d-canvas.d.ts} +6 -6
- package/build/dist/{Graphics/Context/ExcaliburGraphicsContextWebGL.d.ts → graphics/context/excalibur-graphics-context-webgl.d.ts} +8 -8
- package/build/dist/{Graphics/Context/ExcaliburGraphicsContext.d.ts → graphics/context/excalibur-graphics-context.d.ts} +6 -6
- package/build/dist/{Graphics/Context → graphics/context}/image-renderer/image-renderer.d.ts +2 -2
- package/build/dist/{Graphics/Context → graphics/context}/image-renderer-v2/image-renderer-v2.d.ts +2 -2
- package/build/dist/{Graphics/Context → graphics/context}/material-renderer/material-renderer.d.ts +2 -2
- package/build/dist/{Graphics/Context → graphics/context}/material.d.ts +4 -4
- package/build/dist/{Graphics/Context → graphics/context}/particle-renderer/particle-renderer.d.ts +2 -2
- package/build/dist/{Graphics/Context → graphics/context}/rectangle-renderer/rectangle-renderer.d.ts +3 -3
- package/build/dist/{Graphics/Context → graphics/context}/renderer.d.ts +1 -1
- package/build/dist/{Graphics/Context → graphics/context}/screen-pass-painter/screen-pass-painter.d.ts +2 -2
- package/build/dist/{Graphics/Context → graphics/context}/shader.d.ts +1 -1
- package/build/dist/{Graphics/Context → graphics/context}/state-stack.d.ts +2 -2
- package/build/dist/{Graphics/Context → graphics/context}/texture-loader.d.ts +4 -4
- package/build/dist/{Graphics/Context → graphics/context}/transform-stack.d.ts +1 -1
- package/build/dist/{Graphics/DebugGraphicsComponent.d.ts → graphics/debug-graphics-component.d.ts} +3 -3
- package/build/dist/{Graphics/Debug.d.ts → graphics/debug.d.ts} +6 -6
- package/build/dist/{Graphics/FontCache.d.ts → graphics/font-cache.d.ts} +4 -4
- package/build/dist/{Graphics/FontCommon.d.ts → graphics/font-common.d.ts} +4 -4
- package/build/dist/{Graphics/FontTextInstance.d.ts → graphics/font-text-instance.d.ts} +4 -4
- package/build/dist/{Graphics/Font.d.ts → graphics/font.d.ts} +10 -10
- package/build/dist/{Graphics/Graphic.d.ts → graphics/graphic.d.ts} +5 -5
- package/build/dist/{Graphics/GraphicsComponent.d.ts → graphics/graphics-component.d.ts} +8 -8
- package/build/dist/{Graphics/GraphicsGroup.d.ts → graphics/graphics-group.d.ts} +6 -6
- package/build/dist/{Graphics/GraphicsSystem.d.ts → graphics/graphics-system.d.ts} +5 -5
- package/build/dist/{Graphics/ImageSource.d.ts → graphics/image-source.d.ts} +6 -6
- package/build/dist/graphics/index.d.ts +47 -0
- package/build/dist/{Graphics/Line.d.ts → graphics/line.d.ts} +5 -5
- package/build/dist/{Graphics/NineSlice.d.ts → graphics/nine-slice.d.ts} +5 -5
- package/build/dist/{Graphics/OffscreenSystem.d.ts → graphics/offscreen-system.d.ts} +5 -5
- package/build/dist/{Graphics/ParallaxComponent.d.ts → graphics/parallax-component.d.ts} +2 -2
- package/build/dist/{Graphics/Polygon.d.ts → graphics/polygon.d.ts} +3 -3
- package/build/dist/{Graphics/PostProcessor/ColorBlindnessPostProcessor.d.ts → graphics/post-processor/color-blindness-post-processor.d.ts} +5 -5
- package/build/dist/{Graphics/PostProcessor/PostProcessor.d.ts → graphics/post-processor/post-processor.d.ts} +3 -3
- package/build/dist/{Graphics/PostProcessor/ScreenShader.d.ts → graphics/post-processor/screen-shader.d.ts} +3 -3
- package/build/dist/{Graphics/Raster.d.ts → graphics/raster.d.ts} +6 -6
- package/build/dist/{Graphics/Rectangle.d.ts → graphics/rectangle.d.ts} +2 -2
- package/build/dist/{Graphics/SpriteFont.d.ts → graphics/sprite-font.d.ts} +8 -8
- package/build/dist/{Graphics/SpriteSheet.d.ts → graphics/sprite-sheet.d.ts} +7 -7
- package/build/dist/{Graphics/Sprite.d.ts → graphics/sprite.d.ts} +4 -4
- package/build/dist/{Graphics/Text.d.ts → graphics/text.d.ts} +7 -7
- package/build/dist/{Graphics/TiledAnimation.d.ts → graphics/tiled-animation.d.ts} +7 -7
- package/build/dist/{Graphics/TiledSprite.d.ts → graphics/tiled-sprite.d.ts} +7 -7
- package/build/dist/{Graphics/TransformInterpolation.d.ts → graphics/transform-interpolation.d.ts} +1 -1
- package/build/dist/index.d.ts +66 -66
- package/build/dist/{Input/Gamepad.d.ts → input/gamepad.d.ts} +3 -3
- package/build/dist/{Input/InputHost.d.ts → input/input-host.d.ts} +5 -5
- package/build/dist/{Input/InputMapper.d.ts → input/input-mapper.d.ts} +3 -3
- package/build/dist/{Input/Keyboard.d.ts → input/keyboard.d.ts} +3 -3
- package/build/dist/{Input/PointerAbstraction.d.ts → input/pointer-abstraction.d.ts} +5 -5
- package/build/dist/{Input/PointerComponent.d.ts → input/pointer-component.d.ts} +2 -2
- package/build/dist/{Input/PointerEventReceiver.d.ts → input/pointer-event-receiver.d.ts} +8 -8
- package/build/dist/{Input/PointerEvent.d.ts → input/pointer-event.d.ts} +4 -4
- package/build/dist/{Input/PointerEventsToObjectDispatcher.d.ts → input/pointer-events-to-object-dispatcher.d.ts} +3 -3
- package/build/dist/{Input/PointerSystem.d.ts → input/pointer-system.d.ts} +4 -4
- package/build/dist/{Input/WheelEvent.d.ts → input/wheel-event.d.ts} +1 -1
- package/build/dist/{Interfaces/AudioImplementation.d.ts → interfaces/audio-implementation.d.ts} +1 -1
- package/build/dist/{Interfaces/Evented.d.ts → interfaces/evented.d.ts} +1 -1
- package/build/dist/interfaces/index.d.ts +7 -0
- package/build/dist/{Interfaces/LifecycleEvents.d.ts → interfaces/lifecycle-events.d.ts} +4 -4
- package/build/dist/{Interfaces/PointerEventHandlers.d.ts → interfaces/pointer-event-handlers.d.ts} +3 -3
- package/build/dist/{Label.d.ts → label.d.ts} +7 -7
- package/build/dist/{Math → math}/global-coordinates.d.ts +1 -1
- package/build/dist/{Math → math}/index.d.ts +1 -1
- package/build/dist/{Math → math}/util.d.ts +1 -1
- package/build/dist/{Math → math}/vector.d.ts +1 -1
- package/build/dist/{Particles/GpuParticleEmitter.d.ts → particles/gpu-particle-emitter.d.ts} +10 -10
- package/build/dist/{Particles/GpuParticleRenderer.d.ts → particles/gpu-particle-renderer.d.ts} +5 -5
- package/build/dist/particles/index.d.ts +5 -0
- package/build/dist/{Particles/ParticleEmitter.d.ts → particles/particle-emitter.d.ts} +6 -6
- package/build/dist/{Particles/Particles.d.ts → particles/particles.d.ts} +11 -11
- package/build/dist/{Resources/Font.d.ts → resources/font.d.ts} +4 -4
- package/build/dist/{Resources/Gif.d.ts → resources/gif.d.ts} +5 -5
- package/build/dist/resources/index.d.ts +4 -0
- package/build/dist/{Resources/Resource.d.ts → resources/resource.d.ts} +3 -3
- package/build/dist/resources/sound/index.d.ts +4 -0
- package/build/dist/{Resources/Sound/SoundManager.d.ts → resources/sound/sound-manager.d.ts} +1 -1
- package/build/dist/{Resources/Sound/Sound.d.ts → resources/sound/sound.d.ts} +8 -8
- package/build/dist/{Resources/Sound/WebAudioInstance.d.ts → resources/sound/web-audio-instance.d.ts} +1 -1
- package/build/dist/{Scene.d.ts → scene.d.ts} +20 -20
- package/build/dist/{ScreenElement.d.ts → screen-element.d.ts} +3 -3
- package/build/dist/{Screen.d.ts → screen.d.ts} +6 -6
- package/build/dist/tile-map/index.d.ts +4 -0
- package/build/dist/{TileMap/IsometricEntityComponent.d.ts → tile-map/isometric-entity-component.d.ts} +2 -2
- package/build/dist/tile-map/isometric-entity-system.d.ts +12 -0
- package/build/dist/{TileMap/IsometricMap.d.ts → tile-map/isometric-map.d.ts} +13 -13
- package/build/dist/{TileMap/TileMap.d.ts → tile-map/tile-map.d.ts} +18 -18
- package/build/dist/{Timer.d.ts → timer.d.ts} +1 -1
- package/build/dist/{Trigger.d.ts → trigger.d.ts} +6 -6
- package/build/dist/{Util/Clock.d.ts → util/clock.d.ts} +1 -1
- package/build/dist/{Util/Coroutine.d.ts → util/coroutine.d.ts} +2 -2
- package/build/dist/{Util/DrawUtil.d.ts → util/draw-util.d.ts} +2 -2
- package/build/dist/{Util/EasingFunctions.d.ts → util/easing-functions.d.ts} +1 -1
- package/build/dist/util/index.d.ts +6 -0
- package/build/dist/{Util/Log.d.ts → util/log.d.ts} +2 -2
- package/build/dist/{Util/Util.d.ts → util/util.d.ts} +2 -2
- package/build/esm/excalibur.development.js +155 -155
- package/build/esm/excalibur.js +155 -155
- package/build/esm/excalibur.min.development.js +3 -3
- package/build/esm/excalibur.min.js +3 -3
- package/eslint.config.mjs +2 -1
- package/package.json +1 -1
- package/build/dist/Actions/index.d.ts +0 -27
- package/build/dist/Collision/Index.d.ts +0 -38
- package/build/dist/Debug/index.d.ts +0 -3
- package/build/dist/Director/index.d.ts +0 -7
- package/build/dist/EntityComponentSystem/index.d.ts +0 -13
- package/build/dist/Graphics/index.d.ts +0 -47
- package/build/dist/Interfaces/Index.d.ts +0 -7
- package/build/dist/Particles/index.d.ts +0 -5
- package/build/dist/Resources/Index.d.ts +0 -4
- package/build/dist/Resources/Sound/Index.d.ts +0 -4
- package/build/dist/TileMap/IsometricEntitySystem.d.ts +0 -12
- package/build/dist/TileMap/index.d.ts +0 -4
- package/build/dist/Util/Index.d.ts +0 -6
- /package/build/dist/{Collision/CollisionType.d.ts → collision/collision-type.d.ts} +0 -0
- /package/build/dist/{Collision/Detection/SpatialPartitionStrategy.d.ts → collision/detection/spatial-partition-strategy.d.ts} +0 -0
- /package/build/dist/{Collision/Group/CollisionGroup.d.ts → collision/group/collision-group.d.ts} +0 -0
- /package/build/dist/{Collision/Solver/ContactBias.d.ts → collision/solver/contact-bias.d.ts} +0 -0
- /package/build/dist/{Collision/SolverStrategy.d.ts → collision/solver-strategy.d.ts} +0 -0
- /package/build/dist/{Context.d.ts → context.d.ts} +0 -0
- /package/build/dist/{Deprecated.d.ts → deprecated.d.ts} +0 -0
- /package/build/dist/{EntityComponentSystem/Priority.d.ts → entity-component-system/priority.d.ts} +0 -0
- /package/build/dist/{EntityComponentSystem/Types.d.ts → entity-component-system/types.d.ts} +0 -0
- /package/build/dist/{EventEmitter.d.ts → event-emitter.d.ts} +0 -0
- /package/build/dist/{Events/ExEvent.d.ts → events/ex-event.d.ts} +0 -0
- /package/build/dist/{Flags.d.ts → flags.d.ts} +0 -0
- /package/build/dist/{GarbageCollector.d.ts → garbage-collector.d.ts} +0 -0
- /package/build/dist/{Graphics/Context → graphics/context}/quad-index-buffer.d.ts +0 -0
- /package/build/dist/{Graphics/Context → graphics/context}/render-source.d.ts +0 -0
- /package/build/dist/{Graphics/Context → graphics/context}/render-target.d.ts +0 -0
- /package/build/dist/{Graphics/Context → graphics/context}/uniform-buffer.d.ts +0 -0
- /package/build/dist/{Graphics/Context → graphics/context}/vertex-buffer.d.ts +0 -0
- /package/build/dist/{Graphics/Context → graphics/context}/vertex-layout.d.ts +0 -0
- /package/build/dist/{Graphics/Context → graphics/context}/webgl-util.d.ts +0 -0
- /package/build/dist/{Graphics/Filtering.d.ts → graphics/filtering.d.ts} +0 -0
- /package/build/dist/{Graphics/GraphicsDiagnostics.d.ts → graphics/graphics-diagnostics.d.ts} +0 -0
- /package/build/dist/{Graphics/PostProcessor/ColorBlindnessMode.d.ts → graphics/post-processor/color-blindness-mode.d.ts} +0 -0
- /package/build/dist/{Graphics/Wrapping.d.ts → graphics/wrapping.d.ts} +0 -0
- /package/build/dist/{Id.d.ts → id.d.ts} +0 -0
- /package/build/dist/{Input/CapturePointerConfig.d.ts → input/capture-pointer-config.d.ts} +0 -0
- /package/build/dist/{Input/NativePointerButton.d.ts → input/native-pointer-button.d.ts} +0 -0
- /package/build/dist/{Input/PointerButton.d.ts → input/pointer-button.d.ts} +0 -0
- /package/build/dist/{Input/PointerScope.d.ts → input/pointer-scope.d.ts} +0 -0
- /package/build/dist/{Input/PointerType.d.ts → input/pointer-type.d.ts} +0 -0
- /package/build/dist/{Input/WheelDeltaMode.d.ts → input/wheel-delta-mode.d.ts} +0 -0
- /package/build/dist/{Interfaces/Audio.d.ts → interfaces/audio.d.ts} +0 -0
- /package/build/dist/{Interfaces/Clonable.d.ts → interfaces/clonable.d.ts} +0 -0
- /package/build/dist/{Interfaces/Loadable.d.ts → interfaces/loadable.d.ts} +0 -0
- /package/build/dist/{Math → math}/affine-matrix.d.ts +0 -0
- /package/build/dist/{Math → math}/bezier-curve.d.ts +0 -0
- /package/build/dist/{Math → math}/coord-plane.d.ts +0 -0
- /package/build/dist/{Math → math}/easings.d.ts +0 -0
- /package/build/dist/{Math → math}/graph.d.ts +0 -0
- /package/build/dist/{Math → math}/lerp.d.ts +0 -0
- /package/build/dist/{Math → math}/line-segment.d.ts +0 -0
- /package/build/dist/{Math → math}/matrix.d.ts +0 -0
- /package/build/dist/{Math → math}/projection.d.ts +0 -0
- /package/build/dist/{Math/Random.d.ts → math/random.d.ts} +0 -0
- /package/build/dist/{Math → math}/ray.d.ts +0 -0
- /package/build/dist/{Math → math}/rotation-type.d.ts +0 -0
- /package/build/dist/{Math → math}/transform.d.ts +0 -0
- /package/build/dist/{Math → math}/vector-view.d.ts +0 -0
- /package/build/dist/{Math → math}/watch-vector.d.ts +0 -0
- /package/build/dist/{Particles/EmitterType.d.ts → particles/emitter-type.d.ts} +0 -0
- /package/build/dist/{Polyfill.d.ts → polyfill.d.ts} +0 -0
- /package/build/dist/{Resources/Sound/AudioContext.d.ts → resources/sound/audio-context.d.ts} +0 -0
- /package/build/dist/{Util/Assert.d.ts → util/assert.d.ts} +0 -0
- /package/build/dist/{Util/Browser.d.ts → util/browser.d.ts} +0 -0
- /package/build/dist/{Util/Decorators.d.ts → util/decorators.d.ts} +0 -0
- /package/build/dist/{Util/Detector.d.ts → util/detector.d.ts} +0 -0
- /package/build/dist/{Util/Fps.d.ts → util/fps.d.ts} +0 -0
- /package/build/dist/{Util/Future.d.ts → util/future.d.ts} +0 -0
- /package/build/dist/{Util/IFrame.d.ts → util/iframe.d.ts} +0 -0
- /package/build/dist/{Util/Observable.d.ts → util/observable.d.ts} +0 -0
- /package/build/dist/{Util/Pool.d.ts → util/pool.d.ts} +0 -0
- /package/build/dist/{Util/RentalPool.d.ts → util/rental-pool.d.ts} +0 -0
- /package/build/dist/{Util/Required.d.ts → util/required.d.ts} +0 -0
- /package/build/dist/{Util/Semaphore.d.ts → util/semaphore.d.ts} +0 -0
- /package/build/dist/{Util/Sound.d.ts → util/sound.d.ts} +0 -0
- /package/build/dist/{Util/StateMachine.d.ts → util/state-machine.d.ts} +0 -0
- /package/build/dist/{Util/Toaster.d.ts → util/toaster.d.ts} +0 -0
- /package/build/dist/{Util/Watch.d.ts → util/watch.d.ts} +0 -0
- /package/build/dist/{Util/WebAudio.d.ts → util/web-audio.d.ts} +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import type { Scene } from '../
|
|
2
|
-
import type { Query, World } from '../
|
|
3
|
-
import { TransformComponent } from '../
|
|
4
|
-
import { System, SystemType } from '../
|
|
1
|
+
import type { Scene } from '../scene';
|
|
2
|
+
import type { Query, World } from '../entity-component-system';
|
|
3
|
+
import { TransformComponent } from '../entity-component-system';
|
|
4
|
+
import { System, SystemType } from '../entity-component-system/system';
|
|
5
5
|
export declare class DebugSystem extends System {
|
|
6
6
|
world: World;
|
|
7
7
|
static priority: number;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import type { Sprite } from '../
|
|
2
|
-
import type { Engine } from '../
|
|
3
|
-
import type { Scene } from '../
|
|
4
|
-
import type { TransitionOptions } from './
|
|
5
|
-
import { Transition } from './
|
|
1
|
+
import type { Sprite } from '../graphics';
|
|
2
|
+
import type { Engine } from '../engine';
|
|
3
|
+
import type { Scene } from '../scene';
|
|
4
|
+
import type { TransitionOptions } from './transition';
|
|
5
|
+
import { Transition } from './transition';
|
|
6
6
|
export interface CrossFadeOptions {
|
|
7
7
|
duration: number;
|
|
8
8
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import type { Engine } from '../
|
|
2
|
-
import type { Loadable } from '../
|
|
3
|
-
import { Canvas } from '../
|
|
4
|
-
import type { EventKey, Handler, Subscription } from '../
|
|
5
|
-
import { EventEmitter } from '../
|
|
1
|
+
import type { Engine } from '../engine';
|
|
2
|
+
import type { Loadable } from '../interfaces/loadable';
|
|
3
|
+
import { Canvas } from '../graphics/canvas';
|
|
4
|
+
import type { EventKey, Handler, Subscription } from '../event-emitter';
|
|
5
|
+
import { EventEmitter } from '../event-emitter';
|
|
6
6
|
export interface DefaultLoaderOptions {
|
|
7
7
|
/**
|
|
8
8
|
* List of loadables
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import type { Engine } from '../
|
|
2
|
-
import type { LoaderConstructor } from './
|
|
3
|
-
import { DefaultLoader } from './
|
|
4
|
-
import type { SceneConstructor } from '../
|
|
5
|
-
import { Scene } from '../
|
|
6
|
-
import type { Transition } from './
|
|
7
|
-
import { EventEmitter } from '../
|
|
1
|
+
import type { Engine } from '../engine';
|
|
2
|
+
import type { LoaderConstructor } from './default-loader';
|
|
3
|
+
import { DefaultLoader } from './default-loader';
|
|
4
|
+
import type { SceneConstructor } from '../scene';
|
|
5
|
+
import { Scene } from '../scene';
|
|
6
|
+
import type { Transition } from './transition';
|
|
7
|
+
import { EventEmitter } from '../event-emitter';
|
|
8
8
|
export interface DirectorNavigationEvent {
|
|
9
9
|
sourceName: string;
|
|
10
10
|
sourceScene: Scene;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import type { Engine } from '../
|
|
2
|
-
import { Color } from '../
|
|
3
|
-
import { Rectangle } from '../
|
|
4
|
-
import type { TransitionOptions } from './
|
|
5
|
-
import { Transition } from './
|
|
1
|
+
import type { Engine } from '../engine';
|
|
2
|
+
import { Color } from '../color';
|
|
3
|
+
import { Rectangle } from '../graphics';
|
|
4
|
+
import type { TransitionOptions } from './transition';
|
|
5
|
+
import { Transition } from './transition';
|
|
6
6
|
export interface FadeOptions {
|
|
7
7
|
duration?: number;
|
|
8
8
|
color?: Color;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { Color } from '../
|
|
2
|
-
import type { Loadable } from '../
|
|
3
|
-
import type { Vector } from '../
|
|
4
|
-
import { EventEmitter } from '../
|
|
5
|
-
import type { DefaultLoaderOptions } from './
|
|
6
|
-
import { DefaultLoader } from './
|
|
7
|
-
import type { Engine } from '../
|
|
8
|
-
import type { Screen } from '../
|
|
9
|
-
import { Future } from '../
|
|
1
|
+
import { Color } from '../color';
|
|
2
|
+
import type { Loadable } from '../interfaces/loadable';
|
|
3
|
+
import type { Vector } from '../math/vector';
|
|
4
|
+
import { EventEmitter } from '../event-emitter';
|
|
5
|
+
import type { DefaultLoaderOptions } from './default-loader';
|
|
6
|
+
import { DefaultLoader } from './default-loader';
|
|
7
|
+
import type { Engine } from '../engine';
|
|
8
|
+
import type { Screen } from '../screen';
|
|
9
|
+
import { Future } from '../util/future';
|
|
10
10
|
export interface LoaderOptions extends DefaultLoaderOptions {
|
|
11
11
|
/**
|
|
12
12
|
* Go fullscreen after loading and clicking play
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import type { Engine } from '../
|
|
2
|
-
import type { Scene } from '../
|
|
3
|
-
import type { TransitionOptions } from './
|
|
4
|
-
import { Transition } from './
|
|
5
|
-
import { type EasingFunction } from '../
|
|
1
|
+
import type { Engine } from '../engine';
|
|
2
|
+
import type { Scene } from '../scene';
|
|
3
|
+
import type { TransitionOptions } from './transition';
|
|
4
|
+
import { Transition } from './transition';
|
|
5
|
+
import { type EasingFunction } from '../util/easing-functions';
|
|
6
6
|
export interface SlideOptions {
|
|
7
7
|
/**
|
|
8
8
|
* Duration of the transition in milliseconds
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import type { Engine } from '../
|
|
2
|
-
import type { Scene } from '../
|
|
3
|
-
import { Entity, TransformComponent } from '../
|
|
4
|
-
import { GraphicsComponent } from '../
|
|
5
|
-
import type { EasingFunction } from '../
|
|
6
|
-
import type { CoroutineInstance } from '../
|
|
7
|
-
import type { Easing } from '../
|
|
1
|
+
import type { Engine } from '../engine';
|
|
2
|
+
import type { Scene } from '../scene';
|
|
3
|
+
import { Entity, TransformComponent } from '../entity-component-system';
|
|
4
|
+
import { GraphicsComponent } from '../graphics';
|
|
5
|
+
import type { EasingFunction } from '../util/easing-functions';
|
|
6
|
+
import type { CoroutineInstance } from '../util/coroutine';
|
|
7
|
+
import type { Easing } from '../math/easings';
|
|
8
8
|
export interface TransitionOptions {
|
|
9
9
|
/**
|
|
10
10
|
* Transition duration in milliseconds
|
|
@@ -1,34 +1,34 @@
|
|
|
1
|
-
import type { EventKey, Handler, Subscription } from './
|
|
2
|
-
import { EventEmitter } from './
|
|
3
|
-
import { PointerScope } from './
|
|
4
|
-
import type { CanUpdate, CanDraw, CanInitialize } from './
|
|
5
|
-
import type { Vector } from './
|
|
6
|
-
import type { ViewportDimension } from './
|
|
7
|
-
import { Screen, DisplayMode, Resolution } from './
|
|
8
|
-
import type { ScreenElement } from './
|
|
9
|
-
import type { Actor } from './
|
|
10
|
-
import type { Timer } from './
|
|
11
|
-
import type { TileMap } from './
|
|
12
|
-
import { DefaultLoader } from './
|
|
13
|
-
import { VisibleEvent, HiddenEvent, GameStartEvent, GameStopEvent, PreUpdateEvent, PostUpdateEvent, PreFrameEvent, PostFrameEvent, PreDrawEvent, PostDrawEvent, InitializeEvent } from './
|
|
14
|
-
import { Color } from './
|
|
15
|
-
import type { SceneConstructor } from './
|
|
16
|
-
import { Scene } from './
|
|
17
|
-
import { Entity } from './
|
|
18
|
-
import type { DebugStats } from './
|
|
19
|
-
import { DebugConfig } from './
|
|
20
|
-
import { BrowserEvents } from './
|
|
21
|
-
import type { AntialiasOptions, ExcaliburGraphicsContext } from './
|
|
22
|
-
import { ExcaliburGraphicsContext2DCanvas } from './
|
|
23
|
-
import type { Clock } from './
|
|
24
|
-
import type { InputMapper } from './
|
|
25
|
-
import type { GoToOptions, SceneMap, StartOptions, SceneWithOptions, WithRoot } from './
|
|
26
|
-
import { Director, DirectorEvents } from './
|
|
27
|
-
import { InputHost } from './
|
|
28
|
-
import type { PhysicsConfig } from './
|
|
29
|
-
import type { DeepRequired } from './
|
|
30
|
-
import type { Context } from './
|
|
31
|
-
import type { GarbageCollectionOptions } from './
|
|
1
|
+
import type { EventKey, Handler, Subscription } from './event-emitter';
|
|
2
|
+
import { EventEmitter } from './event-emitter';
|
|
3
|
+
import { PointerScope } from './input/pointer-scope';
|
|
4
|
+
import type { CanUpdate, CanDraw, CanInitialize } from './interfaces/lifecycle-events';
|
|
5
|
+
import type { Vector } from './math/vector';
|
|
6
|
+
import type { ViewportDimension } from './screen';
|
|
7
|
+
import { Screen, DisplayMode, Resolution } from './screen';
|
|
8
|
+
import type { ScreenElement } from './screen-element';
|
|
9
|
+
import type { Actor } from './actor';
|
|
10
|
+
import type { Timer } from './timer';
|
|
11
|
+
import type { TileMap } from './tile-map';
|
|
12
|
+
import { DefaultLoader } from './director/default-loader';
|
|
13
|
+
import { VisibleEvent, HiddenEvent, GameStartEvent, GameStopEvent, PreUpdateEvent, PostUpdateEvent, PreFrameEvent, PostFrameEvent, PreDrawEvent, PostDrawEvent, InitializeEvent } from './events';
|
|
14
|
+
import { Color } from './color';
|
|
15
|
+
import type { SceneConstructor } from './scene';
|
|
16
|
+
import { Scene } from './scene';
|
|
17
|
+
import { Entity } from './entity-component-system/entity';
|
|
18
|
+
import type { DebugStats } from './debug/debug-config';
|
|
19
|
+
import { DebugConfig } from './debug/debug-config';
|
|
20
|
+
import { BrowserEvents } from './util/browser';
|
|
21
|
+
import type { AntialiasOptions, ExcaliburGraphicsContext } from './graphics';
|
|
22
|
+
import { ExcaliburGraphicsContext2DCanvas } from './graphics';
|
|
23
|
+
import type { Clock } from './util/clock';
|
|
24
|
+
import type { InputMapper } from './input/input-mapper';
|
|
25
|
+
import type { GoToOptions, SceneMap, StartOptions, SceneWithOptions, WithRoot } from './director/director';
|
|
26
|
+
import { Director, DirectorEvents } from './director/director';
|
|
27
|
+
import { InputHost } from './input/input-host';
|
|
28
|
+
import type { PhysicsConfig } from './collision/physics-config';
|
|
29
|
+
import type { DeepRequired } from './util/required';
|
|
30
|
+
import type { Context } from './context';
|
|
31
|
+
import type { GarbageCollectionOptions } from './garbage-collector';
|
|
32
32
|
export interface EngineEvents extends DirectorEvents {
|
|
33
33
|
fallbackgraphicscontext: ExcaliburGraphicsContext2DCanvas;
|
|
34
34
|
initialize: InitializeEvent<Engine>;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import type { Vector } from '../../
|
|
2
|
-
import { CoordPlane } from '../../
|
|
3
|
-
import { Transform } from '../../
|
|
4
|
-
import { Component } from '../
|
|
5
|
-
import type { Entity } from '../
|
|
6
|
-
import { Observable } from '../../
|
|
1
|
+
import type { Vector } from '../../math/vector';
|
|
2
|
+
import { CoordPlane } from '../../math/coord-plane';
|
|
3
|
+
import { Transform } from '../../math/transform';
|
|
4
|
+
import { Component } from '../component';
|
|
5
|
+
import type { Entity } from '../entity';
|
|
6
|
+
import { Observable } from '../../util/observable';
|
|
7
7
|
export declare class TransformComponent extends Component {
|
|
8
8
|
private _logger;
|
|
9
9
|
private _parentComponent;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { Entity } from './
|
|
2
|
-
import type { World } from './
|
|
3
|
-
import type { Scene } from '../
|
|
1
|
+
import { Entity } from './entity';
|
|
2
|
+
import type { World } from './world';
|
|
3
|
+
import type { Scene } from '../scene';
|
|
4
4
|
export declare class EntityManager {
|
|
5
5
|
private _world;
|
|
6
6
|
entities: Entity[];
|
package/build/dist/{EntityComponentSystem/Entity.d.ts → entity-component-system/entity.d.ts}
RENAMED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import type { ComponentCtor } from './
|
|
2
|
-
import { Component } from './
|
|
3
|
-
import type { Message } from '../
|
|
4
|
-
import { Observable } from '../
|
|
5
|
-
import type { OnInitialize, OnPreUpdate, OnPostUpdate, OnAdd, OnRemove } from '../
|
|
6
|
-
import type { Engine } from '../
|
|
7
|
-
import { InitializeEvent, PreUpdateEvent, PostUpdateEvent, AddEvent, RemoveEvent } from '../
|
|
8
|
-
import { KillEvent } from '../
|
|
9
|
-
import type { EventKey, Handler, Subscription } from '../
|
|
10
|
-
import { EventEmitter } from '../
|
|
11
|
-
import type { Scene } from '../
|
|
12
|
-
import type { MaybeKnownComponent } from './
|
|
1
|
+
import type { ComponentCtor } from './component';
|
|
2
|
+
import { Component } from './component';
|
|
3
|
+
import type { Message } from '../util/observable';
|
|
4
|
+
import { Observable } from '../util/observable';
|
|
5
|
+
import type { OnInitialize, OnPreUpdate, OnPostUpdate, OnAdd, OnRemove } from '../interfaces/lifecycle-events';
|
|
6
|
+
import type { Engine } from '../engine';
|
|
7
|
+
import { InitializeEvent, PreUpdateEvent, PostUpdateEvent, AddEvent, RemoveEvent } from '../events';
|
|
8
|
+
import { KillEvent } from '../events';
|
|
9
|
+
import type { EventKey, Handler, Subscription } from '../event-emitter';
|
|
10
|
+
import { EventEmitter } from '../event-emitter';
|
|
11
|
+
import type { Scene } from '../scene';
|
|
12
|
+
import type { MaybeKnownComponent } from './types';
|
|
13
13
|
/**
|
|
14
14
|
* Interface holding an entity component pair
|
|
15
15
|
*/
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export * from './component';
|
|
2
|
+
export * from './entity';
|
|
3
|
+
export * from './entity-manager';
|
|
4
|
+
export * from './query';
|
|
5
|
+
export * from './tag-query';
|
|
6
|
+
export * from './query-manager';
|
|
7
|
+
export * from './system';
|
|
8
|
+
export * from './system-manager';
|
|
9
|
+
export * from './world';
|
|
10
|
+
export type * from './types';
|
|
11
|
+
export * from './priority';
|
|
12
|
+
export * from './components/transform-component';
|
|
13
|
+
export * from './components/motion-component';
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import type { Entity } from './
|
|
2
|
-
import type { QueryParams } from './
|
|
3
|
-
import { Query } from './
|
|
4
|
-
import type { Component, ComponentCtor } from './
|
|
5
|
-
import type { World } from './
|
|
1
|
+
import type { Entity } from './entity';
|
|
2
|
+
import type { QueryParams } from './query';
|
|
3
|
+
import { Query } from './query';
|
|
4
|
+
import type { Component, ComponentCtor } from './component';
|
|
5
|
+
import type { World } from './world';
|
|
6
6
|
/**
|
|
7
7
|
* The query manager is responsible for updating all queries when entities/components change
|
|
8
8
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import type { Entity } from './
|
|
2
|
-
import { Observable } from '../
|
|
3
|
-
import type { Component, ComponentCtor } from '../
|
|
1
|
+
import type { Entity } from './entity';
|
|
2
|
+
import { Observable } from '../util/observable';
|
|
3
|
+
import type { Component, ComponentCtor } from '../entity-component-system/component';
|
|
4
4
|
export type ComponentInstance<T> = T extends ComponentCtor<infer R> ? R : never;
|
|
5
5
|
/**
|
|
6
6
|
* Turns `Entity<A | B>` into `Entity<A> | Entity<B>`
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import type { SystemType } from './
|
|
2
|
-
import { System } from './
|
|
3
|
-
import type { Scene } from '../
|
|
4
|
-
import type { World } from './
|
|
1
|
+
import type { SystemType } from './system';
|
|
2
|
+
import { System } from './system';
|
|
3
|
+
import type { Scene } from '../scene';
|
|
4
|
+
import type { World } from './world';
|
|
5
5
|
export interface SystemCtor<T extends System> {
|
|
6
6
|
new (...args: any[]): T;
|
|
7
7
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import type { Scene } from '../
|
|
2
|
-
import type { Component, ComponentCtor } from './
|
|
3
|
-
import { Entity } from './
|
|
4
|
-
import { EntityManager } from './
|
|
5
|
-
import type { Query, QueryParams } from './
|
|
6
|
-
import { QueryManager } from './
|
|
7
|
-
import { System, SystemType } from './
|
|
8
|
-
import type { SystemCtor } from './
|
|
9
|
-
import { SystemManager } from './
|
|
1
|
+
import type { Scene } from '../scene';
|
|
2
|
+
import type { Component, ComponentCtor } from './component';
|
|
3
|
+
import { Entity } from './entity';
|
|
4
|
+
import { EntityManager } from './entity-manager';
|
|
5
|
+
import type { Query, QueryParams } from './query';
|
|
6
|
+
import { QueryManager } from './query-manager';
|
|
7
|
+
import { System, SystemType } from './system';
|
|
8
|
+
import type { SystemCtor } from './system-manager';
|
|
9
|
+
import { SystemManager } from './system-manager';
|
|
10
10
|
/**
|
|
11
11
|
* The World is a self-contained entity component system for a particular context.
|
|
12
12
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import type {
|
|
3
|
-
import type {
|
|
4
|
-
import
|
|
1
|
+
import type { Sound } from '../resources/sound/sound';
|
|
2
|
+
import type { Actor } from '../actor';
|
|
3
|
+
import type { WebAudioInstance } from '../resources/sound/web-audio-instance';
|
|
4
|
+
import { GameEvent } from '../';
|
|
5
5
|
export declare class MediaEvent extends GameEvent<Sound> {
|
|
6
6
|
target: Sound;
|
|
7
7
|
protected _name: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import type { GlobalCoordinates } from '../
|
|
2
|
-
import type { WheelDeltaMode } from '../
|
|
3
|
-
import { ExEvent } from './
|
|
1
|
+
import type { GlobalCoordinates } from '../math/global-coordinates';
|
|
2
|
+
import type { WheelDeltaMode } from '../input/wheel-delta-mode';
|
|
3
|
+
import { ExEvent } from './ex-event';
|
|
4
4
|
export declare abstract class PointerEvent extends ExEvent<'down' | 'up' | 'move' | 'cancel'> {
|
|
5
5
|
pointerId: number;
|
|
6
6
|
coordinates: GlobalCoordinates;
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import type { Scene } from './
|
|
2
|
-
import type { Vector } from './
|
|
3
|
-
import type { Actor } from './
|
|
4
|
-
import type { Trigger } from './
|
|
5
|
-
import type { FrameStats } from './
|
|
6
|
-
import type { Engine } from './
|
|
7
|
-
import type { TileMap } from './
|
|
8
|
-
import type { Side } from './
|
|
9
|
-
import type { CollisionContact } from './
|
|
10
|
-
import type { Collider } from './
|
|
11
|
-
import type { Entity } from './
|
|
12
|
-
import type { OnInitialize, OnPreUpdate, OnPostUpdate, SceneActivationContext, OnAdd, OnRemove } from './
|
|
13
|
-
import type { ExcaliburGraphicsContext } from './
|
|
14
|
-
import type { Axes, Buttons, Gamepad } from './
|
|
15
|
-
import type { Action } from './
|
|
1
|
+
import type { Scene } from './scene';
|
|
2
|
+
import type { Vector } from './math/vector';
|
|
3
|
+
import type { Actor } from './actor';
|
|
4
|
+
import type { Trigger } from './trigger';
|
|
5
|
+
import type { FrameStats } from './debug';
|
|
6
|
+
import type { Engine } from './engine';
|
|
7
|
+
import type { TileMap } from './tile-map';
|
|
8
|
+
import type { Side } from './collision/side';
|
|
9
|
+
import type { CollisionContact } from './collision/detection/collision-contact';
|
|
10
|
+
import type { Collider } from './collision/colliders/collider';
|
|
11
|
+
import type { Entity } from './entity-component-system/entity';
|
|
12
|
+
import type { OnInitialize, OnPreUpdate, OnPostUpdate, SceneActivationContext, OnAdd, OnRemove } from './interfaces/lifecycle-events';
|
|
13
|
+
import type { ExcaliburGraphicsContext } from './graphics';
|
|
14
|
+
import type { Axes, Buttons, Gamepad } from './input/gamepad';
|
|
15
|
+
import type { Action } from './actions/action';
|
|
16
16
|
export declare enum EventTypes {
|
|
17
17
|
Kill = "kill",
|
|
18
18
|
PreKill = "prekill",
|