Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 716 Bytes

README.md

File metadata and controls

15 lines (9 loc) · 716 Bytes

Leveraging the Azure Cloud Services in Unity3D and WebAssembly

This repo has code examples from the January 2018 presentation at the Jaxnode user group. The webassembly examples are under the wasm directory. The following web urls can be used to reference the different resources used in the demo.

Unity3D demo/

WasmExplorer/

Unreal engine Zen Garden example

You can load the wasm file using the following JavaScript code;

fetch('http://localhost:5000/wasm/test.wasm').then(res => res.arrayBuffer()).then(buf => WebAssembly.instantiate(buf));