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: 5 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 (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-07-24T14:42:19.000Z (about 1 year ago)
- Last Synced: 2025-07-24T19:28:25.243Z (about 1 year ago)
- Language: Python
- Homepage: https://github.com/ZetaMap/player-follow
- Size: 188 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)
* [trail follow](https://github.com/xorblo-doitus/queue_leu_leu/tree/main/src/queue_leu_leu/trail)
* [polygon follow](https://github.com/xorblo-doitus/queue_leu_leu/tree/main/src/queue_leu_leu/polygon) (this one is a shape editor)
### 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)