FireflyGL.Texture.Texture C# (CSharp) Method

Texture() public method

public Texture ( Bitmap Bmp ) : System.Drawing
Bmp System.Drawing.Bitmap
return System.Drawing
        public Texture(Bitmap Bmp)
        {
            Width = Bmp.Width;
            Height = Bmp.Height;

            Id = TexUtil.CreateTextureFromBitmap(Bmp);
            Animated = false;
        }

Same methods

Texture::Texture ( Bitmap Bmp, int Frames ) : System.Drawing
Texture::Texture ( string Path ) : System.Drawing
Texture::Texture ( string Path, int Frames ) : System.Drawing