ActiveTextureManagement.TexInfo.TexInfo C# (CSharp) Method

TexInfo() public method

public TexInfo ( UrlDir file ) : System
file UrlDir
return System
        public TexInfo(UrlDir.UrlFile file)
        {
            this.file = file;
            this.name = file.url;
            this.isNormalMap = DatabaseLoaderTexture_ATM.IsNormal(name);
            this.width = 1;
            this.height = 1;
            loadOriginalFirst = false;
            needsResize = false;
            makeNotReadable = true;
        }