https://github.com/meteordevelopment/juno
Juno is a Java rendering api.
https://github.com/meteordevelopment/juno
Last synced: 9 months ago
JSON representation
Juno is a Java rendering api.
- Host: GitHub
- URL: https://github.com/meteordevelopment/juno
- Owner: MeteorDevelopment
- License: mit
- Created: 2023-01-28T12:17:22.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2025-01-11T10:56:39.000Z (about 1 year ago)
- Last Synced: 2025-04-23T21:07:58.574Z (9 months ago)
- Language: Java
- Size: 333 KB
- Stars: 9
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Juno
Juno is a Java rendering api.
The Juno project is split into multiple separate packages.
## Maven
All the packages listed below are available on the Meteor maven.
Link: https://maven.meteordev.org/releases
## Packages
### Juno API
`org.meteordev:juno-api:1.1.0`
The core Juno API.
Look at the [example](https://github.com/MeteorDevelopment/juno/tree/master/example) for standalone usage of the API.
### Juno OpenGL
`org.meteordev:juno-opengl:1.1.0`
Implements `juno-api:1.1.0`
A standalone OpenGL implementation of the core Juno API.
### Juno Utils
`org.meteordev:juno-utils:1.1.0`
Depends on `juno-api:1.1.0`
Helper classes built on top of the core Juno API.
### Juno MC
`org.meteordev:juno-mc:1.1.0`
Includes `juno-api:1.1.0` and `juno-utils:1.1.0`
A Minecraft Fabric mod that implements the core Juno API on top of Minecraft. Also includes a few Minecraft helpers.
To use Juno in a Minecraft mod simply Jar-in-Jar this package.
There is an [example](https://github.com/MeteorDevelopment/juno/tree/master/juno-mc/example) specifically for this package.