// Copyright (c) 2025 Vuplex Inc. All rights reserved. // // Licensed under the Vuplex Commercial Software Library License, you may // not use this file except in compliance with the License. You may obtain // a copy of the License at // // https://vuplex.com/commercial-library-license // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. using UnityEngine; using Vuplex.WebView; namespace Vuplex.Demos { /// /// Provides a simple example of using 3D WebView's scripting APIs. /// /// /// Links:
/// - WebViewPrefab docs: https://developer.vuplex.com/webview/WebViewPrefab
/// - How clicking works: https://support.vuplex.com/articles/clicking
/// - Other examples: https://developer.vuplex.com/webview/overview#examples
///
class SimpleWebViewDemo : MonoBehaviour { WebViewPrefab webViewPrefab; async void Start() { // Use a desktop User-Agent to request the desktop versions of websites. // https://developer.vuplex.com/webview/Web#SetUserAgent Web.SetUserAgent(false); // Get a reference to the WebViewPrefab. // https://support.vuplex.com/articles/how-to-reference-a-webview webViewPrefab = GameObject.Find("WebViewPrefab").GetComponent(); // Wait for the prefab to initialize because its WebView property is null until then. // https://developer.vuplex.com/webview/WebViewPrefab#WaitUntilInitialized await webViewPrefab.WaitUntilInitialized(); // After the prefab has initialized, you can use the IWebView APIs via its WebView property. // https://developer.vuplex.com/webview/IWebView webViewPrefab.WebView.UrlChanged += (sender, eventArgs) => { Debug.Log("[SimpleWebViewDemo] URL changed: " + eventArgs.Url); }; } } }