Vertex Proxy: v2

v2
  • gets/sets the v position of the vertex on the second UV map (UV/Image Editor).

Type:

  • float number
Sample Code

############################# get the vertex v position on the second UV map

# import bge
import bge

# get the current controller
cont = bge.logic.getCurrentController()

# get object that owns this controller
obj = cont.owner
 
# Get a list of the mesh
meshList = obj.meshes

# Get the first mesh on the object
mesh = meshList[0]
 
# get the first vertex of the first material
vert  = mesh.getVertex( 0, 0)

# get v position of the vertex UV map
v_pos = vert.v2

Sample Code

############################# set the vertex v position on the second UV map

# import bge
import bge

# get the current controller
cont = bge.logic.getCurrentController()

# get object that owns this controller
obj = cont.owner
 
# Get a list of the mesh
meshList = obj.meshes

# Get the first mesh on the object
mesh = meshList[0]
 
# get the first vertex of the first material
vert  = mesh.getVertex( 0, 0)

# set v position of the vertex UV map
vert.v2 = 1.0