FMOD Studio User Manual 2.02
Types:
Extension Methods:
The base class for an item container visible in browsers.
The root folder of a folder-structure containing assets.
See Also: model.Asset
Retrieves the item at the relative path specified.
Folder.getItem(
path
)
Returns the item at the relative path specified. Returns undefined if the item cannot be found.
Example:
var event = studio.project.workspace.masterEventFolder.getItem("sfx/explosion_event");
See Also: Folders
Retrieves the asset at the path specified.
MasterAssetFolder.getAsset(
path
)
Returns the model.Asset at the relative path specified. Returns undefined if the item cannot be found.
Example:
studio.project.workspace.masterAssetFolder.getAsset("music/level_01.wav");
See Also: The Assets Folder