public override void SetControlType(eWebviewControlType _type, WebView _webview)
        {
            base.SetControlType(_type, _webview);

            // Native call
            webviewSetControlType((int)_type, _webview.UniqueID);
        }
Beispiel #2
0
        public override void SetControlType(eWebviewControlType _type, WebView _webview)
        {
            base.SetControlType(_type, _webview);

            // Feature isnt supported
            Console.LogError(Constants.kDebugTag, Constants.kErrorMessage);
        }
        public override void SetControlType(eWebviewControlType _type, WebView _webview)
        {
            base.SetControlType(_type, _webview);

            // Native call
            Plugin.Call(NativeInfo.Methods.SET_CONTROL_TYPE, ControlTypes[_type], _webview.UniqueID);
        }
 public void SetControlType(string _tag, eWebviewControlType _type)
 {
     DebugUtility.Logger.LogWarning(Constants.kDebugTag, Constants.kNotSupportedInEditor);
 }
Beispiel #5
0
 public override void Reset()
 {
     // Setup properties
     gameObject  = null;
     controlType = eWebviewControlType.CLOSE_BUTTON;
 }
 public void SetControlType(string _tag, eWebviewControlType _type)
 {
     Plugin.Call(NativeInfo.Methods.SET_CONTROL_TYPE, ControlTypes[_type], _tag);
 }
Beispiel #7
0
 public virtual void SetControlType(eWebviewControlType _type, WebView _webview)
 {
 }
		public override void SetControlType (eWebviewControlType _type, WebView _webview) 
		{
			base.SetControlType(_type, _webview);
			
			// Feature isnt supported
			Console.LogError(Constants.kDebugTag, Constants.kFeatureNotSupported);
		}
		public override void SetControlType (eWebviewControlType _type, WebView _webview) 
		{
			base.SetControlType(_type, _webview);

			// Native call
			webviewSetControlType((int)_type, _webview.UniqueID);
		}
		public override void SetControlType (eWebviewControlType _type, WebView _webview) 
		{
			base.SetControlType(_type, _webview);

			// Native call
			Plugin.Call(NativeInfo.Methods.SET_CONTROL_TYPE, ControlTypes[_type], _webview.UniqueID);
		}
 public void changeViewControls(eWebviewControlType control)
 {
     displayWebView.ControlType = control;
 }
		public virtual void SetControlType (eWebviewControlType _type, WebView _webview) 
		{}
Beispiel #13
0
 public void SetControlType(string _tag, eWebviewControlType _type)
 {
     webviewSetControlType((int)_type, _tag);
 }
        public void SetControlType(string _tag, eWebviewControlType _type)
        {
#if NP_DEBUG
            Debug.LogWarning(Constants.kNotSupportedInEditor);
#endif
        }