You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The function ak.wwise.core.object.set has the parameter operations: ListOrTuple[dict[str, _Any]], which essentially takes a collection of "operations", where each "operation" is a dictionary. If possible, we should re-implement or enhance the currently implementation of set so it doesn't rely so much on dictionaries.
Example 1 (Simple):
{
"object": "\\Actor-Mixer Hierarchy\\Default Work Unit\\MySound",
"name": "MyCoolSound",
"notes": "Sound object modified by a Python script.",
"@Volume": -6.0,
"@OutputBus": "\\Master-Mixer Hierarchy\\Default Work Unit\\Master\\Sfx\\Environment"
}
To the end-user, that adds the overhead of having to know Wwise and WAAPI really well. Although that is not a problem, having a more object-oriented, Pythonic implementation would be preferred. In other words, it would be nice to avoid the need for complex dictionaries.
The text was updated successfully, but these errors were encountered:
The function
ak.wwise.core.object.set
has the parameteroperations: ListOrTuple[dict[str, _Any]]
, which essentially takes a collection of "operations", where each "operation" is a dictionary. If possible, we should re-implement or enhance the currently implementation ofset
so it doesn't rely so much on dictionaries.Example 1 (Simple):
Example 2 (Complex):
To the end-user, that adds the overhead of having to know Wwise and WAAPI really well. Although that is not a problem, having a more object-oriented, Pythonic implementation would be preferred. In other words, it would be nice to avoid the need for complex dictionaries.
The text was updated successfully, but these errors were encountered: