arcade
arcade copied to clipboard
Easy to use Python library for creating 2D arcade games.
## Documentation Bug Report ### Actual behavior: Highlights do not cover the entirety of wide lines:  ### Expected behavior: Highlights extend the full width of the code box ###...
Experiment supporting GPU collision checking in the Spritelist. This has nothing to do with the spatial hash. Ignore the branch name. * The idea is to write the original untransformed...
Currently there is only two examples for using controllers in Arcade. The `dual_stock_shooter` and `sprite_move_controller` examples. Outside of these examples we don't really have a section covering using either the...
## Documentation request: ### What documentation needs to be added? A list of kludges to ensure performance during actual gameplay. This is distinct from actual optimizations as these will be...
Some tools for troubleshooting atlas issues. * Additional prints when atlas is resized or rebuilt * TextureAtlas.validate method checking pixel data
fixed an error when testing step11 "AttributeError: module 'arcade.tilemap' has no attribute 'process_layer'" when you run the step 11 the following line 230 caused an error when trying to run...
Modern GUI toolkits such as Qt have an application that allows users to develop a user interface without code, such as Qt Creator. It helps users quickly create a user...
### Changes TL;DR: Enable `arcade.Camera2D` and `from arcade import Camera2D` * Import `Camera2D` + supporting classes to `arcade/__init__.py` * Add `Camera2D` + supporting classes to `arcade.__all__` ### Why 1. Good...
Fixes #1342
A simple subclass for advanced users who are using the new cameras outside the standard 2D plane. Depends on PR #2047