Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (โ‹ฎ) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

Hi I would like to know the easiest way to make a item render above a block in the world.

Try using EntityItem. There's a variable for the amount of time it takes to pick up.

Kain

  • Author

How do I spawn the item in the world above the block? And how would I make it so it just floats there similar to the wand in thaumcraft?

ย 

Here's the render function for my TE model:

ย 

public void render(TileEntity te, double x, double y, double z) {
	TEDisplayPedestal es = (TEDisplayPedestal)te;
	if(es.itemEnt != null) { //store the item entity in the tile entity
		GL11.glPushMatrix();
		GL11.glTranslatef((float)x + 0.5F, (float)y + 0.75F, (float)z + 0.25F);//position where I want it
		GL11.glRotatef(90, 1, 0, 0); //lay the item flat
		RenderHelper.enableStandardItemLighting();
		RenderManager.instance.renderEntityWithPosYaw(es.itemEnt, 0, 0, 0, 0, 0);
		GL11.glPopMatrix();
	}

	GL11.glPushMatrix();
	GL11.glTranslatef((float)x + 0.5f, (float)y - 0.5f, (float)z + 0.5f);
	ResourceLocation rl = new ResourceLocation(es.getModelTexture());
	Minecraft.getMinecraft().renderEngine.bindTexture(rl);
	this.render();
	GL11.glPopMatrix();
}

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.ย  If you think this is the case, JUST REPORT ME.ย  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

ย 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

ย 

DO NOT PM ME WITH PROBLEMS. No help will be given.

I have that as part of the Model (public class MyModel extends ModelBase).

ย 

es.itemEnt is just an EntityItem that is stored in the custom tile entity so that I'm not creating a new one all the time (I also force its position, rotation, and age to zero).

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.ย  If you think this is the case, JUST REPORT ME.ย  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

ย 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

ย 

DO NOT PM ME WITH PROBLEMS. No help will be given.

I hate to reply to someone else's conversation, but Draco, this seems to render it at different angles and positions each time you place the block down...

I hate to reply to someone else's conversation, but Draco, this seems to render it at different angles and positions each time you place the block down...

ย 

It shouldn't.ย  That code was where I stopped last night, before I did placement angles (my TE now has 4 facings).

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.ย  If you think this is the case, JUST REPORT ME.ย  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

ย 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

ย 

DO NOT PM ME WITH PROBLEMS. No help will be given.

I hate to reply to someone else's conversation, but Draco, this seems to render it at different angles and positions each time you place the block down...

ย 

It shouldn't.ย  That code was where I stopped last night, before I did placement angles (my TE now has 4 facings).

ย 

Pic:

ย 

advcrafter.png

ย 

ย 

Code:

ย 

ย 

ย 

TileEntity item definition

 public EntityItem star = new EntityItem(this.worldObj, this.xCoord, this.yCoord, this.zCoord, new ItemStack(Item.netherStar));

ย 

TileEntityRenderer

public class RenderAdvCrafter extends TileEntitySpecialRenderer
{

@Override
public void renderTileEntityAt(TileEntity tileentity, double x, double y, double z, float f)
{

	TileAdvCrafter tile = (TileAdvCrafter) tileentity;

	if(tile.star != null)
	{
ย  ย  ย  ย  ย  ย  tile.star.setPositionAndRotation(0, 0, 0, 0, 0);
ย  ย  ย  ย  ย  ย  tile.star.age = 0;

		GL11.glPushMatrix();
		GL11.glTranslatef((float)x+0.5F, (float)y+0.8F, (float)z+0.25F);
		GL11.glRotatef(90, 1, 0, 0);
		GL11.glScalef(1.5F, 1.5F, 1.5F);
		RenderHelper.enableStandardItemLighting();
		RenderManager.instance.renderEntityWithPosYaw(tile.star, 0, 0, 0, 0, 0);
		GL11.glPopMatrix();
	}
}

}

ย 

ย 

ย 

ย 

The angles of each star change upon world reload also. It seems to be ignoring the rotational infomation it is given...

Ah!ย  I see your problem. :)

ย 

This is from my tile entity:

ย 

@Override
public void onInventoryChanged() {
	super.onInventoryChanged();
	if(contents[0] != null) {
		itemEnt = new EntityItem(this.worldObj, this.xCoord, this.yCoord, this.zCoord, contents[0]);
		itemEnt.hoverStart = 0; //this is making it be off-center
		itemEnt.rotationYaw = 0; //this is what's making it rotate for you
		itemEnt.motionX = 0; //zero out these just in case
		itemEnt.motionY = 0;
		itemEnt.motionZ = 0;
	}
	else {
		itemEnt = null;
	}
}

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.ย  If you think this is the case, JUST REPORT ME.ย  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

ย 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

ย 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Ah!ย  I see your problem. :)

ย 

This is from my tile entity:

ย 

@Override
public void onInventoryChanged() {
	super.onInventoryChanged();
	if(contents[0] != null) {
		itemEnt = new EntityItem(this.worldObj, this.xCoord, this.yCoord, this.zCoord, contents[0]);
		itemEnt.hoverStart = 0; //this is making it be off-center
		itemEnt.rotationYaw = 0; //this is what's making it rotate for you
		itemEnt.motionX = 0; //zero out these just in case
		itemEnt.motionY = 0;
		itemEnt.motionZ = 0;
	}
	else {
		itemEnt = null;
	}
}

ย 

Ah, thanks!

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

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions โ†’ Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.