is_wwise_property_enabled
Check if a Wwise object property is enabled on a given platform. Returns true if active, false if overridden or unavailable.
Instructions
Check if a property is enabled on a Wwise object for a given platform.
A property can be disabled when it's overridden by a parent or not applicable on a specific platform. All three arguments (object, property, platform) are required.
Args: property_name: The property to check. e.g. "Volume", "Pitch", "Lowpass" platform: Platform name or GUID. e.g. "Windows", "Mac", "iOS", "Android", "PS5", "XboxSeriesX" or a GUID "{aabbcc00-1122-3344-5566-77889900aabb}" object_path: Project path. e.g. "\Containers\Default Work Unit\Footstep" object_guid: GUID. e.g. "{aabbcc00-1122-3344-5566-77889900aabb}" object_name_with_type: type:name. e.g. "Sound:Footstep_Walk"
Provide exactly one of object_path, object_guid, or object_name_with_type.
Returns {"return": true} if the property is enabled, or {"return": false} if the property is disabled.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| property_name | Yes | ||
| platform | Yes | ||
| object_path | No | ||
| object_guid | No | ||
| object_name_with_type | No |