Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vram-guild/frex
https://github.com/vram-guild/frex
Last synced: 14 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/vram-guild/frex
- Owner: vram-guild
- License: lgpl-3.0
- Created: 2021-09-13T14:37:40.000Z (about 3 years ago)
- Default Branch: 1.19
- Last Pushed: 2024-07-31T01:36:05.000Z (4 months ago)
- Last Synced: 2024-08-02T06:19:20.564Z (4 months ago)
- Language: Java
- Size: 1.42 MB
- Stars: 16
- Watchers: 2
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-fabric - FREX - A rendering API for Minecraft mods to create content that wouldn't normally be possible. ([Wiki](https://github.com/vram-guild/frex/wiki)) `LGPL-3.0-only` (Uncategorized / Uncategorized)
README
# FREX Rendering Extensions
FREX currently support the Fabric API and Mod Loader.Packaged as a separate mod so that rendering implementations and mods that consume these extensions can
depend on it without directly depending on specific implementation.More information on using FREX is available on the [Renderosity Wiki](https://github.com/grondag/renderosity/wiki).
# Using FREX
Add the maven repo where my libraries live to your build.gradle
```gradle
repositories {
maven {
name = "vram"
url = "https://maven.vram.io/"
}
}
```And add FREX to your dependencies
```gradle
dependencies {
modCompile "io.vram:frex-fabric-mc117:6.0.+"
include "io.vram:frex-fabric-mc117:6.0.+"
}
```The ```include``` is not necessary if you are depending on another mod that also includes FREX. Currently, [Canvas](https://github.com/vram-guild/canvas) and [JMX](https://github.com/grondag/json-model-extensions) both include FREX.
Note that version is subject to change - look at the repo to find latest.