is_wwise_property_linked
Check if a property on a Wwise object is linked across platforms or has a platform-specific override.
Instructions
Check if a property on a Wwise object is linked (shared across all platforms) or unlinked (has platform-specific values).
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 to check against. e.g. "Windows", "Mac", "iOS", "Android", "PS5", "XboxSeriesX" or a platform 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 {"linked": true} if the property is linked (shared across platforms), or {"linked": false} if it has a platform-specific override for the given platform.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| property_name | Yes | ||
| platform | Yes | ||
| object_path | No | ||
| object_guid | No | ||
| object_name_with_type | No |