g
g
gets/sets the green color channel of the vertex
Type: float
Range: 0.0 to 1.0
Sample Code
###### get the vertex green color channel
# get controller
controller = GameLogic.getCurrentController()
# get object the controller is attached to
obj = controller.owner
# get the 1st mesh
mesh = obj.meshes[0]
# get the first vertex of the first material
vert = mesh.getVertex( 0, 0)
# get the green color channel (RGBA)
gColor = vert.g
###### set the vertex green color channel
# get controller
controller = GameLogic.getCurrentController()
# get object the controller is attached to
obj = controller.owner
# get the 1st mesh
mesh = obj.meshes[0]
# get the first vertex of the first material
vert = mesh.getVertex( 0, 0)
# set the green color channel (RGBA)
vert.g = 1.0
|