Add Scripts
This commit is contained in:
parent
fc0151176a
commit
caae3013a8
|
@ -0,0 +1,8 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 09bfc74af9a5a11428d5fcb1b2ac8168
|
||||||
|
folderAsset: yes
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
|
@ -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<WebView>();
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,11 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 54817b0d59467934792a72cfcacb1ba6
|
||||||
|
MonoImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 2
|
||||||
|
defaultReferences: []
|
||||||
|
executionOrder: 0
|
||||||
|
icon: {instanceID: 0}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
Loading…
Reference in New Issue