UseOnContext
Link to useoncontext
Importare la Classe
Link to importare-la-classe
It might be required for you to import the package if you encounter any issues (like casting an Array), so better be safe than sorry and add the import at the very top of the file.
ZenScript Copyimport crafttweaker.api.item.UseOnContext;
Metodi
Link to metodi
Name: getClickLocation
Return Type: Vec3
ZenScript Copy// UseOnContext.getClickLocation() as Vec3
myUseOnContext.getClickLocation();
Name: getClickedFace
Return Type: Direction
ZenScript Copy// UseOnContext.getClickedFace() as Direction
myUseOnContext.getClickedFace();
Name: getClickedPos
Return Type: BlockPos
ZenScript Copy// UseOnContext.getClickedPos() as BlockPos
myUseOnContext.getClickedPos();
Name: getHand
Return Type: InteractionHand
ZenScript Copy// UseOnContext.getHand() as InteractionHand
myUseOnContext.getHand();
Name: getHorizontalDirection
Return Type: Direction
ZenScript Copy// UseOnContext.getHorizontalDirection() as Direction
myUseOnContext.getHorizontalDirection();
Name: getItemInHand
Return Type: ItemStack
ZenScript Copy// UseOnContext.getItemInHand() as ItemStack
myUseOnContext.getItemInHand();
Name: getLevel
Return Type: Level
ZenScript Copy// UseOnContext.getLevel() as Level
myUseOnContext.getLevel();
Name: getPlayer
Return Type: Player
ZenScript Copy// UseOnContext.getPlayer() as Player
myUseOnContext.getPlayer();
Name: getRotation
Return Type: float
ZenScript Copy// UseOnContext.getRotation() as float
myUseOnContext.getRotation();
Name: isInside
Return Type: boolean
ZenScript Copy// UseOnContext.isInside() as boolean
myUseOnContext.isInside();
Name: isSecondaryUseActive
Return Type: boolean
ZenScript Copy// UseOnContext.isSecondaryUseActive() as boolean
myUseOnContext.isSecondaryUseActive();
Proprietà
Link to proprietà
Nome | Tipo | Ha Getter | Ha Setter | Descrizione |
---|---|---|---|---|
Nome clickLocation | Tipo Vec3 | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome clickedFace | Tipo Direction | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome clickedPos | Tipo BlockPos | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome hand | Tipo InteractionHand | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome horizontalDirection | Tipo Direction | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome isInside | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome isSecondaryUseActive | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome itemInHand | Tipo ItemStack | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome level | Tipo Level | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome player | Tipo Player | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome rotation | Tipo float | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |