Posted February 11, 201510 yr Is there anyway to check whether an item is on the ground? Could I convert the item into and EntityItem and see if the velocity is 0? I'm back from being gone for... I think its been about a year. I'm pretty sure nobody remembers me, but hello anybody who does!
February 11, 201510 yr An item in the world is already an EntityItem to check if it is on the ground use entity.onGround I am the author of Draconic Evolution
February 11, 201510 yr Author An item in the world is already an EntityItem to check if it is on the ground use entity.onGround I am using this in an IItemRenderer and I dont seem to have a world instance. In IItemRenderer it does say that Object[] data parameter in the ENTITY type is the EntityItem in the world. But I cant get an entityitem from an object array... I'm back from being gone for... I think its been about a year. I'm pretty sure nobody remembers me, but hello anybody who does!
February 11, 201510 yr Use an enhanced for loop with the array and cast the current object to EntityItem, do a null check, and profit. Maker of the Craft++ mod.
February 12, 201510 yr Author Use an enhanced for loop with the array and cast the current object to EntityItem, do a null check, and profit. Thats a really good idea. It works. Thanks! I'm back from being gone for... I think its been about a year. I'm pretty sure nobody remembers me, but hello anybody who does!
February 12, 201510 yr Use an enhanced for loop with the array and cast the current object to EntityItem, do a null check, and profit. Thats a really good idea. It works. Thanks! No problem, glad I could help! Maker of the Craft++ mod.
February 12, 201510 yr No need for a for loop... EntityItem item = (EntityItem) data[0]; Is there the possibility of multiple objects in the array? If not, then that's fine. Maker of the Craft++ mod.
February 12, 201510 yr Author No need for a for loop... EntityItem item = (EntityItem) data[0]; Oh youre right. Stupid me. The javadocs do say there is only on thing so youre right. I'm back from being gone for... I think its been about a year. I'm pretty sure nobody remembers me, but hello anybody who does!
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.