home | heroImage | actions | heroText | tagline | features | footer | |||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
true |
/images/hero.png |
|
UniWebView is a modern web view component for mobile Unity3D games. Integrating web content into your games was never easier. |
|
Copyright © 2016-present OneV's Den (@onevcat) |
// 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();