Removed in version 2017.2.0p4
Suggest a change
Success!
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
Close
Submission failed
For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.
Close
Obsolete public static
var isWebPlayer: bool;
Obsolete public static bool isWebPlayer;
Description
Are we running inside a web player? (Read Only)
Returns true if the game is being run from the Unity web player.
if (Application.isWebPlayer) {
print("We are running this from inside of the web player!");
}
using UnityEngine;
using System.Collections;
public class ExampleClass : MonoBehaviour {
void Example() {
if (Application.isWebPlayer)
print("We are running this from inside of the web player!");
}
}
Note that webplayer support was not continued from 5.4.0.