mini fixes

This commit is contained in:
2015-01-04 17:03:04 +06:00
parent 18dfbcd2f8
commit 4051641dab
8 changed files with 608 additions and 239 deletions

View File

@@ -106,11 +106,8 @@ public class IsoWorld : MonoBehaviour {
depth += StepDepth;
}
}
void Start() {
}
void Update() {
void LateUpdate() {
if ( _dirty ) {
_scanObjects();
_scanDepends();
@@ -118,8 +115,4 @@ public class IsoWorld : MonoBehaviour {
_dirty = false;
}
}
void LateUpdate() {
Update();
}
}