Add Scripts

This commit is contained in:
Santiago Lo Coco 2024-10-13 14:38:00 +02:00
parent fc0151176a
commit caae3013a8
3 changed files with 64 additions and 0 deletions

8
Assets/Scripts.meta Normal file
View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 09bfc74af9a5a11428d5fcb1b2ac8168
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -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;
}
}

View File

@ -0,0 +1,11 @@
fileFormatVersion: 2
guid: 54817b0d59467934792a72cfcacb1ba6
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant: