SoundType
Link to soundtype
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.sound.SoundType;
Metodi
Link to metodi
Name: getBreakSound
Return Type: SoundEvent
ZenScript Copy// SoundType.getBreakSound() as SoundEvent
mySoundType.getBreakSound();
Name: getFallSound
Return Type: SoundEvent
ZenScript Copy// SoundType.getFallSound() as SoundEvent
mySoundType.getFallSound();
Name: getHitSound
Return Type: SoundEvent
ZenScript Copy// SoundType.getHitSound() as SoundEvent
mySoundType.getHitSound();
Name: getPitch
Return Type: float
ZenScript Copy// SoundType.getPitch() as float
mySoundType.getPitch();
Name: getPlaceSound
Return Type: SoundEvent
ZenScript Copy// SoundType.getPlaceSound() as SoundEvent
mySoundType.getPlaceSound();
Name: getStepSound
Return Type: SoundEvent
ZenScript Copy// SoundType.getStepSound() as SoundEvent
mySoundType.getStepSound();
Name: getVolume
Return Type: float
ZenScript Copy// SoundType.getVolume() as float
mySoundType.getVolume();
Proprietà
Link to proprietà
Nome | Tipo | Ha Getter | Ha Setter | Descrizione |
---|---|---|---|---|
Nome breakSound | Tipo SoundEvent | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome fallSound | Tipo SoundEvent | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome hitSound | Tipo SoundEvent | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome pitch | Tipo float | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome placeSound | Tipo SoundEvent | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome stepSound | Tipo SoundEvent | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome volume | Tipo float | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |