Unity3Dwinform嵌套,替换logo
Posted 风雨丛中住着一只南飞的雁,
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Unity3Dwinform嵌套,替换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--; } }
以上是关于Unity3Dwinform嵌套,替换logo的主要内容,如果未能解决你的问题,请参考以下文章