首页 前端知识 【Unity Html5 交互】记录一下Unity2021版本 Webgl 和 客户端的交互

【Unity Html5 交互】记录一下Unity2021版本 Webgl 和 客户端的交互

2024-08-19 22:08:16 前端知识 前端哥 508 247 我要收藏

最近需要实现Webgl和Unity客户端的交互

搜了半天资料发现他们的代码根本和Unity现在打包出来的的instance对不上

所以在此记录一下我是如何解决的

首先你需要在Unity

Plugins/ 目录下新建一个txt脚本 然后把脚本后缀改成jslib

然后一下是脚本内容

mergeInto(LibraryManager.library, {
  Html那边的方法名字(如: Test  ): function(){  
  Test();          
  },
这里是例子
  Test: function(){  
  Test();          
  },
});

接下来你需要写在Unity里写一个脚本

一下是代码

public class JiaohuKongzhi : MonoBehaviour
{
    public static JiaohuKongzhi instance;
    private void Awake()
    {
      
        instance = this;
        DontDestroyOnLoad(this);
    }
    // Start is called before the first frame update
    void Start()
    {
       Test();
    }
    // Update is called once per frame
    void Update()
    {
        
转载请注明出处或者链接地址:https://www.qianduange.cn//article/16223.html
评论
发布的文章

php保存

2024-08-27 16:08:00

jQuery NiceScroll 插件

2024-08-27 09:08:49

vue echart4.0 按需引入

2024-08-27 09:08:28

Taro3 Vue3使用echarts

2024-08-27 09:08:49

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!