excalibur 0.33.0-alpha.21 → 0.33.0-alpha.23
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/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,8 +1,8 @@
|
|
|
1
|
-
import type { GraphicOptions } from './
|
|
2
|
-
import { Graphic } from './
|
|
3
|
-
import type { ExcaliburGraphicsContext } from './
|
|
4
|
-
import type { GetSpriteOptions, SpriteSheet } from './
|
|
5
|
-
import { EventEmitter } from '../
|
|
1
|
+
import type { GraphicOptions } from './graphic';
|
|
2
|
+
import { Graphic } from './graphic';
|
|
3
|
+
import type { ExcaliburGraphicsContext } from './context/excalibur-graphics-context';
|
|
4
|
+
import type { GetSpriteOptions, SpriteSheet } from './sprite-sheet';
|
|
5
|
+
import { EventEmitter } from '../event-emitter';
|
|
6
6
|
export interface HasTick {
|
|
7
7
|
/**
|
|
8
8
|
*
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import type { GraphicOptions } from './
|
|
2
|
-
import type { RasterOptions } from './
|
|
3
|
-
import { Raster } from './
|
|
1
|
+
import type { GraphicOptions } from './graphic';
|
|
2
|
+
import type { RasterOptions } from './raster';
|
|
3
|
+
import { Raster } from './raster';
|
|
4
4
|
export interface CanvasOptions {
|
|
5
5
|
draw?: (ctx: CanvasRenderingContext2D) => void;
|
|
6
6
|
cache?: boolean;
|
package/build/dist/{Graphics/Context → graphics/context}/circle-renderer/circle-renderer.d.ts
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { Color } from '../../../
|
|
2
|
-
import type { Vector } from '../../../
|
|
3
|
-
import type { ExcaliburGraphicsContextWebGL } from '../
|
|
1
|
+
import { Color } from '../../../color';
|
|
2
|
+
import type { Vector } from '../../../math/vector';
|
|
3
|
+
import type { ExcaliburGraphicsContextWebGL } from '../excalibur-graphics-context-webgl';
|
|
4
4
|
import type { RendererPlugin } from '../renderer';
|
|
5
5
|
export declare class CircleRenderer implements RendererPlugin {
|
|
6
6
|
readonly type = "ex.circle";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { Color } from '../../../
|
|
2
|
-
import type { Vector } from '../../../
|
|
3
|
-
import type { ExcaliburGraphicsContextWebGL } from '../
|
|
1
|
+
import { Color } from '../../../color';
|
|
2
|
+
import type { Vector } from '../../../math/vector';
|
|
3
|
+
import type { ExcaliburGraphicsContextWebGL } from '../excalibur-graphics-context-webgl';
|
|
4
4
|
import type { RendererPlugin } from '../renderer';
|
|
5
5
|
export declare class DebugCircleRenderer implements RendererPlugin {
|
|
6
6
|
readonly type = "ex.debug-circle";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import type { Vector } from '../../../
|
|
2
|
-
import type { Color } from '../../../
|
|
3
|
-
import type { ExcaliburGraphicsContextWebGL } from '../
|
|
1
|
+
import type { Vector } from '../../../math/vector';
|
|
2
|
+
import type { Color } from '../../../color';
|
|
3
|
+
import type { ExcaliburGraphicsContextWebGL } from '../excalibur-graphics-context-webgl';
|
|
4
4
|
import type { RendererPlugin } from '../renderer';
|
|
5
5
|
export declare class DebugLineRenderer implements RendererPlugin {
|
|
6
6
|
readonly type = "ex.debug-line";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import type { Vector } from '../../../
|
|
2
|
-
import type { Color } from '../../../
|
|
3
|
-
import type { ExcaliburGraphicsContextWebGL } from '../
|
|
1
|
+
import type { Vector } from '../../../math/vector';
|
|
2
|
+
import type { Color } from '../../../color';
|
|
3
|
+
import type { ExcaliburGraphicsContextWebGL } from '../excalibur-graphics-context-webgl';
|
|
4
4
|
import type { RendererPlugin } from '../renderer';
|
|
5
5
|
export declare class DebugPointRenderer implements RendererPlugin {
|
|
6
6
|
readonly type = "ex.debug-point";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import type { ExcaliburGraphicsContext } from '../
|
|
2
|
-
import type { Vector } from '../../
|
|
3
|
-
import { Color } from '../../
|
|
1
|
+
import type { ExcaliburGraphicsContext } from '../context/excalibur-graphics-context';
|
|
2
|
+
import type { Vector } from '../../math/vector';
|
|
3
|
+
import { Color } from '../../color';
|
|
4
4
|
/**
|
|
5
5
|
* Internal debug text helper
|
|
6
6
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { AffineMatrix } from '../../
|
|
2
|
-
import type { ExcaliburGraphicsContextState } from './
|
|
1
|
+
import { AffineMatrix } from '../../math/affine-matrix';
|
|
2
|
+
import type { ExcaliburGraphicsContextState } from './excalibur-graphics-context';
|
|
3
3
|
export declare class DrawCall {
|
|
4
4
|
z: number;
|
|
5
5
|
priority: number;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import type { ExcaliburGraphicsContext, LineGraphicsOptions, PointGraphicsOptions, ExcaliburGraphicsContextOptions, DebugDraw, HTMLImageSource } from './
|
|
2
|
-
import type { Vector } from '../../
|
|
3
|
-
import { Color } from '../../
|
|
4
|
-
import type { Resolution } from '../../
|
|
5
|
-
import type { PostProcessor } from '../
|
|
6
|
-
import { AffineMatrix } from '../../
|
|
1
|
+
import type { ExcaliburGraphicsContext, LineGraphicsOptions, PointGraphicsOptions, ExcaliburGraphicsContextOptions, DebugDraw, HTMLImageSource } from './excalibur-graphics-context';
|
|
2
|
+
import type { Vector } from '../../math/vector';
|
|
3
|
+
import { Color } from '../../color';
|
|
4
|
+
import type { Resolution } from '../../screen';
|
|
5
|
+
import type { PostProcessor } from '../post-processor/post-processor';
|
|
6
|
+
import { AffineMatrix } from '../../math/affine-matrix';
|
|
7
7
|
import type { Material, MaterialOptions } from './material';
|
|
8
8
|
declare class ExcaliburGraphicsContext2DCanvasDebug implements DebugDraw {
|
|
9
9
|
private _ex;
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
import type { ExcaliburGraphicsContext, LineGraphicsOptions, RectGraphicsOptions, PointGraphicsOptions, ExcaliburGraphicsContextOptions, DebugDraw, HTMLImageSource } from './
|
|
2
|
-
import { Matrix } from '../../
|
|
1
|
+
import type { ExcaliburGraphicsContext, LineGraphicsOptions, RectGraphicsOptions, PointGraphicsOptions, ExcaliburGraphicsContextOptions, DebugDraw, HTMLImageSource } from './excalibur-graphics-context';
|
|
2
|
+
import { Matrix } from '../../math/matrix';
|
|
3
3
|
import { TransformStack } from './transform-stack';
|
|
4
|
-
import type { Vector } from '../../
|
|
5
|
-
import { Color } from '../../
|
|
4
|
+
import type { Vector } from '../../math/vector';
|
|
5
|
+
import { Color } from '../../color';
|
|
6
6
|
import { StateStack } from './state-stack';
|
|
7
|
-
import type { Resolution } from '../../
|
|
8
|
-
import type { PostProcessor } from '../
|
|
7
|
+
import type { Resolution } from '../../screen';
|
|
8
|
+
import type { PostProcessor } from '../post-processor/post-processor';
|
|
9
9
|
import { TextureLoader } from './texture-loader';
|
|
10
10
|
import type { RendererPlugin } from './renderer';
|
|
11
|
-
import type { AffineMatrix } from '../../
|
|
11
|
+
import type { AffineMatrix } from '../../math/affine-matrix';
|
|
12
12
|
import type { MaterialOptions } from './material';
|
|
13
13
|
import { Material } from './material';
|
|
14
14
|
import type { ShaderOptions } from './shader';
|
|
15
15
|
import { Shader } from './shader';
|
|
16
|
-
import type { GarbageCollector } from '../../
|
|
16
|
+
import type { GarbageCollector } from '../../garbage-collector';
|
|
17
17
|
export declare const pixelSnapEpsilon = 0.0001;
|
|
18
18
|
declare class ExcaliburGraphicsContextWebGLDebug implements DebugDraw {
|
|
19
19
|
private _webglCtx;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import type { Vector } from '../../
|
|
2
|
-
import type { Color } from '../../
|
|
3
|
-
import type { Resolution } from '../../
|
|
4
|
-
import type { PostProcessor } from '../
|
|
5
|
-
import type { AffineMatrix } from '../../
|
|
1
|
+
import type { Vector } from '../../math/vector';
|
|
2
|
+
import type { Color } from '../../color';
|
|
3
|
+
import type { Resolution } from '../../screen';
|
|
4
|
+
import type { PostProcessor } from '../post-processor/post-processor';
|
|
5
|
+
import type { AffineMatrix } from '../../math/affine-matrix';
|
|
6
6
|
import type { Material, MaterialOptions } from './material';
|
|
7
|
-
import { ImageFiltering } from '../
|
|
7
|
+
import { ImageFiltering } from '../filtering';
|
|
8
8
|
export type HTMLImageSource = HTMLImageElement | HTMLCanvasElement;
|
|
9
9
|
export interface AntialiasOptions {
|
|
10
10
|
/**
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import type { HTMLImageSource } from '../
|
|
2
|
-
import type { ExcaliburGraphicsContextWebGL } from '../
|
|
1
|
+
import type { HTMLImageSource } from '../excalibur-graphics-context';
|
|
2
|
+
import type { ExcaliburGraphicsContextWebGL } from '../excalibur-graphics-context-webgl';
|
|
3
3
|
import type { RendererPlugin } from '../renderer';
|
|
4
4
|
export interface ImageRendererOptions {
|
|
5
5
|
pixelArtSampler: boolean;
|
package/build/dist/{Graphics/Context → graphics/context}/image-renderer-v2/image-renderer-v2.d.ts
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import type { HTMLImageSource } from '../
|
|
2
|
-
import type { ExcaliburGraphicsContextWebGL } from '../
|
|
1
|
+
import type { HTMLImageSource } from '../excalibur-graphics-context';
|
|
2
|
+
import type { ExcaliburGraphicsContextWebGL } from '../excalibur-graphics-context-webgl';
|
|
3
3
|
import type { RendererPlugin } from '../renderer';
|
|
4
4
|
export interface ImageRendererOptions {
|
|
5
5
|
pixelArtSampler: boolean;
|
package/build/dist/{Graphics/Context → graphics/context}/material-renderer/material-renderer.d.ts
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import type { HTMLImageSource } from '../
|
|
2
|
-
import type { ExcaliburGraphicsContextWebGL } from '../
|
|
1
|
+
import type { HTMLImageSource } from '../excalibur-graphics-context';
|
|
2
|
+
import type { ExcaliburGraphicsContextWebGL } from '../excalibur-graphics-context-webgl';
|
|
3
3
|
import type { RendererPlugin } from '../renderer';
|
|
4
4
|
export declare class MaterialRenderer implements RendererPlugin {
|
|
5
5
|
readonly type: string;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { Color } from '../../
|
|
2
|
-
import type { ExcaliburGraphicsContext } from './
|
|
1
|
+
import { Color } from '../../color';
|
|
2
|
+
import type { ExcaliburGraphicsContext } from './excalibur-graphics-context';
|
|
3
3
|
import type { Shader, UniformDictionary } from './shader';
|
|
4
|
-
import type { ImageSource } from '../
|
|
5
|
-
import type { ImageFiltering } from '../
|
|
4
|
+
import type { ImageSource } from '../image-source';
|
|
5
|
+
import type { ImageFiltering } from '../filtering';
|
|
6
6
|
export interface MaterialOptions {
|
|
7
7
|
/**
|
|
8
8
|
* Name the material for debugging
|
package/build/dist/{Graphics/Context → graphics/context}/particle-renderer/particle-renderer.d.ts
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import type { ExcaliburGraphicsContextWebGL } from '../
|
|
1
|
+
import type { ExcaliburGraphicsContextWebGL } from '../excalibur-graphics-context-webgl';
|
|
2
2
|
import type { RendererPlugin } from '../renderer';
|
|
3
|
-
import type { GpuParticleRenderer } from '../../../
|
|
3
|
+
import type { GpuParticleRenderer } from '../../../particles/gpu-particle-renderer';
|
|
4
4
|
export declare class ParticleRenderer implements RendererPlugin {
|
|
5
5
|
readonly type: "ex.particle";
|
|
6
6
|
priority: number;
|
package/build/dist/{Graphics/Context → graphics/context}/rectangle-renderer/rectangle-renderer.d.ts
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { Color } from '../../../
|
|
2
|
-
import { Vector } from '../../../
|
|
3
|
-
import type { ExcaliburGraphicsContextWebGL } from '../
|
|
1
|
+
import { Color } from '../../../color';
|
|
2
|
+
import { Vector } from '../../../math/vector';
|
|
3
|
+
import type { ExcaliburGraphicsContextWebGL } from '../excalibur-graphics-context-webgl';
|
|
4
4
|
import type { RendererPlugin } from '../renderer';
|
|
5
5
|
export declare class RectangleRenderer implements RendererPlugin {
|
|
6
6
|
readonly type = "ex.rectangle";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { ExcaliburGraphicsContextWebGL } from './
|
|
1
|
+
import type { ExcaliburGraphicsContextWebGL } from './excalibur-graphics-context-webgl';
|
|
2
2
|
/**
|
|
3
3
|
* Interface that defines an Excalibur Renderer that can be called with .draw() in the {@apilink ExcaliburGraphicsContext}
|
|
4
4
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import type { PostProcessor } from '../../
|
|
2
|
-
import type { ExcaliburGraphicsContextWebGL } from '../
|
|
1
|
+
import type { PostProcessor } from '../../post-processor/post-processor';
|
|
2
|
+
import type { ExcaliburGraphicsContextWebGL } from '../excalibur-graphics-context-webgl';
|
|
3
3
|
/**
|
|
4
4
|
* This is responsible for painting the entire screen during the render passes
|
|
5
5
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { ExcaliburGraphicsContext, ImageSource } from '../..';
|
|
2
2
|
import { AffineMatrix, Color, Vector } from '../..';
|
|
3
|
-
import type { Matrix } from '../../
|
|
3
|
+
import type { Matrix } from '../../math/matrix';
|
|
4
4
|
export type UniformDictionary = Record<string, number | boolean | Vector | Color | AffineMatrix | Float32Array | [uniformData: Float32Array, bindingPoint: number]>;
|
|
5
5
|
export type UniformTypeNames = 'uniform1f' | 'uniform1i' | 'uniform1ui' | 'uniform2f' | 'uniform2i' | 'uniform2ui' | 'uniform3f' | 'uniform3i' | 'uniform3ui' | 'uniform4f' | 'uniform4i' | 'uniform4ui' | 'uniform1fv' | 'uniform1iv' | 'uniform1uiv' | 'uniform2fv' | 'uniform2iv' | 'uniform2uiv' | 'uniform3fv' | 'uniform3iv' | 'uniform3uiv' | 'uniform4fv' | 'uniform4iv' | 'uniform4uiv' | 'uniformMatrix2fv' | 'uniformMatrix2x3fv' | 'uniformMatrix2x4fv' | 'uniformMatrix3fv' | 'uniformMatrix3x2fv' | 'uniformMatrix3x4fv' | 'uniformMatrix4fv' | 'uniformMatrix4x2fv' | 'uniformMatrix4x3fv';
|
|
6
6
|
/**
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Color } from '../../
|
|
2
|
-
import type { ExcaliburGraphicsContextState } from './
|
|
1
|
+
import { Color } from '../../color';
|
|
2
|
+
import type { ExcaliburGraphicsContextState } from './excalibur-graphics-context';
|
|
3
3
|
import type { Material } from './material';
|
|
4
4
|
export declare class ContextState implements ExcaliburGraphicsContextState {
|
|
5
5
|
opacity: number;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import type { GarbageCollector } from '../../
|
|
2
|
-
import { ImageFiltering } from '../
|
|
3
|
-
import type { ImageSourceOptions, ImageWrapConfiguration } from '../
|
|
4
|
-
import type { HTMLImageSource } from './
|
|
1
|
+
import type { GarbageCollector } from '../../garbage-collector';
|
|
2
|
+
import { ImageFiltering } from '../filtering';
|
|
3
|
+
import type { ImageSourceOptions, ImageWrapConfiguration } from '../image-source';
|
|
4
|
+
import type { HTMLImageSource } from './excalibur-graphics-context';
|
|
5
5
|
/**
|
|
6
6
|
* Manages loading image sources into webgl textures, a unique id is associated with all sources
|
|
7
7
|
*/
|
package/build/dist/{Graphics/DebugGraphicsComponent.d.ts → graphics/debug-graphics-component.d.ts}
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import type { ExcaliburGraphicsContext } from './
|
|
2
|
-
import type { DebugConfig } from '../
|
|
3
|
-
import { Component } from '../
|
|
1
|
+
import type { ExcaliburGraphicsContext } from './context/excalibur-graphics-context';
|
|
2
|
+
import type { DebugConfig } from '../debug';
|
|
3
|
+
import { Component } from '../entity-component-system/component';
|
|
4
4
|
/**
|
|
5
5
|
* Provide arbitrary drawing for the purposes of debugging your game
|
|
6
6
|
*
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import type { Vector } from '../
|
|
2
|
-
import type { ExcaliburGraphicsContext, LineGraphicsOptions, PointGraphicsOptions, RectGraphicsOptions } from './
|
|
3
|
-
import { Color } from '../
|
|
4
|
-
import type { Ray } from '../
|
|
5
|
-
import type { BoundingBox } from '../
|
|
6
|
-
import type { DebugConfig } from '../
|
|
1
|
+
import type { Vector } from '../math/vector';
|
|
2
|
+
import type { ExcaliburGraphicsContext, LineGraphicsOptions, PointGraphicsOptions, RectGraphicsOptions } from './context/excalibur-graphics-context';
|
|
3
|
+
import { Color } from '../color';
|
|
4
|
+
import type { Ray } from '../math/ray';
|
|
5
|
+
import type { BoundingBox } from '../collision/bounding-box';
|
|
6
|
+
import type { DebugConfig } from '../debug';
|
|
7
7
|
export declare class Debug {
|
|
8
8
|
static _drawCalls: ((ctx: ExcaliburGraphicsContext) => void)[];
|
|
9
9
|
static _ctx: ExcaliburGraphicsContext;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import type { BoundingBox } from '../
|
|
2
|
-
import type { Color } from '../
|
|
3
|
-
import type { Font } from './
|
|
4
|
-
import { FontTextInstance } from './
|
|
1
|
+
import type { BoundingBox } from '../collision/bounding-box';
|
|
2
|
+
import type { Color } from '../color';
|
|
3
|
+
import type { Font } from './font';
|
|
4
|
+
import { FontTextInstance } from './font-text-instance';
|
|
5
5
|
export declare class FontCache {
|
|
6
6
|
static FONT_TIMEOUT: number;
|
|
7
7
|
private static _LOGGER;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import type { BoundingBox } from '../
|
|
2
|
-
import type { Color } from '../
|
|
3
|
-
import type { Vector } from '../
|
|
4
|
-
import type { ExcaliburGraphicsContext } from './
|
|
1
|
+
import type { BoundingBox } from '../collision/bounding-box';
|
|
2
|
+
import type { Color } from '../color';
|
|
3
|
+
import type { Vector } from '../math/vector';
|
|
4
|
+
import type { ExcaliburGraphicsContext } from './context/excalibur-graphics-context';
|
|
5
5
|
/**
|
|
6
6
|
* Enum representing the different font size units
|
|
7
7
|
* https://developer.mozilla.org/en-US/docs/Web/CSS/font-size
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { BoundingBox } from '../
|
|
2
|
-
import { Color } from '../
|
|
3
|
-
import type { ExcaliburGraphicsContext } from './
|
|
4
|
-
import type { Font } from './
|
|
1
|
+
import { BoundingBox } from '../collision/bounding-box';
|
|
2
|
+
import { Color } from '../color';
|
|
3
|
+
import type { ExcaliburGraphicsContext } from './context/excalibur-graphics-context';
|
|
4
|
+
import type { Font } from './font';
|
|
5
5
|
export declare class FontTextInstance {
|
|
6
6
|
readonly font: Font;
|
|
7
7
|
readonly text: string;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import type { Vector } from '../
|
|
2
|
-
import { BoundingBox } from '../
|
|
3
|
-
import { Color } from '../
|
|
4
|
-
import type { ExcaliburGraphicsContext } from './
|
|
5
|
-
import type { FontOptions, FontRenderer } from './
|
|
6
|
-
import { BaseAlign, Direction, FontStyle, FontUnit, TextAlign } from './
|
|
7
|
-
import type { GraphicOptions } from './
|
|
8
|
-
import { Graphic } from './
|
|
9
|
-
import type { RasterOptions } from './
|
|
10
|
-
import { ImageFiltering } from './
|
|
1
|
+
import type { Vector } from '../math/vector';
|
|
2
|
+
import { BoundingBox } from '../collision/index';
|
|
3
|
+
import { Color } from '../color';
|
|
4
|
+
import type { ExcaliburGraphicsContext } from './context/excalibur-graphics-context';
|
|
5
|
+
import type { FontOptions, FontRenderer } from './font-common';
|
|
6
|
+
import { BaseAlign, Direction, FontStyle, FontUnit, TextAlign } from './font-common';
|
|
7
|
+
import type { GraphicOptions } from './graphic';
|
|
8
|
+
import { Graphic } from './graphic';
|
|
9
|
+
import type { RasterOptions } from './raster';
|
|
10
|
+
import { ImageFiltering } from './filtering';
|
|
11
11
|
/**
|
|
12
12
|
* Represents a system or web font in Excalibur
|
|
13
13
|
*
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { Vector } from '../
|
|
2
|
-
import type { ExcaliburGraphicsContext } from './
|
|
3
|
-
import { BoundingBox } from '../
|
|
4
|
-
import type { Color } from '../
|
|
5
|
-
import { AffineMatrix } from '../
|
|
1
|
+
import { Vector } from '../math/vector';
|
|
2
|
+
import type { ExcaliburGraphicsContext } from './context/excalibur-graphics-context';
|
|
3
|
+
import { BoundingBox } from '../collision/bounding-box';
|
|
4
|
+
import type { Color } from '../color';
|
|
5
|
+
import { AffineMatrix } from '../math/affine-matrix';
|
|
6
6
|
export interface GraphicOptions {
|
|
7
7
|
/**
|
|
8
8
|
* The width of the graphic
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { Vector } from '../
|
|
2
|
-
import { Graphic } from './
|
|
3
|
-
import type { HasTick } from './
|
|
4
|
-
import type { ExcaliburGraphicsContext } from './
|
|
5
|
-
import { BoundingBox } from '../
|
|
6
|
-
import { Component } from '../
|
|
7
|
-
import type { Material } from './
|
|
8
|
-
import type { Color } from '../
|
|
1
|
+
import { Vector } from '../math/vector';
|
|
2
|
+
import { Graphic } from './graphic';
|
|
3
|
+
import type { HasTick } from './animation';
|
|
4
|
+
import type { ExcaliburGraphicsContext } from './context/excalibur-graphics-context';
|
|
5
|
+
import { BoundingBox } from '../collision/index';
|
|
6
|
+
import { Component } from '../entity-component-system/component';
|
|
7
|
+
import type { Material } from './context/material';
|
|
8
|
+
import type { Color } from '../color';
|
|
9
9
|
/**
|
|
10
10
|
* Type guard for checking if a Graphic HasTick (used for graphics that change over time like animations)
|
|
11
11
|
* @param graphic
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { Vector } from '../
|
|
2
|
-
import type { GraphicOptions } from './
|
|
3
|
-
import { Graphic } from './
|
|
4
|
-
import type { HasTick } from './
|
|
5
|
-
import type { ExcaliburGraphicsContext } from './
|
|
6
|
-
import { BoundingBox } from '../
|
|
1
|
+
import { Vector } from '../math/vector';
|
|
2
|
+
import type { GraphicOptions } from './graphic';
|
|
3
|
+
import { Graphic } from './graphic';
|
|
4
|
+
import type { HasTick } from './animation';
|
|
5
|
+
import type { ExcaliburGraphicsContext } from './context/excalibur-graphics-context';
|
|
6
|
+
import { BoundingBox } from '../collision/index';
|
|
7
7
|
export interface GraphicsGroupingOptions {
|
|
8
8
|
members: (GraphicsGrouping | Graphic)[];
|
|
9
9
|
/**
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import type { Scene } from '../
|
|
2
|
-
import { GraphicsComponent } from './
|
|
3
|
-
import { TransformComponent } from '../
|
|
4
|
-
import type { Query, World } from '../
|
|
5
|
-
import { System, SystemType } from '../
|
|
1
|
+
import type { Scene } from '../scene';
|
|
2
|
+
import { GraphicsComponent } from './graphics-component';
|
|
3
|
+
import { TransformComponent } from '../entity-component-system/components/transform-component';
|
|
4
|
+
import type { Query, World } from '../entity-component-system';
|
|
5
|
+
import { System, SystemType } from '../entity-component-system';
|
|
6
6
|
export declare class GraphicsSystem extends System {
|
|
7
7
|
world: World;
|
|
8
8
|
static priority: 0;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import type { SpriteOptions } from './
|
|
2
|
-
import { Sprite } from './
|
|
3
|
-
import type { Loadable } from '../
|
|
4
|
-
import { ImageFiltering } from './
|
|
5
|
-
import { ImageWrapping } from './
|
|
6
|
-
import type { GraphicOptions } from './
|
|
1
|
+
import type { SpriteOptions } from './sprite';
|
|
2
|
+
import { Sprite } from './sprite';
|
|
3
|
+
import type { Loadable } from '../interfaces/index';
|
|
4
|
+
import { ImageFiltering } from './filtering';
|
|
5
|
+
import { ImageWrapping } from './wrapping';
|
|
6
|
+
import type { GraphicOptions } from './graphic';
|
|
7
7
|
export interface ImageSourceOptions {
|
|
8
8
|
filtering?: ImageFiltering;
|
|
9
9
|
wrapping?: ImageWrapConfiguration | ImageWrapping;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
export * from './graphic';
|
|
2
|
+
export * from './sprite';
|
|
3
|
+
export * from './sprite-sheet';
|
|
4
|
+
export * from './graphics-group';
|
|
5
|
+
export * from './image-source';
|
|
6
|
+
export * from './animation';
|
|
7
|
+
export * from './line';
|
|
8
|
+
export * from './graphics-component';
|
|
9
|
+
export * from './debug-graphics-component';
|
|
10
|
+
export * from './graphics-system';
|
|
11
|
+
export * from './offscreen-system';
|
|
12
|
+
export * from './parallax-component';
|
|
13
|
+
export * from './raster';
|
|
14
|
+
export * from './circle';
|
|
15
|
+
export * from './rectangle';
|
|
16
|
+
export * from './polygon';
|
|
17
|
+
export * from './text';
|
|
18
|
+
export * from './font-common';
|
|
19
|
+
export * from './font';
|
|
20
|
+
export * from './font-cache';
|
|
21
|
+
export * from './sprite-font';
|
|
22
|
+
export * from './canvas';
|
|
23
|
+
export * from './nine-slice';
|
|
24
|
+
export * from './tiled-sprite';
|
|
25
|
+
export * from './tiled-animation';
|
|
26
|
+
export * from './context/excalibur-graphics-context';
|
|
27
|
+
export * from './context/excalibur-graphics-context-2d-canvas';
|
|
28
|
+
export * from './context/excalibur-graphics-context-webgl';
|
|
29
|
+
export * from './context/particle-renderer/particle-renderer';
|
|
30
|
+
export * from './context/debug-text';
|
|
31
|
+
export type * from './post-processor/post-processor';
|
|
32
|
+
export * from './post-processor/screen-shader';
|
|
33
|
+
export * from './post-processor/color-blindness-mode';
|
|
34
|
+
export * from './post-processor/color-blindness-post-processor';
|
|
35
|
+
export * from './context/texture-loader';
|
|
36
|
+
export * from './filtering';
|
|
37
|
+
export * from './wrapping';
|
|
38
|
+
export * from './context/shader';
|
|
39
|
+
export * from './context/vertex-buffer';
|
|
40
|
+
export * from './context/uniform-buffer';
|
|
41
|
+
export * from './context/vertex-layout';
|
|
42
|
+
export * from './context/quad-index-buffer';
|
|
43
|
+
export * from './context/material';
|
|
44
|
+
export type * from './context/renderer';
|
|
45
|
+
export * from './debug';
|
|
46
|
+
import * as webgl from './context/webgl-util';
|
|
47
|
+
export { webgl };
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { BoundingBox } from '../
|
|
2
|
-
import { Color } from '../
|
|
3
|
-
import type { Vector } from '../
|
|
4
|
-
import type { ExcaliburGraphicsContext } from './
|
|
5
|
-
import { Graphic } from './
|
|
1
|
+
import { BoundingBox } from '../collision/bounding-box';
|
|
2
|
+
import { Color } from '../color';
|
|
3
|
+
import type { Vector } from '../math/vector';
|
|
4
|
+
import type { ExcaliburGraphicsContext } from './context/excalibur-graphics-context';
|
|
5
|
+
import { Graphic } from './graphic';
|
|
6
6
|
export interface LineOptions {
|
|
7
7
|
start: Vector;
|
|
8
8
|
end: Vector;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import type { GraphicOptions } from './
|
|
2
|
-
import { Graphic } from './
|
|
3
|
-
import type { ExcaliburGraphicsContext } from './
|
|
4
|
-
import type { ImageSource } from './
|
|
5
|
-
import { Vector } from '../
|
|
1
|
+
import type { GraphicOptions } from './graphic';
|
|
2
|
+
import { Graphic } from './graphic';
|
|
3
|
+
import type { ExcaliburGraphicsContext } from './context/excalibur-graphics-context';
|
|
4
|
+
import type { ImageSource } from './image-source';
|
|
5
|
+
import { Vector } from '../math/vector';
|
|
6
6
|
/**
|
|
7
7
|
* Nine slice stretch mode
|
|
8
8
|
*/
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { GraphicsComponent } from './
|
|
2
|
-
import type { Scene } from '../
|
|
3
|
-
import { TransformComponent } from '../
|
|
4
|
-
import { System, SystemType } from '../
|
|
5
|
-
import type { Query, World } from '../
|
|
1
|
+
import { GraphicsComponent } from './graphics-component';
|
|
2
|
+
import type { Scene } from '../scene';
|
|
3
|
+
import { TransformComponent } from '../entity-component-system/components/transform-component';
|
|
4
|
+
import { System, SystemType } from '../entity-component-system//system';
|
|
5
|
+
import type { Query, World } from '../entity-component-system';
|
|
6
6
|
export declare class OffscreenSystem extends System {
|
|
7
7
|
world: World;
|
|
8
8
|
static priority: number;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Component } from '../
|
|
2
|
-
import type { Vector } from '../
|
|
1
|
+
import { Component } from '../entity-component-system/component';
|
|
2
|
+
import type { Vector } from '../math/vector';
|
|
3
3
|
export declare class ParallaxComponent extends Component {
|
|
4
4
|
parallaxFactor: Vector;
|
|
5
5
|
constructor(parallaxFactor?: Vector);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import type { Vector } from '../
|
|
2
|
-
import type { RasterOptions } from './
|
|
3
|
-
import { Raster } from './
|
|
1
|
+
import type { Vector } from '../math/vector';
|
|
2
|
+
import type { RasterOptions } from './raster';
|
|
3
|
+
import { Raster } from './raster';
|
|
4
4
|
export interface PolygonOptions {
|
|
5
5
|
points: Vector[];
|
|
6
6
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import type { PostProcessor } from './
|
|
2
|
-
import { ColorBlindnessMode } from './
|
|
3
|
-
import type { Shader } from '../
|
|
4
|
-
import type { VertexLayout } from '../
|
|
5
|
-
import type { ExcaliburGraphicsContextWebGL } from '../
|
|
1
|
+
import type { PostProcessor } from './post-processor';
|
|
2
|
+
import { ColorBlindnessMode } from './color-blindness-mode';
|
|
3
|
+
import type { Shader } from '../context/shader';
|
|
4
|
+
import type { VertexLayout } from '../context/vertex-layout';
|
|
5
|
+
import type { ExcaliburGraphicsContextWebGL } from '../context/excalibur-graphics-context-webgl';
|
|
6
6
|
export declare class ColorBlindnessPostProcessor implements PostProcessor {
|
|
7
7
|
private _colorBlindnessMode;
|
|
8
8
|
private _shader;
|