[TASK] Initial commit with basic product setup
This commit is contained in:
18
Assets/Mapbox SDK/Mapbox/Unity/Editor/FeatureTreeElement.cs
Normal file
18
Assets/Mapbox SDK/Mapbox/Unity/Editor/FeatureTreeElement.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
namespace Mapbox.Editor
|
||||
{
|
||||
using System;
|
||||
using UnityEngine;
|
||||
using Random = UnityEngine.Random;
|
||||
[Serializable]
|
||||
public class FeatureTreeElement : TreeElement
|
||||
{
|
||||
public string Name;
|
||||
public string Type;
|
||||
public bool isActive;
|
||||
|
||||
public FeatureTreeElement(string name, int depth, int id) : base(name, depth, id)
|
||||
{
|
||||
isActive = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user