Difference between revisions of "Mesh:setVertexColors"

(Geometry:setVertexColors -> Mesh:setVertexColors)
(Added oldin)
Line 1: Line 1:
 
{{newin|[[0.9.0]]|090|type=function}}
 
{{newin|[[0.9.0]]|090|type=function}}
 +
{{oldin|[[0.10.0]]|100|type=function|text=It has been replaced by [[Mesh:setAttributeEnabled]]("VertexColor", enable)}}
 
Sets whether per-vertex colors are used instead of the constant color when drawing the Mesh (constant color being [[love.graphics.setColor]].)
 
Sets whether per-vertex colors are used instead of the constant color when drawing the Mesh (constant color being [[love.graphics.setColor]].)
  

Revision as of 19:11, 20 December 2015

Available since LÖVE 0.9.0
This function is not supported in earlier versions.
Removed in LÖVE 0.10.0
It has been replaced by Mesh:setAttributeEnabled("VertexColor", enable).

Sets whether per-vertex colors are used instead of the constant color when drawing the Mesh (constant color being love.graphics.setColor.)

Per-vertex colors are enabled by default for a Mesh if at least one vertex color was not the default (255, 255, 255, 255) when the Mesh was created.

Function

Synopsis

Mesh:setVertexColors( on )

Arguments

boolean on
True to use per-vertex coloring, otherwise love.graphics.setColor is used when drawing.

Returns

Nothing.

See Also

Other Languages