BITFALL/Assets/MagicaCloth2/Scripts/Core/VirtualMesh/VirtualMeshPrimitive.cs

15 lines
235 B
C#
Raw Normal View History

2024-03-18 18:20:23 +08:00
// Magica Cloth 2.
// Copyright (c) 2023 MagicaSoft.
// https://magicasoft.jp
namespace MagicaCloth2
{
public enum VirtualMeshPrimitive
{
None = 0,
Point = 1,
Edge = 2,
Triangle = 3,
}
}