Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mworzala/mc_debug_renderer
Enables servers to render debug shapes on the client.
https://github.com/mworzala/mc_debug_renderer
fabricmc minecraft minestom-library
Last synced: about 24 hours ago
JSON representation
Enables servers to render debug shapes on the client.
- Host: GitHub
- URL: https://github.com/mworzala/mc_debug_renderer
- Owner: mworzala
- License: mit
- Created: 2021-11-01T14:57:09.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2024-08-25T00:52:25.000Z (4 months ago)
- Last Synced: 2024-12-17T21:06:53.149Z (8 days ago)
- Topics: fabricmc, minecraft, minestom-library
- Language: Java
- Homepage:
- Size: 775 KB
- Stars: 59
- Watchers: 4
- Forks: 10
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-minestom - mc_debug_render - Draw arbitrary debug shapes on the client. (Libraries)
README
# Minecraft Debug Renderer
Allows servers to render arbitrarily placed and sized debug shapes on the client.![showcase](.github/showcase.png)
# Usage
Any platform which can send plugin messages is supported. There is a server library for Minestom,
which is available on Jitpack.```groovy
repositories {
// ...
maven { url 'https://jitpack.io' }
}dependencies {
// Minestom
implementation 'com.github.mworzala.mc_debug_renderer:minestom:$LATEST_COMMIT_HASH'
}
```## Checking if enabled
The client will send a plugin message with the id `debug:hello` when joining a server if the mod is present.
The message will contain a single integer representing the current version of the mod.## Plugin Messages
The following plugin messages are supported:todo
## Credit
The following was very helpful when working on this mod:
- [WorldEditCUI](https://github.com/EngineHub/WorldEditCUI)
- [BuilderMod](https://github.com/Moulberry/BuilderMod)# License
This project is licensed under the [MIT License](./LICENSE).