2017.2.1 • Published 6 years ago

waapi-client v2017.2.1

Weekly downloads
8
License
Apache-2.0
Repository
-
Last release
6 years ago

Wwise Authoring API Client

To use waapi client in a Node.js project:

npm install waapi-client --save

waapi-client is normally used in conjunction with waapi module:

npm install waapi --save

waapi-client also comes with TypeScript definitions.

Example

This example is a Node.js TypeScript example using ES2015 js target.

import * as waapi from 'waapi-client';
import {ak} from 'waapi';

async function main() {
    try {
        var session = await waapi.connect('ws://localhost:8080/waapi');

        var wwiseInfo = await session.call(ak.wwise.core.getInfo, {});
        console.log(`Connected to ${wwiseInfo.displayName} ${wwiseInfo.version.displayName}!`);
    }
    catch(e){
        console.log(`exception: ${JSON.stringify(e,null,4)}`);
    }
}

main();

Refer to hello-wwise on GitHub for a more complete example.

2017.2.1

6 years ago

2017.2.0

6 years ago

2017.1.1

7 years ago

2017.1.0

7 years ago