Skip to content

Latest commit

 

History

History

docs

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
home heroImage actions heroText tagline features footer
true
/images/hero.png
text link type
Get Started →
/guide/
primary
text link type
API Reference
/api/
secondary
UniWebView is a modern web view component for mobile Unity3D games. Integrating web content into your games was never easier.
title details
Functionality
Supporting a full set of general web tasks. Including browsing pages, playing videos, interacting, OAuth 2.0 and more.
title details
Modern & Fast
Built on modern Unity, native and web technology. Much smaller memory footprint and better performance.
title details
Brilliant API
Well-designed APIs and documentation. Made by developers, for developers. Easy for both using and extending.
Copyright © 2016-present OneV's Den (@onevcat)

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();