top of page
- API -
objectList,numObjects = reaper.AZ_Wwise_GetSelectedObjectList()
- API Detail-
▼Input value
·none
▼Output value
objectList(ObjectArray): An array of selected object data.
- ID: ID of the object
- Name: Name of the object
- Type: Type of object
- Path: The path of the object.
- ParentID: ID of the parent object
- ParentName: Name of the parent object
numObjects(integer) : The number of elements in objectList
- SCRIPT -
dofile(reaper.AZ_GetLuaInitPath())
require("reaper_AZSTOKE_GOLD")
if (reaper.AZ_Wwise_Connect("127.0.0.1",8080)) then
objectList, numObjects = reaper.AZ_Wwise_GetSelectedObjectList()
Msg("SelectNum: "..numObjects)
for i, value in pairs(objectList) do
Msg("ID: "..value.ID)
Msg("Name: "..value.Name)
Msg("PrentID: "..value.ParentID)
Msg("Path: "..value.Path)
Msg("Type: "..value.Type)
end
reaper.AZ_Wwise_Disconnect()
end
Wwise
AZ_Wwise_GetSelectedObjectList
Supported versions:
1.0.3
onwards
Get all selected Wwise objects
bottom of page