示例#1
0
        /// <summary>
        /// 显示悬浮菜单
        /// </summary>
        public void showToolBar()
        {
#if UNITY_IPHONE
            if (!isSupportShowToolbar)
            {
                return;
            }
            AllSdkPlatform.sdkShowToolBar();
#endif
        }
示例#2
0
        /// <summary>
        /// 显示悬浮菜单
        /// </summary>
        public void showToolBar()
        {
                        #if UNITY_IPHONE
            if (!isSupportShowToolbar)
            {
                return;
            }

            string parameter = place + "";
            AllSdkPlatform.sdkShowToolBar(parameter);
                        #endif
        }
示例#3
0
 /// <summary>
 /// 显示悬浮菜单
 /// </summary>
 public void showToolBar()
 {
                 #if UNITY_IPHONE
     AllSdkPlatform.sdkShowToolBar();
                 #endif
 }