From 2a5a0a8895d5fbccbe1182b634e835de11e83e33 Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Thu, 23 Mar 2023 19:56:25 +0900 Subject: [PATCH] ebiten: update documents --- image.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/image.go b/image.go index 4543ba6af..9d2367cba 100644 --- a/image.go +++ b/image.go @@ -405,7 +405,8 @@ const MaxIndicesNum = graphics.IndicesCount // and adjust the color elements in the vertices. For an actual implementation, // see the example 'vector'. // -// Vertex contains color values, which are interpreted as straight-alpha colors. +// Vertex contains color values, which are interpreted as straight-alpha colors by default. +// This depends on the option's ColorScaleMode. // // If len(indices) is not multiple of 3, DrawTriangles panics. //