Jump to content

Goosums

Members
  • Posts

    2
  • Joined

  • Last visited

Goosums's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. Thank you so much for your help. I definitely overlooked that. Sorry if this was not the right venue to post the question, I will try to be more careful next time.
  2. Hey guys, I created a custom entity that is supposed to be almost a carbon copy of a sheep. Same behaviors and all that. The only difference is I am trying to change the size of the fur layer. My first thought was to create all the classes related to the entity as children of the respective sheep classes, which has worked after learning my way around them. The issue is now that I am moving onto creating the unique aspects of the creature, I can not seem to get the fur layer to render at different sizes as I would like. I assumed that this would be done in my ExtraWoolySheepFurModel class in the createFurLayer method here: https://github.com/Goosums/WoollyWonders/blob/master/src/main/java/goosum/goosum/woollywonders/client/model/layer/ExtraWoollySheepFurModel.java I toyed around with the various numbers in this method to no avail. I thought maybe this was something that should be done with the renderer for the fur layer, but when extending the SheepFurLayer class which is a child of RenderLayer, I had issues overriding the render method due to my entity not being a valid parameter in many places because it should be extending things like Entity, EntityType, or EntityModel which it seems like should not be an issue because the Sheep classes are descended from those classes. If anyone could help me with this, it would be greatly appreciated. I have been learning forge modding mostly from just reading the vanilla classes and some reading documentation, so if there are some things that seem very out of place, let me know, I might not be seeing the full picture in some spots. Here is the full Github Repo: https://github.com/Goosums/WoollyWonders
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.