Ypsilon.Core.Graphics.EffectState.EffectState C# (CSharp) Method

EffectState() public method

public EffectState ( Effect effect, SamplerState sampler, RasterizerState raster, DepthStencilState stencil, bool texture ) : Microsoft.Xna.Framework.Graphics
effect Microsoft.Xna.Framework.Graphics.Effect
sampler Microsoft.Xna.Framework.Graphics.SamplerState
raster Microsoft.Xna.Framework.Graphics.RasterizerState
stencil Microsoft.Xna.Framework.Graphics.DepthStencilState
texture bool
return Microsoft.Xna.Framework.Graphics
        public EffectState(Effect effect, SamplerState sampler, RasterizerState raster, DepthStencilState stencil, bool texture)
        {
            Effect = effect;
            Sampler = sampler;
            Raster = raster;
            TextureOverride = texture;
        }

Same methods

EffectState::EffectState ( Effect effect, SamplerState sample ) : Microsoft.Xna.Framework.Graphics
EffectState::EffectState ( Effect effect, SamplerState sampler, RasterizerState raster ) : Microsoft.Xna.Framework.Graphics
EffectState