Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

EMF plugin update #571

Merged
merged 1 commit into from
Jul 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion plugins.json
Original file line number Diff line number Diff line change
Expand Up @@ -934,7 +934,7 @@
"icon": "icon.png",
"description": "Adds extra animation support to CEM Template Loader so that it is compatible with the Entity Model Features mod.",
"tags": ["Minecraft: Java Edition", "Entity Models", "Animation"],
"version": "1.0.1",
"version": "1.0.2",
"min_version": "4.9.0",
"variant": "both",
"dependencies": ["cem_template_loader"],
Expand Down
15 changes: 14 additions & 1 deletion plugins/emf_animation_addon/changelog.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"1.0.1": {
"title": "1.0.1",
"date": "2024-06-23",
"author": "Traben & Ewan Howell",
"author": "Traben",
"categories": [
{
"title": "Doc update",
Expand All @@ -24,5 +24,18 @@
]
}
]
},
"1.0.2": {
"title": "1.0.2",
"date": "2024-07-01",
"author": "Traben",
"categories": [
{
"title": "fixed setting",
"list": [
"Fixed the EMF enable/disable setting not appearing in the plugins screen"
]
}
]
}
}
3 changes: 2 additions & 1 deletion plugins/emf_animation_addon/emf_animation_addon.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,15 @@
author: "Traben & Ewan Howell",
description: "Adds extra animation support to CEM Template Loader so that it is compatible with the Entity Model Features mod.",
tags: ["Minecraft: Java Edition", "Entity Models", "Animation"],
version: "1.0.1",
version: "1.0.2",
min_version: "4.9.0",
variant: "both",
dependencies: ["cem_template_loader"],
onload() {
new Setting("emf_features", {
value: true,
category: "edit",
plugin: "emf_animation_addon",
name: "Enable EMF only animation features",
description: "Enable animation features that are only compatible with the Entity Model Features mod. WARNING: These animations will cause the model to fail to load when using OptiFine.",
onChange() {
Expand Down
Loading