new sorting wip

This commit is contained in:
2015-08-01 04:47:59 +06:00
parent d6eb47100a
commit 217285eeec
8 changed files with 16883 additions and 1775 deletions

View File

@@ -10,6 +10,9 @@ namespace IsoTools {
public class IsoObject : MonoBehaviour {
public bool Visited = false;
public bool Moved = false;
public Vector3 MinSector = Vector3.zero;
public Vector3 MaxSector = Vector3.zero;
public HashSet<IsoObject> SelfDepends = new HashSet<IsoObject>();
public HashSet<IsoObject> TheirDepends = new HashSet<IsoObject>();