UnityEditor.WebCamTextureInspector.GetInfoString C# (CSharp) Method

GetInfoString() public method

public GetInfoString ( ) : string
return string
        public override string GetInfoString()
        {
            Texture target = base.target as Texture;
            string str = target.width.ToString() + "x" + target.height.ToString();
            TextureFormat textureFormat = TextureUtil.GetTextureFormat(target);
            return (str + "  " + TextureUtil.GetTextureFormatString(textureFormat));
        }