예제 #1
0
파일: Print.cs 프로젝트: keppelcao/LGame
		public void Draw(GLEx g, LColor old) {
			if (!visible) {
				return;
			}
			alpha = g.GetAlpha();
			if (alpha > 0 && alpha < 1) {
				g.SetAlpha(1.0f);
			}
			DrawMessage(g, old);
			if (alpha > 0 && alpha < 1) {
				g.SetAlpha(alpha);
			}
		}