Skip to content

Commit

Permalink
made goop work for all minor 1.20 versions
Browse files Browse the repository at this point in the history
  • Loading branch information
absolutelyaya committed Feb 18, 2024
1 parent 3e64abc commit de0a737
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
# Goop
Originally released as part of [ULTRACRAFT](https://github.com/absolutelyaya/ultracraft), Goop is now a standalone Library. It can be used to easily implement Slime and Splatter Visual Effects. There have been some major improvements since its debut in ULTRACRAFT as well.

## Planned Future Features
I don't know when I'll work on these, but they're things I definitely want to do eventually:
- [ ] Datapack support
- Add effects using Datapacks instead of having to make extension mods
- [ ] Client Side only Support
- make effects work without servers needing the mod as well
- add way to add effects client side; best case using in-game customization gui
- [ ] Forge Port
- It'd be cool to figure out how to support *all* mod loaders regardless

# That's cool but how do I use it
## Importing the dependency
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ dependencies {
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"

//Cloth Config
modApi(include "me.shedaniel.cloth:cloth-config-fabric:11.0.99")
modApi("me.shedaniel.cloth:cloth-config-fabric:11.0.99")

//ModMenu
modApi "com.terraformersmc:modmenu:7.1.0"
Expand Down
3 changes: 2 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
- Improved Surface Detection (Goop now sticks to non-full block surfaces like slabs)
- goop is no longer offset weirdly in negative coordinates
- Added Random Rotation Setting
- Added Keybind for clearing all Goop
- Added Keybind for clearing all Goop
- Goop now works on all minor 1.20 versions
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ org.gradle.jvmargs=-Xmx1G
# check these on https://modmuss50.me/fabric.html
minecraft_version=1.20.1
yarn_mappings=1.20.1+build.10
loader_version=0.14.21
loader_version=0.15.6

# Mod Properties
mod_version = 1.20.1-0.3
mod_version = 1.20.x-0.3
maven_group = absolutelyaya
archives_base_name = goop

Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"depends": {
"fabricloader": ">=${loader_version}",
"fabric": "*",
"minecraft": "${minecraft_version}"
"minecraft": "1.20.x"
},
"custom": {
"modmenu": {
Expand Down

0 comments on commit de0a737

Please sign in to comment.