From 894dd71d355aeb1c4bd3479c8484184028ebf6d3 Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Mon, 9 Dec 2013 01:57:53 +0900 Subject: [PATCH] Change the background color --- example/game.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/game.go b/example/game.go index b51f4d6f3..328fca6d2 100644 --- a/example/game.go +++ b/example/game.go @@ -129,7 +129,7 @@ func (game *Game) Draw(g graphics.Canvas) { whole := game.drawInfo.renderTargets["whole"] g.SetOffscreen(whole) - g.Fill(0x40, 0x60, 0xb0) + g.Fill(0x70, 0x90, 0xe0) game.drawTexture(g, game.drawInfo.textureGeo, matrix.IdentityColor()) game.drawText(g, game.drawInfo.inputStr, 6, 6, &color.RGBA{0x0, 0x0, 0x0, 0x80}) game.drawText(g, game.drawInfo.inputStr, 5, 5, color.White)