mirror of
https://github.com/GTA-ASM/SanAndreasUnity
synced 2024-11-10 06:34:16 +00:00
"CellIds" is no longer available in Inspector
This commit is contained in:
parent
4acc23dacd
commit
b38a2faf49
1 changed files with 1 additions and 3 deletions
|
@ -22,7 +22,7 @@ namespace SanAndreasUnity.Behaviours.World
|
|||
|
||||
public Division RootDivision { get; private set; }
|
||||
|
||||
public List<int> CellIds = new List<int> { 0, 13 };
|
||||
private List<int> CellIds = Enumerable.Range(0, 19).ToList();
|
||||
|
||||
public bool HasExterior => this.CellIds.Contains(0);
|
||||
|
||||
|
@ -64,8 +64,6 @@ namespace SanAndreasUnity.Behaviours.World
|
|||
if (null == Instance)
|
||||
Instance = this;
|
||||
|
||||
this.CellIds = Enumerable.Range(0, 19).ToList();
|
||||
|
||||
}
|
||||
|
||||
private void Start()
|
||||
|
|
Loading…
Reference in a new issue