Basic port to fabric - no configs yet

This commit is contained in:
tterrag
2018-12-11 10:54:26 -05:00
parent 41d4823245
commit a75f9f8570
14 changed files with 228 additions and 270 deletions

View File

@@ -0,0 +1,13 @@
{
"required": true,
"package": "com.tterrag.blur.mixin",
"compatibilityLevel": "JAVA_8",
"mixins": [
"MixinGui",
"MixinMinecraftClient",
"MixinWorldRenderer"
],
"injectors": {
"defaultRequire": 1
}
}

View File

@@ -0,0 +1,10 @@
{
"id": "blur",
"name": "Blur",
"version": "1.0.0",
"side": "client",
"initializer": "com.tterrag.blur.Blur",
"mixins": {
"client": "blur.client.json"
}
}

View File

@@ -1,16 +0,0 @@
[
{
"modid": "blur",
"name": "Blur",
"description": "Adds a blurry background when viewing GUIs",
"version": "${version}",
"mcversion": "${mcversion}",
"url": "http://tterrag.com",
"updateUrl": "http://ci.tterrag.com/job/BlurBG",
"authorList": ["tterrag"],
"credits": "",
"logoFile": "",
"screenshots": [],
"dependencies": []
}
]