Changed the size of the rectangle

This commit is contained in:
Hajime Hoshi 2013-06-22 16:00:42 +09:00
parent 215df5d190
commit 532528037a

View File

@ -124,7 +124,7 @@ func (game *Sprites) Draw(g graphics.GraphicsContext, offscreen graphics.Texture
g.DrawTextureParts(texture.ID, locations, g.DrawTextureParts(texture.ID, locations,
geometryMatrix, matrix.IdentityColor()) geometryMatrix, matrix.IdentityColor())
g.DrawRect( g.DrawRect(
graphics.Rect{10, 5, 200, 200}, graphics.Rect{10, 10, 50, 50},
&color.RGBA{255, 128, 128, 128}, &color.RGBA{255, 128, 128, 128},
) )
} }