码迷,mamicode.com
首页 > 编程语言 > 详细

【Unity3D】winform嵌套,替换logo

时间:2017-06-19 15:18:16      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:time   UI   unit   res   width   dai   cat   with   layer   

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

标签:time   UI   unit   res   width   dai   cat   with   layer   

原文地址:http://www.cnblogs.com/oiliu/p/7048598.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!