24 lines
361 B
C#
24 lines
361 B
C#
using UnityEngine;
|
|
|
|
public class MegaOBJExport : MonoBehaviour
|
|
{
|
|
public bool sequence;
|
|
|
|
public int framerate = 30;
|
|
|
|
public KeyCode key = KeyCode.O;
|
|
|
|
public string path = string.Empty;
|
|
|
|
private int frame;
|
|
|
|
public static string MeshToString(MeshFilter mf)
|
|
{
|
|
return string.Empty;
|
|
}
|
|
|
|
public static void MeshToFile(MeshFilter mf, string filename)
|
|
{
|
|
}
|
|
}
|