Description
The Soundscape
property of the Editor.AssetType
class represents a soundscape asset type within the editor. A soundscape is typically used to define a complex audio environment, often consisting of multiple sound sources and effects that create an immersive auditory experience.
Usage
Use the Soundscape
property to access the soundscape asset type when working with assets in the editor. This can be useful for categorizing, filtering, or loading soundscape assets within your project.
Example
// Example of accessing the Soundscape asset type
Editor.AssetType soundscapeType = Editor.AssetType.Soundscape;
// Use the soundscapeType in your asset management logic
if (soundscapeType != null)
{
// Perform operations with the soundscape asset type
// For example, loading or categorizing soundscape assets
}