« All Events
10 AM – Minecraft Modding with Java – Gamas
October 8, 2022 @ 10:00 am - 11:00 am
Today We Did
- We added SATURN_TURTLE custom creature to our minecraft modding project.
- We fixed the body and head animation problem
- We continued with SATURN_FOX custom creature.
- We transfered the SaturnFoxModel.java class from blockbench and fixed all the compilation problems.
Homework
- Continue with the rest of the steps to make SATURN_FOX available in the mod. Follow these steps
- Create a new Renderer class under src/main/java/com/ayclogic/aycessentials/client/render. Look at HogRenderer or SaturnTurtleRenderer for reference.
- Modify ModEntities.java file add SATURN_FOX entry. Look at how we did it for SATURN_TURTLE creature.
- Modify ClientEventBusSubscriber.java class. Inside onClientSetup register ModEntities.SATURN_FOX.
- Modify AYCEssentialsMod.java. Inside setup method add SATURN_FOX. Look at how we did the SATURN_TURTLE.
- Modify en_us.json file, add entity.aycessentials.saturn_fox entry
- Run your minecraft mod and summon the saturn_fox creature.