Posted March 20, 20169 yr First, I have an entity that has a grayscale texture and I would like it to transition between two different colors, how would I do this? Second, when my entity is spawned in, it appears for a few seconds, then disappears for 10-15 seconds and reappears. Is it a current bug in forge or is it something I am doing wrong? Entity class: https://github.com/LogicTechCorp/SoulMagic/blob/1.9/src/main/java/soulmagic/entity/item/EntitySoul.java Entity render: https://github.com/LogicTechCorp/SoulMagic/blob/1.9/src/main/java/soulmagic/client/render/entiy/SoulRenderFactory.java
March 20, 20169 yr Author Your entity is disappearing because you told it to if(this.ticksExisted >= 6000) { this.setDead(); } That sets the entity dead after 5 minutes. And the issue still occurs without this piece of code.
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.