From 7917077ee01696746dadf45c315126abbc9df405 Mon Sep 17 00:00:00 2001 From: Adam Johnson Date: Sat, 5 Jul 2014 21:18:16 -0400 Subject: [PATCH] Make white actually be white... --- korman/exporter/mesh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/korman/exporter/mesh.py b/korman/exporter/mesh.py index db2176c..dd77adb 100644 --- a/korman/exporter/mesh.py +++ b/korman/exporter/mesh.py @@ -157,7 +157,7 @@ class MeshConverter: # Grab VCols (TODO--defaulting to white for now) # This will be finalized once the vertex color light code baking is in - color = (0, 0, 0, 255) + color = (255, 255, 255, 255) # Now, we'll index into the vertex dict using the per-face elements :( # We're using tuples because lists are not hashable. The many mathutils and PyHSPlasma