UnityEngine.WebCamTexture.Internal_CreateWebCamTexture C# (CSharp) Method

Internal_CreateWebCamTexture() private method

private Internal_CreateWebCamTexture ( [ self, string scriptingDevice, int requestedWidth, int requestedHeight, int maxFramerate ) : void
self [
scriptingDevice string
requestedWidth int
requestedHeight int
maxFramerate int
return void
        private static extern void Internal_CreateWebCamTexture([Writable] WebCamTexture self, string scriptingDevice, int requestedWidth, int requestedHeight, int maxFramerate);
        /// <summary>

Usage Example

コード例 #1
0
 public WebCamTexture(string deviceName, int requestedWidth, int requestedHeight)
 {
     WebCamTexture.Internal_CreateWebCamTexture(this, deviceName, requestedWidth, requestedHeight, 0);
 }
All Usage Examples Of UnityEngine.WebCamTexture::Internal_CreateWebCamTexture