PsmFramework.Engines.DrawEngine2d.DrawEngine2d.SetBlendModeToNormal C# (CSharp) Method

SetBlendModeToNormal() public method

public SetBlendModeToNormal ( ) : void
return void
        public void SetBlendModeToNormal()
        {
            SetBlendMode(NormalBlendFunc);
        }

Usage Example

        private void InitializeDrawEngine2d()
        {
            DrawEngine2d = new DrawEngine2d(Mgr.GraphicsContext);

            DrawEngine2d.SetBlendModeToNormal();
        }