|
Wwise SDK 2025.1.3
|
◆ AK_CommandBuffer_Next()
Function to iterate over the next command in the buffer. A loop going over all commands in a buffer would be structured as follows: struct AkCommandBufferIterator it;
AK_CommandBuffer_Begin(buffer, &it);
while (AK_CommandBuffer_Next(&it)) {
printf("Command ID: %d; Command payload: %p\n", it.header->cmd, it.payload);
}
|