Jump to content

방세준

Members
  • Posts

    17
  • Joined

  • Last visited

Everything posted by 방세준

  1. No matter how much I read and think about it, I don't know.
  2. I read it several times, but I couldn't understand it well because the translator was weird.
  3. Is there a problem with the RabbitRender file? I'd appreciate it if you could tell me in detail and easily.
  4. https://github.com/bangsejun/1.15.2- Why can't I apply the model to the entity when it's code?
  5. Why isn't the entity applied? Tell me if you need to add or fix anything! https://github.com/bangsejun/1.15.2- code
  6. I'm working on Minecraft. Reported expansion through! I have an up and down. Is there any way to fix it? It's a code. https://github.com/bangsejun/1.15.2-
  7. package com.coldbreath.frost.entities; import com.coldbreath.frost.init.ModEntityTypes; import net.minecraft.entity.AgeableEntity; import net.minecraft.entity.EntityType; import net.minecraft.entity.ILivingEntityData; import net.minecraft.entity.SpawnReason; import net.minecraft.entity.ai.goal.EatGrassGoal; import net.minecraft.entity.passive.AnimalEntity; import net.minecraft.nbt.CompoundNBT; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; import javax.annotation.Nullable; public class RabbitEntity extends AnimalEntity { private EatGrassGoal eatGrassGoal; private int rabbitTimer; public RabbitEntity(EntityType<? extends AnimalEntity> type, World worldIn) { super(type, worldIn); } @Nullable @Override public AgeableEntity createChild(AgeableEntity ageable) { RabbitEntity entity = new RabbitEntity(ModEntityTypes.RABBIT_ENTITY.get(), this.world); entity.onInitialSpawn(this.world, this.world.getDifficultyForLocation(new BlockPos(entity)), SpawnReason.BREEDING, (ILivingEntityData)null, (CompoundNBT)null); entity.setGlowing(true); return entity; } } code. All entities must have a constructor that takes one net.minecraft.world.World parameter. errorcode There is an error in line 16 RabbitEntity.
  8. Texture and lang are not applied. What should I do? It is my gitHub address -https://github.com/bangsejun/1.12.2-modding
×
×
  • Create New...

Important Information

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