-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9e717b4
commit ba919c7
Showing
148 changed files
with
567 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,52 +9,67 @@ jobs: | |
main: | ||
|
||
runs-on: ubuntu-latest | ||
timeout-minutes: 20 | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v3 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v2 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '17' | ||
distribution: 'adopt' | ||
- name: Get Version | ||
id: version | ||
uses: actions/github-script@0.4.0 | ||
uses: actions/github-script@v6 | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
result-encoding: string | ||
script: | | ||
let ref = '${{ github.ref }}'; | ||
return ref.startsWith('refs/tags/v') ? ref.replace('refs/tags/v', '') : 'indev'; | ||
- name: Get Version Type | ||
id: version_type | ||
uses: actions/github-script@v6 | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
result-encoding: string | ||
script: | | ||
let version = '${{ steps.version.outputs.result }}'; | ||
return version.includes('alpha') ? 'alpha' : (version.includes('beta') ? 'beta' : 'release'); | ||
- name: Log Version Info | ||
env: | ||
VERSION: ${{ steps.version.outputs.result }} | ||
VERSION_TYPE: ${{ steps.version_type.outputs.result }} | ||
run: echo "version = $VERSION, type = $VERSION_TYPE" | ||
- name: Build | ||
uses: gradle/gradle-build-action@v2 | ||
with: | ||
arguments: build | ||
env: | ||
VERSION: ${{ steps.version.outputs.result }} | ||
- name: Create Release | ||
id: create_release | ||
if: ${{ success() }} | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: v${{ steps.version.outputs.result }} | ||
release_name: BetterFoliage v${{ steps.version.outputs.result }} | ||
body: | | ||
Version ${{ steps.version.outputs.result }} | ||
### Changes | ||
- todo: document changes | ||
draft: true | ||
- name: Publish | ||
id: publish | ||
if: ${{ success() }} | ||
uses: gradle/gradle-build-action@v2 | ||
if: ${{ steps.version.outputs.result != 'alpha' && success() }} | ||
uses: Kir-Antipov/[email protected] | ||
with: | ||
arguments: curseforge | ||
env: | ||
VERSION: ${{ steps.version.outputs.result }} | ||
CURSEFORGE_API_KEY: ${{ secrets.CURSEFORGE_API_KEY }} | ||
modrinth-id: czNFt8ef | ||
modrinth-token: ${{ secrets.MODRINTH_API_KEY }} | ||
|
||
curseforge-id: 470013 | ||
curseforge-token: ${{ secrets.CURSEFORGE_API_KEY }} | ||
|
||
github-tag: ${{ github.ref }} | ||
github-draft: true | ||
github-prerelease: false | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
name: BetterFoliageRenewed ${{ steps.version.outputs.result }} | ||
version: ${{ steps.version.outputs.result }} | ||
version-type: ${{ steps.version_type.outputs.result }} | ||
java: 17 | ||
loaders: | | ||
forge | ||
neoforge | ||
changelog-file: CHANGELOG.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
### Changes | ||
|
||
- This release is compatible with the newly released beta of TerraFirmaCraft for 1.20.1. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file added
BIN
+6.26 KB
...n/resources/assets/betterfoliage/textures/block/tfc/banana_flowering_leaves.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+6.23 KB
...in/resources/assets/betterfoliage/textures/block/tfc/banana_fruiting_leaves.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+7.14 KB
src/main/resources/assets/betterfoliage/textures/block/tfc/banana_leaves.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+7.38 KB
src/main/resources/assets/betterfoliage/textures/block/tfc/banana_leaves_dead.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+832 Bytes
src/main/resources/assets/betterfoliage/textures/block/tfc/cherry_dry_leaves.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+640 Bytes
...n/resources/assets/betterfoliage/textures/block/tfc/cherry_dry_leaves_fluff.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+687 Bytes
...n/resources/assets/betterfoliage/textures/block/tfc/cherry_flowering_leaves.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.05 KB
...urces/assets/betterfoliage/textures/block/tfc/cherry_flowering_leaves_fluff.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1011 Bytes
...in/resources/assets/betterfoliage/textures/block/tfc/cherry_fruiting_leaves.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+946 Bytes
...ources/assets/betterfoliage/textures/block/tfc/cherry_fruiting_leaves_fluff.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+631 Bytes
src/main/resources/assets/betterfoliage/textures/block/tfc/cherry_leaves.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+764 Bytes
src/main/resources/assets/betterfoliage/textures/block/tfc/cherry_leaves_fluff.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
29 changes: 29 additions & 0 deletions
29
src/main/resources/assets/betterfoliage/textures/block/tfc/fluffconvert.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
from PIL import Image, ImageDraw, ImageEnhance | ||
|
||
|
||
tfc_fruits = ('cherry', 'green_apple', 'lemon', 'olive', 'orange', 'peach', 'plum', 'red_apple') | ||
|
||
|
||
def main(): | ||
for fruit in tfc_fruits: | ||
for life in ('', '_fruiting', '_flowering', '_dry'): | ||
fluff('%s%s_leaves' % (fruit, life)) | ||
|
||
def fluff(file): | ||
img = Image.open(file + '.png').convert('RGBA') | ||
bg = Image.new('RGBA', (32, 32), (0, 0, 0, 0)) | ||
for loc in ((0, 0), (16, 0), (0, 16), (16, 16)): | ||
bg.paste(img, loc, img) | ||
rad = int(bg.width / 2) | ||
for x in range(0, bg.width): | ||
for y in range(0, bg.height): | ||
xr = x - 16 | ||
yr = y - 16 | ||
if xr * xr + yr * yr > rad * rad: | ||
bg.putpixel((x, y), (0, 0, 0, 0)) | ||
|
||
bg.save(file + '_fluff.png') | ||
|
||
|
||
if __name__ == '__main__': | ||
main() |
Binary file added
BIN
+832 Bytes
...in/resources/assets/betterfoliage/textures/block/tfc/green_apple_dry_leaves.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+640 Bytes
...ources/assets/betterfoliage/textures/block/tfc/green_apple_dry_leaves_fluff.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.08 KB
...ources/assets/betterfoliage/textures/block/tfc/green_apple_flowering_leaves.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.11 KB
.../assets/betterfoliage/textures/block/tfc/green_apple_flowering_leaves_fluff.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+919 Bytes
...sources/assets/betterfoliage/textures/block/tfc/green_apple_fruiting_leaves.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+822 Bytes
...s/assets/betterfoliage/textures/block/tfc/green_apple_fruiting_leaves_fluff.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+6.19 KB
src/main/resources/assets/betterfoliage/textures/block/tfc/green_apple_leaves.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+654 Bytes
.../resources/assets/betterfoliage/textures/block/tfc/green_apple_leaves_fluff.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+6.32 KB
src/main/resources/assets/betterfoliage/textures/block/tfc/lemon_dry_leaves.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+817 Bytes
...in/resources/assets/betterfoliage/textures/block/tfc/lemon_dry_leaves_fluff.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+656 Bytes
...in/resources/assets/betterfoliage/textures/block/tfc/lemon_flowering_leaves.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+826 Bytes
...ources/assets/betterfoliage/textures/block/tfc/lemon_flowering_leaves_fluff.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+653 Bytes
...ain/resources/assets/betterfoliage/textures/block/tfc/lemon_fruiting_leaves.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+841 Bytes
...sources/assets/betterfoliage/textures/block/tfc/lemon_fruiting_leaves_fluff.png
Oops, something went wrong.
Binary file added
BIN
+6.37 KB
src/main/resources/assets/betterfoliage/textures/block/tfc/lemon_leaves.png
Oops, something went wrong.
Binary file added
BIN
+788 Bytes
src/main/resources/assets/betterfoliage/textures/block/tfc/lemon_leaves_fluff.png
Oops, something went wrong.
Binary file added
BIN
+617 Bytes
src/main/resources/assets/betterfoliage/textures/block/tfc/olive_dry_leaves.png
Oops, something went wrong.
Binary file added
BIN
+690 Bytes
...in/resources/assets/betterfoliage/textures/block/tfc/olive_dry_leaves_fluff.png
Oops, something went wrong.
Binary file added
BIN
+650 Bytes
...in/resources/assets/betterfoliage/textures/block/tfc/olive_flowering_leaves.png
Oops, something went wrong.
Binary file added
BIN
+746 Bytes
...ources/assets/betterfoliage/textures/block/tfc/olive_flowering_leaves_fluff.png
Oops, something went wrong.
Binary file added
BIN
+648 Bytes
...ain/resources/assets/betterfoliage/textures/block/tfc/olive_fruiting_leaves.png
Oops, something went wrong.
Binary file added
BIN
+996 Bytes
...sources/assets/betterfoliage/textures/block/tfc/olive_fruiting_leaves_fluff.png
Oops, something went wrong.
Binary file added
BIN
+617 Bytes
src/main/resources/assets/betterfoliage/textures/block/tfc/olive_leaves.png
Oops, something went wrong.
Binary file added
BIN
+671 Bytes
src/main/resources/assets/betterfoliage/textures/block/tfc/olive_leaves_fluff.png
Oops, something went wrong.
Binary file added
BIN
+1011 Bytes
src/main/resources/assets/betterfoliage/textures/block/tfc/orange_dry_leaves.png
Oops, something went wrong.
Binary file added
BIN
+970 Bytes
...n/resources/assets/betterfoliage/textures/block/tfc/orange_dry_leaves_fluff.png
Oops, something went wrong.
Binary file added
BIN
+1.05 KB
...n/resources/assets/betterfoliage/textures/block/tfc/orange_flowering_leaves.png
Oops, something went wrong.
Binary file added
BIN
+916 Bytes
...urces/assets/betterfoliage/textures/block/tfc/orange_flowering_leaves_fluff.png
Oops, something went wrong.
Binary file added
BIN
+1.02 KB
...in/resources/assets/betterfoliage/textures/block/tfc/orange_fruiting_leaves.png
Oops, something went wrong.
Binary file added
BIN
+1002 Bytes
...ources/assets/betterfoliage/textures/block/tfc/orange_fruiting_leaves_fluff.png
Oops, something went wrong.
Binary file added
BIN
+979 Bytes
src/main/resources/assets/betterfoliage/textures/block/tfc/orange_leaves.png
Oops, something went wrong.
Binary file added
BIN
+965 Bytes
src/main/resources/assets/betterfoliage/textures/block/tfc/orange_leaves_fluff.png
Oops, something went wrong.
Binary file added
BIN
+618 Bytes
src/main/resources/assets/betterfoliage/textures/block/tfc/peach_dry_leaves.png
Oops, something went wrong.
Binary file added
BIN
+611 Bytes
...in/resources/assets/betterfoliage/textures/block/tfc/peach_dry_leaves_fluff.png
Oops, something went wrong.
Binary file added
BIN
+628 Bytes
...in/resources/assets/betterfoliage/textures/block/tfc/peach_flowering_leaves.png
Oops, something went wrong.
Binary file added
BIN
+858 Bytes
...ources/assets/betterfoliage/textures/block/tfc/peach_flowering_leaves_fluff.png
Oops, something went wrong.
Binary file added
BIN
+667 Bytes
...ain/resources/assets/betterfoliage/textures/block/tfc/peach_fruiting_leaves.png
Oops, something went wrong.
Binary file added
BIN
+939 Bytes
...sources/assets/betterfoliage/textures/block/tfc/peach_fruiting_leaves_fluff.png
Oops, something went wrong.
Binary file added
BIN
+631 Bytes
src/main/resources/assets/betterfoliage/textures/block/tfc/peach_leaves.png
Oops, something went wrong.
Binary file added
BIN
+780 Bytes
src/main/resources/assets/betterfoliage/textures/block/tfc/peach_leaves_fluff.png
Oops, something went wrong.
Binary file added
BIN
+624 Bytes
src/main/resources/assets/betterfoliage/textures/block/tfc/plum_dry_leaves.png
Oops, something went wrong.
Binary file added
BIN
+640 Bytes
...ain/resources/assets/betterfoliage/textures/block/tfc/plum_dry_leaves_fluff.png
Oops, something went wrong.
Binary file added
BIN
+655 Bytes
...ain/resources/assets/betterfoliage/textures/block/tfc/plum_flowering_leaves.png
Oops, something went wrong.
Binary file added
BIN
+973 Bytes
...sources/assets/betterfoliage/textures/block/tfc/plum_flowering_leaves_fluff.png
Oops, something went wrong.
Binary file added
BIN
+665 Bytes
...main/resources/assets/betterfoliage/textures/block/tfc/plum_fruiting_leaves.png
Oops, something went wrong.
Binary file added
BIN
+1 KB
...esources/assets/betterfoliage/textures/block/tfc/plum_fruiting_leaves_fluff.png
Oops, something went wrong.
Binary file added
BIN
+628 Bytes
src/main/resources/assets/betterfoliage/textures/block/tfc/plum_leaves.png
Oops, something went wrong.
Binary file added
BIN
+832 Bytes
src/main/resources/assets/betterfoliage/textures/block/tfc/plum_leaves_fluff.png
Oops, something went wrong.
Binary file added
BIN
+832 Bytes
...main/resources/assets/betterfoliage/textures/block/tfc/red_apple_dry_leaves.png
Oops, something went wrong.
Binary file added
BIN
+640 Bytes
...esources/assets/betterfoliage/textures/block/tfc/red_apple_dry_leaves_fluff.png
Oops, something went wrong.
Binary file added
BIN
+1.08 KB
...esources/assets/betterfoliage/textures/block/tfc/red_apple_flowering_leaves.png
Oops, something went wrong.
Binary file added
BIN
+1.11 KB
...es/assets/betterfoliage/textures/block/tfc/red_apple_flowering_leaves_fluff.png
Oops, something went wrong.
Binary file added
BIN
+654 Bytes
...resources/assets/betterfoliage/textures/block/tfc/red_apple_fruiting_leaves.png
Oops, something went wrong.
Binary file added
BIN
+811 Bytes
...ces/assets/betterfoliage/textures/block/tfc/red_apple_fruiting_leaves_fluff.png
Oops, something went wrong.
Binary file added
BIN
+818 Bytes
src/main/resources/assets/betterfoliage/textures/block/tfc/red_apple_leaves.png
Oops, something went wrong.
Binary file added
BIN
+654 Bytes
...in/resources/assets/betterfoliage/textures/block/tfc/red_apple_leaves_fluff.png
Oops, something went wrong.
7 changes: 7 additions & 0 deletions
7
src/main/resources/assets/tfc/models/block/plant/cherry_dry_leaves.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"__comment__": "This file was automatically created by mcresources", | ||
"loader": "betterfoliage:leaves", | ||
"leaves": "tfc:block/fruit_tree/cherry_dry_leaves", | ||
"fluff": "betterfoliage:block/tfc/cherry_dry_leaves_fluff", | ||
"tintLeaves": false | ||
} |
7 changes: 7 additions & 0 deletions
7
src/main/resources/assets/tfc/models/block/plant/cherry_flowering_leaves.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"__comment__": "This file was automatically created by mcresources", | ||
"loader": "betterfoliage:leaves", | ||
"leaves": "tfc:block/fruit_tree/cherry_flowering_leaves", | ||
"fluff": "betterfoliage:block/tfc/cherry_flowering_leaves_fluff", | ||
"tintLeaves": false | ||
} |
7 changes: 7 additions & 0 deletions
7
src/main/resources/assets/tfc/models/block/plant/cherry_fruiting_leaves.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"__comment__": "This file was automatically created by mcresources", | ||
"loader": "betterfoliage:leaves", | ||
"leaves": "tfc:block/fruit_tree/cherry_fruiting_leaves", | ||
"fluff": "betterfoliage:block/tfc/cherry_fruiting_leaves_fluff", | ||
"tintLeaves": false | ||
} |
7 changes: 7 additions & 0 deletions
7
src/main/resources/assets/tfc/models/block/plant/cherry_leaves.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"__comment__": "This file was automatically created by mcresources", | ||
"loader": "betterfoliage:leaves", | ||
"leaves": "tfc:block/fruit_tree/cherry_leaves", | ||
"fluff": "betterfoliage:block/tfc/cherry_leaves_fluff", | ||
"tintLeaves": false | ||
} |
7 changes: 7 additions & 0 deletions
7
src/main/resources/assets/tfc/models/block/plant/green_apple_dry_leaves.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"__comment__": "This file was automatically created by mcresources", | ||
"loader": "betterfoliage:leaves", | ||
"leaves": "tfc:block/fruit_tree/green_apple_dry_leaves", | ||
"fluff": "betterfoliage:block/tfc/green_apple_dry_leaves_fluff", | ||
"tintLeaves": false | ||
} |
7 changes: 7 additions & 0 deletions
7
src/main/resources/assets/tfc/models/block/plant/green_apple_flowering_leaves.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"__comment__": "This file was automatically created by mcresources", | ||
"loader": "betterfoliage:leaves", | ||
"leaves": "tfc:block/fruit_tree/green_apple_flowering_leaves", | ||
"fluff": "betterfoliage:block/tfc/green_apple_flowering_leaves_fluff", | ||
"tintLeaves": false | ||
} |
7 changes: 7 additions & 0 deletions
7
src/main/resources/assets/tfc/models/block/plant/green_apple_fruiting_leaves.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"__comment__": "This file was automatically created by mcresources", | ||
"loader": "betterfoliage:leaves", | ||
"leaves": "tfc:block/fruit_tree/green_apple_fruiting_leaves", | ||
"fluff": "betterfoliage:block/tfc/green_apple_fruiting_leaves_fluff", | ||
"tintLeaves": false | ||
} |
7 changes: 7 additions & 0 deletions
7
src/main/resources/assets/tfc/models/block/plant/green_apple_leaves.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"__comment__": "This file was automatically created by mcresources", | ||
"loader": "betterfoliage:leaves", | ||
"leaves": "tfc:block/fruit_tree/green_apple_leaves", | ||
"fluff": "betterfoliage:block/tfc/green_apple_leaves_fluff", | ||
"tintLeaves": false | ||
} |
Oops, something went wrong.