What is a function similar to the AudioClip of Unity3D in FMOD.

I want to Load a stream file of music.And now i was confuse about haw to load it by FMOD.
Thanks!

If you just want to load a file from disk, you will need to make your own class/script to handle it. We only include a class that that handles playing events made in FMOD Studio.

Depending on what you need it to do, it could be a fairly small script.
For a simple sound, you can use the LowLevel API to create and handle the starting/stopping. You can access the LowLevel API from the Studio System, or the RuntimeManager in Unity.

https://fmod.com/resources/documentation-api?page=content/generated/FMOD_System_CreateStream.html#/

1 Like