-
Notifications
You must be signed in to change notification settings - Fork 11
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
cf02b77
commit cd01384
Showing
4 changed files
with
31 additions
and
0 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
18 changes: 18 additions & 0 deletions
18
src/main/java/net/zepalesque/redux/data/gen/ReduxParticleGen.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 net.zepalesque.redux.data.gen; | ||
|
||
import net.minecraft.data.PackOutput; | ||
import net.neoforged.neoforge.common.data.ExistingFileHelper; | ||
import net.zepalesque.redux.Redux; | ||
import net.zepalesque.redux.client.particle.ReduxParticles; | ||
import net.zepalesque.redux.data.prov.ReduxParticleProvider; | ||
|
||
public class ReduxParticleGen extends ReduxParticleProvider { | ||
public ReduxParticleGen(PackOutput output, ExistingFileHelper fileHelper) { | ||
super(output, fileHelper); | ||
} | ||
|
||
@Override | ||
protected void addDescriptions() { | ||
this.spriteSet(ReduxParticles.CLOUDROOT_LEAF.get(), Redux.loc("leaves/cloudroot")); | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
src/main/java/net/zepalesque/redux/data/prov/ReduxParticleProvider.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,11 @@ | ||
package net.zepalesque.redux.data.prov; | ||
|
||
import net.minecraft.data.PackOutput; | ||
import net.neoforged.neoforge.common.data.ExistingFileHelper; | ||
import net.neoforged.neoforge.common.data.ParticleDescriptionProvider; | ||
|
||
public abstract class ReduxParticleProvider extends ParticleDescriptionProvider { | ||
protected ReduxParticleProvider(PackOutput output, ExistingFileHelper fileHelper) { | ||
super(output, fileHelper); | ||
} | ||
} |
Binary file added
BIN
+162 Bytes
src/main/resources/assets/aether_redux/textures/particle/leaves/cloudroot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.