-
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: rework Long Claws into Ravenous Claws
- Loading branch information
1 parent
8fb9bc3
commit 0b619b0
Showing
31 changed files
with
1,933 additions
and
1,309 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
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
29 changes: 0 additions & 29 deletions
29
...main/java/com/github/elenterius/biomancy/client/render/item/longclaws/LongClawsModel.java
This file was deleted.
Oops, something went wrong.
12 changes: 0 additions & 12 deletions
12
...n/java/com/github/elenterius/biomancy/client/render/item/longclaws/LongClawsRenderer.java
This file was deleted.
Oops, something went wrong.
29 changes: 29 additions & 0 deletions
29
...a/com/github/elenterius/biomancy/client/render/item/ravenousclaws/RavenousClawsModel.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,29 @@ | ||
package com.github.elenterius.biomancy.client.render.item.ravenousclaws; | ||
|
||
import com.github.elenterius.biomancy.BiomancyMod; | ||
import com.github.elenterius.biomancy.item.weapon.RavenousClawsItem; | ||
import net.minecraft.resources.ResourceLocation; | ||
import software.bernie.geckolib3.model.AnimatedGeoModel; | ||
|
||
public class RavenousClawsModel extends AnimatedGeoModel<RavenousClawsItem> { | ||
|
||
protected static final ResourceLocation MODEL = BiomancyMod.createRL("geo/item/ravenous_claws.geo.json"); | ||
protected static final ResourceLocation TEXTURE = BiomancyMod.createRL("textures/item/weapon/ravenous_claws.png"); | ||
protected static final ResourceLocation ANIMATION = BiomancyMod.createRL("animations/item/ravenous_claws.animation.json"); | ||
|
||
@Override | ||
public ResourceLocation getModelResource(RavenousClawsItem item) { | ||
return MODEL; | ||
} | ||
|
||
@Override | ||
public ResourceLocation getTextureResource(RavenousClawsItem item) { | ||
return TEXTURE; | ||
} | ||
|
||
@Override | ||
public ResourceLocation getAnimationResource(RavenousClawsItem item) { | ||
return ANIMATION; | ||
} | ||
|
||
} |
12 changes: 12 additions & 0 deletions
12
...om/github/elenterius/biomancy/client/render/item/ravenousclaws/RavenousClawsRenderer.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,12 @@ | ||
package com.github.elenterius.biomancy.client.render.item.ravenousclaws; | ||
|
||
import com.github.elenterius.biomancy.item.weapon.RavenousClawsItem; | ||
import software.bernie.geckolib3.renderers.geo.GeoItemRenderer; | ||
|
||
public class RavenousClawsRenderer extends GeoItemRenderer<RavenousClawsItem> { | ||
|
||
public RavenousClawsRenderer() { | ||
super(new RavenousClawsModel()); | ||
} | ||
|
||
} |
7 changes: 7 additions & 0 deletions
7
...in/java/com/github/elenterius/biomancy/client/render/item/ravenousclaws/package-info.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,7 @@ | ||
@ParametersAreNonnullByDefault | ||
@MethodsReturnNonnullByDefault | ||
package com.github.elenterius.biomancy.client.render.item.ravenousclaws; | ||
|
||
import net.minecraft.MethodsReturnNonnullByDefault; | ||
|
||
import javax.annotation.ParametersAreNonnullByDefault; |
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
Oops, something went wrong.