Skip to content

Instantly share code, notes, and snippets.

@decasteljau
Created November 30, 2018 14:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save decasteljau/b277cb9fdb1503f3369a5f66782cf148 to your computer and use it in GitHub Desktop.
Save decasteljau/b277cb9fdb1503f3369a5f66782cf148 to your computer and use it in GitHub Desktop.
from waapi import WaapiClient, CannotConnectToWaapiException
from pprint import pprint
try:
# Connecting to Waapi using default URL
with WaapiClient() as client:
# Simple RPC
args = {
"object": "\\Actor-Mixer Hierarchy\\Default Work Unit\\Sequence",
"property": "MidiVelocityFilterMin",
"value":"9"
}
result = client.call("ak.wwise.core.object.setProperty", args)
pprint(result)
except CannotConnectToWaapiException:
print("Could not connect to Waapi: Is Wwise running and Wwise Authoring API enabled?")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment