I have some questions accoring to Entities:
1: How can i let an Entity go up blocks(Only one block )
I was asking if i use AxisAlignedBB properly when i do:
and if i can actually rotate it when i rotate the entity.
I have wrote a car entity class witch works perfectly fine except from some bugs. For example the collision sometimes just disappears and when i drove into a wall and then dismount the player dismounts at the wall and not at the entity itself. Why does it does that?
CODE:
I am working on a car that can be used by multiple players and i ran into some problems. When i rightclick the car the seatentity is added to the list, but somehow the seat won't hold the player.
So here is my code:
EntityCar:
EntitySeat:
I hope someone can help me - until now there always was somebody
You'll need to call:
world.markBlockForUpdate(blockXPos, blockYPos, blockZPos);
//get blocks position from the BlockPos variable in method
in the randomDisplayTick method, so minecraft updates the lighting from the block.
Im trying to bind an Inventory to an entity. Everything works fine when i do the usual player.openGui but only with TileEntities. What to use for Entities? I hope someone can help me.
Hey everyone, i was trying to create a GuiScreen on wich an unlimited number of GuiButtons(People can add and remove buttons) is displayed and when the buttons reach a certain point a scrollbar should show up so one can scroll down. But i have absoloutly no clue how to do it. Hope somebody can help me