This repository has been archived by the owner on Dec 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from radiatoryang/develop
lots of features, almost to v0.4
- Loading branch information
Showing
9 changed files
with
419 additions
and
388 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
using System.Collections.Generic; | ||
using UnityEngine; | ||
using UnityEditor.TreeViewExamples; | ||
|
||
namespace Merino | ||
{ | ||
|
||
public class MerinoTreeData : ScriptableObject | ||
{ | ||
public int editedID = -1; | ||
public double timestamp; | ||
[SerializeField] List<MerinoTreeElement> m_TreeElements = new List<MerinoTreeElement> (); | ||
|
||
internal List<MerinoTreeElement> treeElements | ||
{ | ||
get { return m_TreeElements; } | ||
set { m_TreeElements = value; } | ||
} | ||
|
||
} | ||
} |
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
12 changes: 0 additions & 12 deletions
12
Assets/Merino/Editor/BackendData/MyTreeAssetEditor.cs.meta
This file was deleted.
Oops, something went wrong.
54 changes: 0 additions & 54 deletions
54
Assets/Merino/Editor/BackendData/MyTreeElementGenerator.cs
This file was deleted.
Oops, something went wrong.
12 changes: 0 additions & 12 deletions
12
Assets/Merino/Editor/BackendData/MyTreeElementGenerator.cs.meta
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.