From 49bf56a030e48a6de94637362413f48502a7d96b Mon Sep 17 00:00:00 2001 From: Federico De Felici Date: Fri, 11 May 2018 16:18:39 +0200 Subject: [PATCH] Updated example with uvs --- maya/dracodec_example.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/maya/dracodec_example.py b/maya/dracodec_example.py index bf20f0a..d6c761a 100644 --- a/maya/dracodec_example.py +++ b/maya/dracodec_example.py @@ -14,4 +14,8 @@ print(mesh.vertices[0:10]) print("\n==== NORMALS ====") print(mesh.normals_num) print(mesh.normals_len) -# print(mesh.normals[0:10]) This mesh has no normals +print(mesh.normals) #This mesh has no normals +print("\n==== UVS ====") +print(mesh.uvs_num) +print(mesh.uvs_len) +print(mesh.uvs) #This mesh has no uvs \ No newline at end of file