get_wwise_property_info
Retrieve property details like type, min, max, and default for a Wwise object to validate values before setting them.
Instructions
Get detailed info about a specific property on a Wwise object (type, min, max, default).
Use get_property_and_reference_names first to discover valid property names. Use this to validate values before calling setProperty.
Args: property_name: The property name to get info for. e.g. "Volume", "Pitch", "Lowpass", "IsLoopingEnabled" object_path: Project path to the object. e.g. "\Containers\Default Work Unit\Footstep" object_guid: GUID of the object. e.g. "{aabbcc00-1122-3344-5566-77889900aabb}" object_name_with_type: Name qualified by type or short ID. e.g. "Sound:Footstep_Walk", "Event:Play_Sound_01", "Global:245489792" class_id: Class ID (unsigned 32-bit integer) as an alternative to object.
Provide property_name plus one of object_path, object_guid, object_name_with_type, or class_id.
Returns the property's type, default value, min/max range, and display name.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| property_name | Yes | ||
| object_path | No | ||
| object_guid | No | ||
| object_name_with_type | No | ||
| class_id | No |