summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorfalkTX <falktx@gmail.com>2013-12-24 10:27:07 +0000
committerfalkTX <falktx@gmail.com>2013-12-24 10:27:07 +0000
commit6c7a04b415cc5edd50a2cdcd3eba223a34123d67 (patch)
tree0876c9234de8f0334b76fd2848faa150545ccb0a /utils
parent9cb4acc4f7ecdf4b382402a781488b91a0a40672 (diff)
Fix Image+texture; Don't reverse imgs; Proper vexter coords
Diffstat (limited to 'utils')
-rwxr-xr-xutils/png2rgba.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/png2rgba.py b/utils/png2rgba.py
index a59ef5c8..14f121ce 100755
--- a/utils/png2rgba.py
+++ b/utils/png2rgba.py
@@ -31,7 +31,7 @@ def png2rgba(namespace, filenames):
png = Image.open(filename)
pngNumpy = numpy.array(png)
pngData = pngNumpy.tolist()
- pngData.reverse()
+ #pngData.reverse()
height = len(pngData)
for dataBlock in pngData: