Jump to content

Item.onUpdate( ... int par4, boolean par5), what is par4 and par5?


Moonrise

Recommended Posts

Hi

 

I find the best way to figure out unknown parameters is to have a look what the callers of that method provide.

So for example:

Item.onUpdate

called by

ItemStack.updateAnimation

called by

InventoryPlayer.decrementAnimations
this.mainInventory[i].updateAnimation(this.player.worldObj, this.player, i, this.currentItem == i);

which gives you a pretty obvious indication of what the last two parameters are.

 

-TGG

 

 

Link to comment
Share on other sites

Only on ClientSide:

 

[*]player's World instance

[*]the player instance

[*]inventory slot #

[*]true is above is the currently selected item

 

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now


×
×
  • Create New...

Important Information

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