首页 > 代码库 > 【Unity3D】winform嵌套,替换logo
【Unity3D】winform嵌套,替换logo
http://blog.csdn.net/xxdddail/article/details/49890643
1、_axUnityWebPlayer_OnExternalCall
void _axUnityWebPlayer_OnExternalCall(object sender, AxUnityWebPlayerAXLib._DUnityWebPlayerAXEvents_OnExternalCallEvent e) { if (e.value.StartsWith("LOAD_COMPLETE")) { if (!_axUnityWebPlayer.Visible) { _axUnityWebPlayer.Width = this.Width; _axUnityWebPlayer.Height = this.Height; _axUnityWebPlayer.Show(); HideProgressBar(); } } OnUnityCall(sender, e); }
2、OnGUI 函数
int _notifyTimeAfterLoadComplete = 3; void OnGUI() { if (_notifyTimeAfterLoadComplete>0) { Application.ExternalCall("LOAD_COMPLETE", ""); _notifyTimeAfterLoadComplete--; } }
【Unity3D】winform嵌套,替换logo
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。