UniWebView is a modern web view component for mobile Unity3D games. Integrating web content into your games was never easier.

Get Started → API Reference

Functionality

Supporting a full set of general web tasks. Including browsing pages, playing videos, interacting, OAuth 2.0 and more.

Modern & Fast

Built on modern Unity, native and web technology. Much smaller memory footprint and better performance.

Brilliant API

Well-designed APIs and documentation. Made by developers, for developers. Easy for both using and extending.

As Easy as 1, 2, 3

// 1. Add a full-screen UniWebView component.
var webView = gameObject.AddComponent<UniWebView>();
webView.Frame = new Rect(0, 0, Screen.width, Screen.height);

// 2. Load a URL.
webView.Load("https://uniwebview.com");

// 3. Show it. 🎉
webView.Show();