Answers for "modify web page from unity from code"

0

modify web page from unity from code

Application.ExternalCall( "SayHello", "The game says hello!" );
Posted by: Guest on July-06-2020
0

modify web page from unity from code

<script type="text/javascript" language="javascript">
<!--
function SayHello( arg )
{
    // show the message
    alert( arg );
}
-->
</script>
Posted by: Guest on July-06-2020

Browse Popular Code Answers by Language