You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
o3de/Tools/maxscript/cryKey/showVertexColors.ms

22 lines
369 B
Plaintext

------Display Vertex Colors-------
for obj in selection do
(
if obj.showVertexColors == false then
(
obj.vertexColorType = #color
obj.showVertexColors = true
)
else
(
if obj.vertexColorType ==#alpha then
(
obj.vertexColorType = #color
obj.showVertexColors = false
obj.showVertexColors = true
)
else
(
obj.showVertexColors = false
)
)
)