Stage::addSound()
Adds a new sound.
Examples

import org.openpatch.scratch.*;
public class StageAddSound {
public StageAddSound() {
Stage myStage = new Stage(254, 100);
myStage.addSound("bump", "assets/bump.wav");
Window.getInstance().exit();
}
public static void main(String[] args) {
new StageAddSound();
}
}
Syntax
Java
.addSound(name, filePath)
Scratch
Parameters
Name | Data Type | Description |
---|---|---|
name | String | The name of the sound |
filePath | String | The file path of the sound file |
Return
void