7 lines
259 B
GDScript
7 lines
259 B
GDScript
extends Node
|
|
const UPDATE_INTERVAL := 30.0 #Cykl w sekundach
|
|
var ORBIT_STEP = 60 #odległośc miedzy orbitami
|
|
const FIRST_ORBIT_STEP = 80 #pierwsza planeta od gwiazdy
|
|
const SECTOR_COUNT = 13 #ilość sektorów
|
|
const PLANET_PER_SECTOR: Vector2 = Vector2(1, 5)
|