예제 #1
0
        public void SaveMeshWithTexture()
        {
            string filename = SetUpSaveDialog();

            if (filename == null)
            {
                return;
            }

            else
            {
                TriMeshIO.WriteToObjFileWithTexture(filename, GlobalData.Instance.TriMesh);
            }
        }