Skip to content

Commit

Permalink
Merge pull request #499 from AzureDoom/master
Browse files Browse the repository at this point in the history
AzureLib Animator v1.0.6
  • Loading branch information
JannisX11 authored Apr 11, 2024
2 parents 4ba6906 + dc4adf2 commit 91b0dd3
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 7 deletions.
2 changes: 1 addition & 1 deletion plugins.json
Original file line number Diff line number Diff line change
Expand Up @@ -851,7 +851,7 @@
"icon": "azureicon.png",
"description": "Create animated blocks, items, entity, and armor using the AzureLib library and plugin. This is a fork of Geckolib and cross compatibility will not be promised in the future.",
"tags": ["Minecraft: Java Edition"],
"version": "1.0.5",
"version": "1.0.6",
"min_version": "4.8.0",
"new_repository_format": true,
"await_loading": true,
Expand Down
7 changes: 5 additions & 2 deletions plugins/azurelib_utils/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ Supported Minecraft versions:
- **1.17.1 Forge/Fabric**
- **1.18.2 Forge/Fabric**
- **1.19.2 Forge/Fabric**
- **1.19.3 Forge/Fabric**
- **1.19.4 Forge/Fabric**
- **1.20.1 Forge/NeoForge/Fabric**
- **1.20.4 NeoForge/Fabric**

To add to your code, please do the following:

Expand All @@ -26,8 +26,11 @@ dependencies {
//Forge
implementation fg.deobf("mod.azure.azurelib:azurelib-forge-MCVER:MODVER")
//NeoForge
//NeoForge 1.20.1
implementation fg.deobf("mod.azure.azurelib:azurelib-neo-MCVER:MODVER")
//NeoForge 1.20.4+
implementation "mod.azure.azurelib:azurelib-neo-MCVER:MODVER"
}
```
<style>
Expand Down
2 changes: 1 addition & 1 deletion plugins/azurelib_utils/azurelib_utils.js

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion plugins/azurelib_utils/members.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
maintainers:
- AzureDoom
- AzureDoom
- bvanseg
2 changes: 1 addition & 1 deletion src/azurelib_utils/codec.js
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ export function maybeExportItemJson(options = {}, as) {
blockmodel.credit = settings.credit.value
}
if (checkExport('parent', Project.parent != '')) {
blockmodel.parent = Project.parent
blockmodel.parent = 'builtin/entity'
}
if (checkExport('ambientocclusion', Project.ambientocclusion === false)) {
blockmodel.ambientocclusion = false
Expand Down
2 changes: 1 addition & 1 deletion src/azurelib_utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "azurelib_utils",
"version": "1.0.5",
"version": "1.0.6",
"private": true,
"description": "AzureLib Animator",
"main": "index.js",
Expand Down
3 changes: 3 additions & 0 deletions src/azurelib_utils/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ export function onSettingsChanged() {
} case AZURE_ITEM_BLOCK: {
Project.parent = 'builtin/entity';
break;
} case AZURE_ENTITY: {
Project.parent = 'builtin/entity';
break;
}
}
}
Expand Down

0 comments on commit 91b0dd3

Please sign in to comment.