abstract class Audio
<init> |
Audio(filePath: String, streaming: Boolean = false) |
filePath |
val filePath: String |
streaming |
val streaming: Boolean |
play |
suspend fun play(playbackTimes: PlaybackTimes = 1.playbackTimes): NativeSoundChannel suspend fun play(times: Int): NativeSoundChannel |
stop |
fun stop(): Unit |
Music |
Spielt Musik aus der Datei filePath ab. Unterstützt werden WAV und MP3 Dateien class Music : Audio |
Sound |
Spielt einen Sound aus der Datei filePath ab. Unterstützt werden WAV und MP3 Dateien class Sound : Audio |