public void ScanInternal(string objMeshPath) { Mesh x = ObjImporter.ImportFile(objMeshPath); if (x == null) { Debug.LogError("Couldn't read .obj file at '" + objMeshPath + "'"); return; } this.sourceMesh = x; base.ScanInternal(); }
/** Scans the graph using the path to an .obj mesh */ public void ScanInternal(string objMeshPath) { Mesh mesh = ObjImporter.ImportFile(objMeshPath); if (mesh == null) { Debug.LogError("Couldn't read .obj file at '" + objMeshPath + "'"); return; } sourceMesh = mesh; ScanInternal(); }
public void ScanInternal(string objMeshPath) { Mesh x = ObjImporter.ImportFile(objMeshPath); if (x == null) { Debug.LogError("Couldn't read .obj file at '" + objMeshPath + "'"); return; } this.sourceMesh = x; IEnumerator <Progress> enumerator = this.ScanInternal().GetEnumerator(); while (enumerator.MoveNext()) { } }
public void ScanInternal(string objMeshPath) { Mesh mesh = ObjImporter.ImportFile(objMeshPath); if (mesh == null) { Debug.LogError("Couldn't read .obj file at '" + objMeshPath + "'"); return; } sourceMesh = mesh; var scan = ScanInternal().GetEnumerator(); while (scan.MoveNext()) { } }