- Home /
Question by
Beennn · Jun 01, 2015 at 05:35 AM ·
javascriptwebgl
ReferenceError: Call is not defined
I get 'ReferenceError: Call is not defined' when executing the following on a WebGL build (no errors when built as a WebPlayer):
string ip;
Application.ExternalCall("Call", ip);
In the body of the generated template page:
<script>
function Call(ip) {
// ...
}
</script>
Comment