プロジェクトの初期化
| 注釈: Python Waapi-Clientは、Python 3.7+と合わせて使用することを前提としています。 |
依存関係をインストールするには、任意のディレクトリから次のコマンドを実行します。
# Windows
py -3 -m pip install waapi-client
# macOS, Linux
python3 -m pip install waapi-client
プロジェクトコード
このファイルには、Wwise Authoring APIに接続できる次のコードが含まれています。
from waapi import WaapiClient, CannotConnectToWaapiException
from pprint import pprint
try:
with WaapiClient() as client:
print("Getting Wwise instance information:")
result = client.call("ak.wwise.core.getInfo")
pprint(result)
print("Query the Default Work Unit information:")
object_get_args = {
"from": {
"path": ["\\Actor-Mixer Hierarchy\\Default Work Unit"]
},
"options": {
"return": ["id", "name", "type"]
}
}
result = client.call("ak.wwise.core.object.get", object_get_args)
pprint(result)
except CannotConnectToWaapiException:
print("Could not connect to Waapi: Is Wwise running and Wwise Authoring API enabled?")
プロジェクトの実行
Wwiseでプロジェクトを1つ開き、以下のコマンドで、スクリプトを端末で実行します。
# Windows
py rpc.py
# macOS, Linux
python3 rpc.py
アウトプットに以下のようなものがあるはずです:
Getting Wwise instance information:
[Wwise Information Dictionary dump]
Query the Default Work Unit information:
{'return': [{'id': '{CDF62889-48AA-436C-B7DD-5B6B1DF5050D}',
'name': 'Default Work Unit',
'type': 'WorkUnit'}]}