Artemis.Engine.SpriteBatchPropertiesPacket.SpriteBatchPropertiesPacket C# (CSharp) Метод

SpriteBatchPropertiesPacket() публичный Метод

public SpriteBatchPropertiesPacket ( SpriteSortMode ssm = SpriteSortMode.Deferred, BlendState bs = null, SamplerState ss = null, DepthStencilState dss = null, RasterizerState rs = null, Effect e = null, Matrix m = null ) : Microsoft.Xna.Framework
ssm SpriteSortMode
bs Microsoft.Xna.Framework.Graphics.BlendState
ss Microsoft.Xna.Framework.Graphics.SamplerState
dss Microsoft.Xna.Framework.Graphics.DepthStencilState
rs Microsoft.Xna.Framework.Graphics.RasterizerState
e Microsoft.Xna.Framework.Graphics.Effect
m Microsoft.Xna.Framework.Matrix
Результат Microsoft.Xna.Framework
        public SpriteBatchPropertiesPacket( SpriteSortMode ssm    = SpriteSortMode.Deferred
                                     , BlendState bs         = null
                                     , SamplerState ss       = null
                                     , DepthStencilState dss = null
                                     , RasterizerState rs    = null
                                     , Effect e              = null
                                     , Matrix? m             = null)
        {
            SpriteSortMode = ssm;
            BlendState = bs;
            SamplerState = ss;
            DepthStencilState = dss;
            RasterizerState = rs;
            Effect = e;
            Matrix = m;
        }
SpriteBatchPropertiesPacket