void Start() { if (Data == null) { return; } if (Data.IsEmpty()) { Create(); } else { Visualize(); } }
void Start() { if (satellitePosition == null) { satellitePosition = new SatellitePosition(gameObject); satellitePosition.GenerateSeed(); } else { satellitePosition.SetParent(gameObject); } if (Data == null) { return; } if (Data.IsEmpty()) { Create(); } else { Visualize(); } }