PsmFramework.Engines.DrawEngine2d.DrawEngine2d.SetBlendModeToNormal C# (CSharp) 메소드

SetBlendModeToNormal() 공개 메소드

public SetBlendModeToNormal ( ) : void
리턴 void
        public void SetBlendModeToNormal()
        {
            SetBlendMode(NormalBlendFunc);
        }

Usage Example

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

            DrawEngine2d.SetBlendModeToNormal();
        }