diff --git a/Assets/Scripts.meta b/Assets/Scripts.meta new file mode 100644 index 0000000..d9f0d80 --- /dev/null +++ b/Assets/Scripts.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 09bfc74af9a5a11428d5fcb1b2ac8168 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/WebViewBrowser.cs b/Assets/Scripts/WebViewBrowser.cs new file mode 100644 index 0000000..13dcee6 --- /dev/null +++ b/Assets/Scripts/WebViewBrowser.cs @@ -0,0 +1,45 @@ +using Microsoft.MixedReality.WebView; +using UnityEngine.UI; +using UnityEngine; +using TMPro; +using System; + +public class WebViewBrowser : MonoBehaviour +{ + public Button BackButton; + public Button GoButton; + public TMP_InputField URLField; + + private void Start() + { + var webViewComponent = gameObject.GetComponent(); + webViewComponent.GetWebViewWhenReady((IWebView webView) => + { + if (webView is IWithBrowserHistory history) + { + BackButton.onClick.AddListener(() => history.GoBack()); + + history.CanGoBackUpdated += CanGoBack; + } + + GoButton.onClick.AddListener(() => webView.Load(new Uri(URLField.text))); + + webView.Navigated += OnNavigated; + + if (webView.Page != null) + { + URLField.text = webView.Page.AbsoluteUri; + } + }); + } + + private void OnNavigated(string path) + { + URLField.text = path; + } + + private void CanGoBack(bool value) + { + BackButton.enabled = value; + } +} \ No newline at end of file diff --git a/Assets/Scripts/WebViewBrowser.cs.meta b/Assets/Scripts/WebViewBrowser.cs.meta new file mode 100644 index 0000000..b228f05 --- /dev/null +++ b/Assets/Scripts/WebViewBrowser.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 54817b0d59467934792a72cfcacb1ba6 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: