Compatibility
Minecraft: Java Edition
b1.7.3
Platforms
Fabric
Supported environments
75% of ad revenue goes to creators
Support creators and Modrinth ad-free with Modrinth+Creators
Details
Licensed MIT
Published 2 months ago
Updated last month
This is a library mod that makes it insanely easy to add and use custom packets.
Not as flexible and extensible as StationAPI's system, but it works well for those who don't want to make StationAPI a hard dependency. Compatible with StationAPI.
Features:
- Server and client know if each other has the mod, while still being able to connect to vanilla servers and clients.
- Automatic packet short-circuiting for clients in singleplayer, or servers sending packets to itself, allowing for less side checks.
How to use (modders)
Assumes you already know a little on how packets work.
- Implement the
GlassPacketListener
class and implement the method. There's aregisterGlassPacket
convenience method. - Add an entrypoint for
glassnetworking
, and point it to your new class.- The applicator field is where you should insert a lambda or method reference to handle what should happen when your packet is received.
- Send packets from wherever you need in code, and watch as things just work(tm).