Merge pull request #21 from karl-/master

Move enum ExtrudeMethod inside MeshTool class to avoid name conflicts
This commit is contained in:
jakobhu 2017-04-02 16:48:37 +02:00 коммит произвёл GitHub
Родитель ee7ab3d134 a395d9bee5
Коммит ea2f06159b
1 изменённых файлов: 6 добавлений и 6 удалений

Просмотреть файл

@ -1,15 +1,15 @@
using UnityEngine;
using System.Collections.Generic;
public enum ExtrudeMethod
{
Vertical,
MeshNormal
}
// Manipulation tool for displacing the vertices in a list of meshes
public class MeshTool : MonoBehaviour
{
public enum ExtrudeMethod
{
Vertical,
MeshNormal
}
public List<MeshFilter> m_Filters = new List<MeshFilter>();
public float m_Radius = 1.5f;
public float m_Power = 2.0f;