UnityEditor.WebCamTextureInspector.GetInfoString C# (CSharp) 메소드

GetInfoString() 공개 메소드

public GetInfoString ( ) : string
리턴 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));
        }