- 最后登录
- 2019-12-2
- 注册时间
- 2012-8-25
- 阅读权限
- 90
- 积分
- 34660
- 纳金币
- 38268
- 精华
- 111
|
- //JS调用DLL实例
-
- import System;
-
- import System.Runtime.Interopservices;
-
- @DllImport(“user32.dll”)
-
- public static function MessageBox(Hwnd : int,text : String,Caption : String,iType : int) : int {};
- //unity3d教程手册:www.unitymanual.com
- function Start()
-
- {
-
- MessageBox(0, “API Message Box”, “Win32 API”, 64) ;
-
- }
-
- function Update () {
-
- }
-
复制代码 * 版权声明:转载时请以超链接形式标明文章原始出处和作者信息
* 本文来自:Unity3D教程手册
* 本文链接:http://www.unitymanual.com/6853.html
|
|