Audiokinetic's Community Q&A is the forum where users can ask and answer questions within the Wwise and Strata communities. If you would like to get an answer from Audiokinetic's Technical support team, make sure you use the Support Tickets page.

0 votes

Hello, 
i am having difficulties making a ak.wwise.core.sourceControl.getStatus call. If i set the options to null it wont throw but thats somehow pointless, because Im not gaining any infos. 
Im currently doing the below, but I cant seem to get the options shema right. Any help appreciated. 
Kind regards 

JObject argument = new JObject(
    new JProperty("files",
        new JArray(
            new string[] { path }))
);

JObject options = new JObject(
    new JProperty("result",
        new string[]{"status"}),
    new JProperty("log", new JObject[]{}));

var result = await _waapiClient.Call(ak.wwise.core.sourceControl.getStatus, argument, options);
in General Discussion by Jonas K. (100 points)

Please sign-in or register to answer this question.

...