-
-
Notifications
You must be signed in to change notification settings - Fork 0
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
c459273
commit ff16e98
Showing
8 changed files
with
60 additions
and
27 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 |
---|---|---|
@@ -1,4 +1,9 @@ | ||
# Changelog v1.3 | ||
# Changelog v1.4 | ||
|
||
## Additions | ||
- Added falling leaf particles for pale oak leaves | ||
- Added tag "drops_falling_leaves" | ||
- If you want to add leaf particles to your leaf blocks, add your block to the tag | ||
- Works only for grey texture, since the color will be set (will be adapted in the future) | ||
|
||
## Changes | ||
- Falling leaves particles now stay on ground for a bit |
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
18 changes: 18 additions & 0 deletions
18
src/main/java/com/nemonotfound/nemosambience/tag/ModBlockTags.java
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,18 @@ | ||
package com.nemonotfound.nemosambience.tag; | ||
|
||
import net.minecraft.block.Block; | ||
import net.minecraft.registry.RegistryKeys; | ||
import net.minecraft.registry.tag.TagKey; | ||
import net.minecraft.util.Identifier; | ||
|
||
import static com.nemonotfound.nemosambience.NemosAmbience.MOD_ID; | ||
import static com.nemonotfound.nemosambience.NemosAmbience.log; | ||
|
||
public class ModBlockTags { | ||
|
||
public static final TagKey<Block> DROPS_FALLING_LEAVES = TagKey.of(RegistryKeys.BLOCK, Identifier.of(MOD_ID, "drops_falling_leaves")); | ||
|
||
public static void register() { | ||
log.info("Registering block tags"); | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
src/main/resources/data/nemos-ambience/tags/block/drops_falling_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,13 @@ | ||
{ | ||
"values": [ | ||
"minecraft:jungle_leaves", | ||
"minecraft:oak_leaves", | ||
"minecraft:spruce_leaves", | ||
"minecraft:dark_oak_leaves", | ||
"minecraft:acacia_leaves", | ||
"minecraft:birch_leaves", | ||
"minecraft:azalea_leaves", | ||
"minecraft:flowering_azalea_leaves", | ||
"minecraft:mangrove_leaves" | ||
] | ||
} |