I just have 2 files :
********************Assets/Plugins/WebGL/MyPlugin.jslib :
mergeInto(LibraryManager.library, {
Hello: function () {
window.alert(“Hello, world!”);
},
HelloString: function (str) {
window.alert(Pointer_stringify(str));
},
PrintFloatArray: function (array, size) {
for(var i = 0; i < size; i++)
console.log(HEAPF32[(array >> 2) + size]);
},
AddNumbers: function (x, y) {
return x + y;
},
StringReturnValueFunction: function () {
var returnStr = “bla”;
var buffer = _malloc(lengthBytesUTF8(returnStr) + 1);
writeStringToMemory(returnStr, buffer);
return buffer;
},
BindWebGLTexture: function (texture) {
GLctx.bindTexture(GLctx.TEXTURE_2D, GL.textures[texture]);
},
});
********************Assets/ MainScript.cs :
using UnityEngine;
using System.Runtime.InteropServices;
public class MainScript : MonoBehaviour {
public GameObject cube;
public Vector3 currentPos;
[DllImport(“__Internal”)]
private static extern void Hello();
[DllImport(“__Internal”)]
private static extern void HelloString(string str);
[DllImport(“__Internal”)]
private static extern void PrintFloatArray(float[ ] array, int size);
[DllImport(“__Internal”)]
private static extern int AddNumbers(int x, int y);
[DllImport(“__Internal”)]
private static extern string StringReturnValueFunction();
[DllImport(“__Internal”)]
private static extern void BindWebGLTexture(int texture);
void Start() {
Hello();
HelloString(“This is a string.”);
float[ ] myArray = new float[10];
PrintFloatArray(myArray, myArray.Length);
int result = AddNumbers(5, 7);
Debug.Log(result);
Debug.Log(StringReturnValueFunction());
var texture = new Texture2D(0, 0, TextureFormat.ARGB32, false);
BindWebGLTexture(texture.GetNativeTextureID());
}
}