unity and native osx bundles and frameworks build from the same project now

This commit is contained in:
Joseph Henry
2016-06-16 11:47:08 -07:00
parent 621970619d
commit 699edf8f30
111 changed files with 11112 additions and 14 deletions

View File

@@ -0,0 +1,18 @@

using System.Collections.Generic;
using UnityEngine;
public class OBJData
{
//------------------------------------------------------------------------------------------------------------
public List<Vector3> m_Vertices = new List<Vector3>();
public List<Vector3> m_Normals = new List<Vector3>();
public List<Vector2> m_UVs = new List<Vector2>();
public List<Vector2> m_UV2s = new List<Vector2>();
public List<Color> m_Colors = new List<Color>();
//------------------------------------------------------------------------------------------------------------
public List<OBJMaterial> m_Materials = new List<OBJMaterial>();
public List<OBJGroup> m_Groups = new List<OBJGroup>();
}