using System.Collections.Generic; using UnityEngine; public class OBJData { //------------------------------------------------------------------------------------------------------------ public List m_Vertices = new List(); public List m_Normals = new List(); public List m_UVs = new List(); public List m_UV2s = new List(); public List m_Colors = new List(); //------------------------------------------------------------------------------------------------------------ public List m_Materials = new List(); public List m_Groups = new List(); }