WebCam Textures are textures onto which the live video input is rendered.
On Android, iOS, and WebGL platforms, WebCamTexture
requires the camera permission.
On Android, you can request it at runtime using the Permission API. For more information, refer to Request runtime permissions documentation.
On iOS and WebGL, you can request camera permission at runtime using Application.RequestUserAuthorization.
Note: On Android and iOS platforms, Unity doesn't support multiple WebCamTextures simultaneously.
The following code example demonstrates how to request the user for camera permission on iOS, Android, and WebGL platforms.
using UnityEngine; using System; using System.Collections; using UnityEngine; #if UNITY_ANDROID using UnityEngine.Android; #endif
public class WebCam : MonoBehaviour { #if UNITY_IOS || UNITY_WEBGL private bool CheckPermissionAndRaiseCallbackIfGranted(UserAuthorization authenticationType, Action authenticationGrantedAction) { if (Application.HasUserAuthorization(authenticationType)) { if (authenticationGrantedAction != null) authenticationGrantedAction();
return true; } return false; }
private IEnumerator AskForPermissionIfRequired(UserAuthorization authenticationType, Action authenticationGrantedAction) { if (!CheckPermissionAndRaiseCallbackIfGranted(authenticationType, authenticationGrantedAction)) { yield return Application.RequestUserAuthorization(authenticationType); if (!CheckPermissionAndRaiseCallbackIfGranted(authenticationType, authenticationGrantedAction)) Debug.LogWarning($"Permission {authenticationType} Denied"); } } #elif UNITY_ANDROID private void PermissionCallbacksPermissionGranted(string permissionName) { StartCoroutine(DelayedCameraInitialization()); }
private IEnumerator DelayedCameraInitialization() { yield return null; InitializeCamera(); }
private void PermissionCallbacksPermissionDenied(string permissionName) { Debug.LogWarning($"Permission {permissionName} Denied"); }
private void AskCameraPermission() { var callbacks = new PermissionCallbacks(); callbacks.PermissionDenied += PermissionCallbacksPermissionDenied; callbacks.PermissionGranted += PermissionCallbacksPermissionGranted; Permission.RequestUserPermission(Permission.Camera, callbacks); } #endif
void Start() { #if UNITY_IOS || UNITY_WEBGL StartCoroutine(AskForPermissionIfRequired(UserAuthorization.WebCam, () => { InitializeCamera(); })); return; #elif UNITY_ANDROID if (!Permission.HasUserAuthorizedPermission(Permission.Camera)) { AskCameraPermission(); return; } #endif InitializeCamera(); }
private void InitializeCamera() { WebCamTexture webcamTexture = new WebCamTexture(); Renderer renderer = GetComponent<Renderer>(); renderer.material.mainTexture = webcamTexture; webcamTexture.Play(); } }
devices | Return a list of available devices. |
autoFocusPoint | This property allows you to set/get the auto focus point of the camera. This works only on Android and iOS devices. |
deviceName | Set this to specify the name of the device to use. |
didUpdateThisFrame | Did the video buffer update this frame? |
isDepth | This property is true if the texture is based on depth data. |
isPlaying | Returns if the camera is currently playing. |
requestedFPS | Set the requested frame rate of the camera device (in frames per second). |
requestedHeight | Set the requested height of the camera device. |
requestedWidth | Set the requested width of the camera device. |
videoRotationAngle | Returns an clockwise angle (in degrees), which can be used to rotate a polygon so camera contents are shown in correct orientation. |
videoVerticallyMirrored | Returns if the texture image is vertically flipped. |
WebCamTexture | Create a WebCamTexture. |
GetPixel | Gets the pixel color at coordinates (x, y). |
GetPixels | Gets the pixel color data for a mipmap level as Color structs. |
GetPixels32 | Gets the pixel color data for a mipmap level as Color32 structs. |
Pause | Pauses the camera. |
Play | Starts the camera. |
Stop | Stops the camera. |
allowThreadedTextureCreation | Allow Unity internals to perform Texture creation on any thread (rather than the dedicated render thread). |
currentTextureMemory | The amount of memory that all Textures in the scene use. |
desiredTextureMemory | The total size of the Textures, in bytes, that Unity loads if there were no other constraints. Before Unity loads any Textures, it applies the memory budget which reduces the loaded Texture resolution if the Texture sizes exceed its value. The desiredTextureMemory value takes into account the mipmap levels that Unity has requested or that you have set manually.For example, if Unity does not load a Texture at full resolution because it is far away or its requested mipmap level is greater than 0, Unity reduces the desiredTextureMemory value to match the total memory needed.The desiredTextureMemory value can be greater than the Texture.targetTextureMemory value. |
GenerateAllMips | Can be used with Texture constructors that take a mip count to indicate that all mips should be generated. The value of this field is -1. |
nonStreamingTextureCount | The number of non-streaming Textures in the scene. This includes instances of Texture2D and CubeMap Textures. This does not include any other Texture types, or 2D and CubeMap Textures that Unity creates internally. |
nonStreamingTextureMemory | The amount of memory Unity allocates for non-streaming Textures in the scene. This only includes instances of Texture2D and CubeMap Textures. This does not include any other Texture types, or 2D and CubeMap Textures that Unity creates internally. |
streamingMipmapUploadCount | How many times has a Texture been uploaded due to Texture mipmap streaming. |
streamingRendererCount | Number of renderers registered with the Texture streaming system. |
streamingTextureCount | Number of streaming Textures. |
streamingTextureDiscardUnusedMips | This property forces the streaming Texture system to discard all unused mipmaps instead of caching them until the Texture memory budget is exceeded. This is useful when you profile or write tests to keep a predictable set of Textures in memory. |
streamingTextureForceLoadAll | Force streaming Textures to load all mipmap levels. |
streamingTextureLoadingCount | Number of streaming Textures with mipmaps currently loading. |
streamingTexturePendingLoadCount | Number of streaming Textures with outstanding mipmaps to be loaded. |
targetTextureMemory | The total amount of Texture memory that Unity allocates to the Textures in the scene after it applies the memory budget and finishes loading Textures. `targetTextureMemory`also takes mipmap streaming settings into account. This value only includes instances of Texture2D and CubeMap Textures. This value does not include any other Texture types, or 2D and CubeMap Textures that Unity creates internally. |
totalTextureMemory | The total amount of Texture memory that Unity would use if it loads all Textures at mipmap level 0.This is a theoretical value that does not take into account any input from the streaming system or any other input, for example when you set the`Texture2D.requestedMipmapLevel` manually.To see a Texture memory value that takes inputs into account, use `desiredTextureMemory`.`totalTextureMemory` only includes instances of Texture2D and CubeMap Textures. This value does not include any other Texture types, or 2D and CubeMap Textures that Unity creates internally. |
hideFlags | Should the object be hidden, saved with the Scene or modifiable by the user? |
name | The name of the object. |
anisoLevel | Defines the anisotropic filtering level of the Texture. |
dimension | Dimensionality (type) of the Texture (Read Only). |
filterMode | Filtering mode of the Texture. |
graphicsFormat | Returns the GraphicsFormat format or color format of a Texture object. |
graphicsTexture | GraphicsTexture that represents the texture resource uploaded to the graphics device (Read Only). |
height | Height of the Texture in pixels (Read Only). |
imageContentsHash | The hash value of the Texture. |
isDataSRGB | Returns true if the texture pixel data is in sRGB color space (Read Only). |
isReadable | Whether Unity stores an additional copy of this texture's pixel data in CPU-addressable memory. |
mipMapBias | The mipmap bias of the Texture. |
mipmapCount | How many mipmap levels are in this Texture (Read Only). |
updateCount | This counter is incremented when the Texture is updated. |
width | Width of the Texture in pixels (Read Only). |
wrapMode | Texture coordinate wrapping mode. |
wrapModeU | Texture U coordinate wrapping mode. |
wrapModeV | Texture V coordinate wrapping mode. |
wrapModeW | Texture W coordinate wrapping mode for Texture3D. |
GetInstanceID | Gets the instance ID of the object. |
ToString | Returns the name of the object. |
GetNativeTexturePtr | Retrieve a native (underlying graphics API) pointer to the Texture resource. |
IncrementUpdateCount | Increment the update counter. |
Destroy | Removes a GameObject, component or asset. |
DestroyImmediate | Destroys the object obj immediately. You are strongly recommended to use Destroy instead. |
DontDestroyOnLoad | Do not destroy the target Object when loading a new Scene. |
FindAnyObjectByType | Retrieves any active loaded object of Type type. |
FindFirstObjectByType | Retrieves the first active loaded object of Type type. |
FindObjectsByType | Retrieves a list of all loaded objects of Type type. |
Instantiate | Clones the object original and returns the clone. |
InstantiateAsync | Captures a snapshot of the original object (that must be related to some GameObject) and returns the AsyncInstantiateOperation. |
SetGlobalAnisotropicFilteringLimits | Sets Anisotropic limits. |
SetStreamingTextureMaterialDebugProperties | This function sets mipmap streaming debug properties on all materials known by the mipmap streaming system. |
bool | Does the object exist? |
operator != | Compares if two objects refer to a different object. |
operator == | Compares two object references to see if they refer to the same object. |