SoundType
Link to soundtype
Импорт класса
Link to импорт-класса
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;
Методы
Link to методы
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();
Свойства
Link to свойства
Название | Тип | Имеет Getter | Имеет Setter |
---|---|---|---|
Название breakSound | Тип SoundEvent | Имеет Getter true | Имеет Setter false |
Название fallSound | Тип SoundEvent | Имеет Getter true | Имеет Setter false |
Название hitSound | Тип SoundEvent | Имеет Getter true | Имеет Setter false |
Название pitch | Тип float | Имеет Getter true | Имеет Setter false |
Название placeSound | Тип SoundEvent | Имеет Getter true | Имеет Setter false |
Название stepSound | Тип SoundEvent | Имеет Getter true | Имеет Setter false |
Название volume | Тип float | Имеет Getter true | Имеет Setter false |