Jump to content

Custom EntityRenderer.getEntityTexture() is not called


GrigLog

Recommended Posts

Ive already made an arrow entity (derived from vanilla one), and it works fine (they dont get picked up by a player), but for some reason my texture is not rendered, the arrow looks like vanilla one...

Arrow code:

public class HolyArrow extends ArrowEntity {
    public HolyArrow(World world, PlayerEntity player){
        super(world, player);
    }

    public HolyArrow(EntityType<HolyArrow> type, World world){
        super(type, world);
    }

    public void onCollideWithPlayer(PlayerEntity entityIn) {} //no pickup

    public static EntityType<HolyArrow> getRegistryType(){
        return (EntityType<HolyArrow>) EntityType.Builder
                .<HolyArrow>create(HolyArrow::new, EntityClassification.MISC)
                .size(1, 1)
                .build("")
                .setRegistryName("holy_arrow");
    }
}

Renderer (the texture method is never called):

public class HolyArrowRenderer extends ArrowRenderer<HolyArrow> {
    public HolyArrowRenderer(EntityRendererManager e){
        super(e);
    }

    @Override
    public ResourceLocation getEntityTexture(HolyArrow entity) {
        System.out.println("texture requested");
        return new ResourceLocation(Soul.id, "textures/entity/holy_arrow.png");
    }
}

Registering a renderer:

@Mod.EventBusSubscriber(value=Dist.CLIENT, bus=Mod.EventBusSubscriber.Bus.MOD)
public class ClientEvents {
    @SubscribeEvent
    public static void setupClient(FMLClientSetupEvent event){
        RenderingRegistry.registerEntityRenderingHandler(Entities.holyArrow, HolyArrowRenderer::new);
    }
}

Registering an entity:

@Mod.EventBusSubscriber(bus=Mod.EventBusSubscriber.Bus.MOD)
public class RegistryEvents {
    @SubscribeEvent
    static void registerEntities(final RegistryEvent.Register<EntityType<?>> event){
        event.getRegistry().registerAll(Entities.holyArrow);
    }
}

Entity reference:

public class Entities {
    public static final EntityType<HolyArrow> holyArrow = HolyArrow.getRegistryType();
}

 

Link to comment
Share on other sites

Quote

Your registry code is broken. Read the documentation

The problem is, in docs its only said how to register EntityTypes through DeferredRegisters...

Quote

You must always specify your entity type

Ive added an override for getType() {return Entities.holyArrow;} now the arrows are simply invisible. Am I doing right?

Quote

Your entity must also override getAddEntityPacket and return NetworkHooks.getEntitySpawningPacket

Ok, but it didnt change anything

 

Link to comment
Share on other sites

I think Ive done everything as it and you say, and I looked through other mods code and it looks similar everywhere, but the arrows are still invisible, whats wrong?

public class Entities {
    public static final EntityType<HolyArrow> holyArrow = EntityType.Builder
            .<HolyArrow>create(HolyArrow::new, EntityClassification.MISC)
            .size(1, 1)
            .build("");
}
public class HolyArrow extends AbstractArrowEntity {
    public HolyArrow(World world, PlayerEntity player){
        super(Entities.holyArrow, player, world);
    }

    public HolyArrow (EntityType<HolyArrow> type, World world){
        super(Entities.holyArrow, world);
    }

    public IPacket<?> createSpawnPacket() {
        Entity entity = this.getShooter();
        return NetworkHooks.getEntitySpawningPacket(entity);
    }

    public void onCollideWithPlayer(PlayerEntity entityIn) {} //no pickup


    @Override
    protected ItemStack getArrowStack() {
        return null;
    }
}
@Mod.EventBusSubscriber(bus=Mod.EventBusSubscriber.Bus.MOD)
public class RegistryEvents {
    @SubscribeEvent
    static void registerEntities(final RegistryEvent.Register<EntityType<?>> event){
        event.getRegistry().registerAll(Entities.holyArrow.setRegistryName("holy_arrow"));
    }
}
@Mod.EventBusSubscriber(value=Dist.CLIENT, bus=Mod.EventBusSubscriber.Bus.MOD)
public class ClientEvents {
    @SubscribeEvent
    public static void setupClient(FMLClientSetupEvent event){
        RenderingRegistry.registerEntityRenderingHandler(Entities.holyArrow, HolyArrowRenderer::new);
    }
}

 

Link to comment
Share on other sites

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

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