Importing the class

Link to importing-the-class

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
Copy
import crafttweaker.api.sound.SoundType;

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();
NameTypeHas GetterHas SetterDescription
Name
breakSound
Type
SoundEvent
Has Getter
true
Has Setter
false
Description
No Description Provided
Name
fallSound
Type
SoundEvent
Has Getter
true
Has Setter
false
Description
No Description Provided
Name
hitSound
Type
SoundEvent
Has Getter
true
Has Setter
false
Description
No Description Provided
Name
pitch
Type
float
Has Getter
true
Has Setter
false
Description
No Description Provided
Name
placeSound
Type
SoundEvent
Has Getter
true
Has Setter
false
Description
No Description Provided
Name
stepSound
Type
SoundEvent
Has Getter
true
Has Setter
false
Description
No Description Provided
Name
volume
Type
float
Has Getter
true
Has Setter
false
Description
No Description Provided