Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wisp-forest/gadget
Debugger's Delight
https://github.com/wisp-forest/gadget
Last synced: 4 days ago
JSON representation
Debugger's Delight
- Host: GitHub
- URL: https://github.com/wisp-forest/gadget
- Owner: wisp-forest
- License: lgpl-3.0
- Created: 2022-09-02T19:53:46.000Z (over 2 years ago)
- Default Branch: 1.21
- Last Pushed: 2024-07-27T18:33:14.000Z (5 months ago)
- Last Synced: 2024-12-06T10:50:21.237Z (17 days ago)
- Language: Java
- Homepage: https://modrinth.com/mod/gadget
- Size: 1.38 MB
- Stars: 47
- Watchers: 1
- Forks: 8
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
gadget
## OverviewGadget is a collection of tools for mod developers, aimed at helping debug content mods.
**Build Setup:**
```properties
# https://maven.wispforest.io/io/wispforest/gadget
gadget_version=...
``````groovy
repositories {
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
maven { url 'https://maven.wispforest.io' }
}<...>
dependencies {
modLocalRuntime "io.wispforest:gadget:${project.gadget_version}"
// if you want to use gadget's API, uncomment this
// modCompileOnly "io.wispforest:gadget:${project.gadget_version}"
}
```
You can check the latest version on the [Releases](https://github.com/wisp-forest/gadget/releases) pageFor documentation, reference the [gadget explainer video](https://www.youtube.com/watch?v=8Ok5TIvziUQ).
## Features
- **(Block)Entity Inspector** - deep inspection and editing of entity fields in-game, reaching right into the java code, including on server-side.
- **Packet Dumper** - capture, save and review network traffic in-game
*More to come, so stay tuned!*