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

Your registry code is broken. Read the documentation. Do not change things unless you absolutely know what you are doing.

45 minutes ago, GrigLog said:

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

 

This will create your entity with EntityType.ARROW, i.e. the vanilla entity type. You must always specify your entity type.

Your entity must also override getAddEntityPacket and return NetworkHooks.getEntitySpawningPacket, the vanila spawn packets only work for vanilla entities.

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

Just now, GrigLog said:

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

The registration code for blocks, items, entity types, etc. is all the same. The documentation explains both using DeferredRegister and also using the RegistryEvent manually and using @ObjectHolder.

1 minute ago, GrigLog said:

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

No. You have to specify the correct type in the constructor. Do not override getType.

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

You have not followed the registry documentation. Do not change anything about the code it shows you unless you know what it means.

14 minutes ago, GrigLog said:

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

 

Why are you creating a spawning packet for the shooter instead of your entity?!

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
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.



×
×
  • Create New...

Important Information

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