Home Getting Started With Scripts Commands Examples
BracketDumpers BracketHandlers BracketValidators

SoundSource

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.

script.zs
import crafttweaker.api.sound.SoundSource;

Enum Constants

SoundSource is an enum. It has 10 enum constants. They are accessible using the code below.

script.zs
SoundSource.MASTER
SoundSource.MUSIC
SoundSource.RECORDS
SoundSource.WEATHER
SoundSource.BLOCKS
SoundSource.HOSTILE
SoundSource.NEUTRAL
SoundSource.PLAYERS
SoundSource.AMBIENT
SoundSource.VOICE

Methods

Return Type: string

script.zs
// SoundSource.getName() as string
mySoundSource.getName();

Properties

NameTypeHas GetterHas SetterDescription
Name
name
Type
string
Has Getter
true
Has Setter
false
Description
No Description Provided