js要怎么在u3d中使用

2024-11-21 22:39:24
推荐回答(1个)
回答(1):

代码如下:

JavaScript code?

#pragma strict

import System;
import System.Runtime.InteropServices;
import dLLTest; //需要测试的dll文件的命名空间
function Start () {}
function Update () {}
function OnGUI(){
GUI.Label(Rect(10,10,200,50),"i="+Add(3,4)); //Add函数原型为int Add(int a,int b),为dll文件中的函数
}
@DllImport("dlltest") //需要测试的dll文件名称,文件原本带.dll后缀,但是网上查的一些例子都木有带,所以这里也木有带public static function Add(x:int,y:int):int{};