Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xorblo-doitus/queue_leu_leu
Minimal Python scripts that make objects follow each other. Used as a Mindustry plugin prototype. Authors: @ZetaMap & @xorblo-doitus
https://github.com/xorblo-doitus/queue_leu_leu
Last synced: about 2 months ago
JSON representation
Minimal Python scripts that make objects follow each other. Used as a Mindustry plugin prototype. Authors: @ZetaMap & @xorblo-doitus
- Host: GitHub
- URL: https://github.com/xorblo-doitus/queue_leu_leu
- Owner: xorblo-doitus
- License: mit
- Created: 2024-07-03T07:08:44.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-08-13T07:44:28.000Z (4 months ago)
- Last Synced: 2024-10-13T16:09:46.084Z (2 months ago)
- Language: Python
- Homepage: https://github.com/ZetaMap/player-follow
- Size: 173 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Queue leu leu
Collection of Python scripts, showing minimal examples of objects following each other.### Content
* [arc follow](https://github.com/xorblo-doitus/queue_leu_leu/tree/main/src/queue_leu_leu/arc)
* [joint follow](https://github.com/xorblo-doitus/queue_leu_leu/tree/main/src/queue_leu_leu/joint)
* [orbit follow](https://github.com/xorblo-doitus/queue_leu_leu/tree/main/src/queue_leu_leu/orbit)
* [square follow](https://github.com/xorblo-doitus/queue_leu_leu/tree/main/src/queue_leu_leu/square)
* [trail follow](https://github.com/xorblo-doitus/queue_leu_leu/tree/main/src/queue_leu_leu/trail)### Installation
Just install it with the command: ``pip install queue_leu_leu``
Or for installation with a clone of this repo: ``pip install .``If you want to build it yourself, install the module ``build`` and run the command: ``python -m build``.
### Dependencies
All the scripts use [PyGame](https://github.com/pygame/pygame) to work.
Mainly, to use the [Vector2](https://www.pygame.org/docs/ref/math.html?highlight=vector2#pygame.math.Vector2) object, but you can use any other library that includes standard Vector things.
The rest, is just to visualize the algorithms with more informations.### Contributors
[@ZetaMap](https://github.com/ZetaMap) and [@xorblo-doitus](https://github.com/xorblo-doitus)