Files
secretsplash/Runtime/PSXMesh.cs

13 lines
243 B
C#

using UnityEngine;
namespace PSXSplash.RuntimeCode {
[System.Serializable]
public class PSXMesh {
public bool TriangulateMesh = true;
public void Export() {
Debug.Log($"Export: {this}");
}
}
}