I made it into a addon so I could share it seperately once I'm done with this project. Will probably add more stuff to it once I do that too I liked Awesome Input Icons, but it only had a PlayStation icon face by default that couldn't be easily changed at runtime, so I just made my own.
24 lines
304 B
GDScript
24 lines
304 B
GDScript
extends Node
|
|
|
|
var ground_location = null
|
|
|
|
var orbit_zones = [
|
|
{
|
|
"name": "The Star",
|
|
"distance": 2048 * 1.5,
|
|
"spawns": []
|
|
},
|
|
{
|
|
"name": "Test Zone",
|
|
"distance": 0,
|
|
"spawns": [
|
|
{
|
|
"type": "asteroid",
|
|
"chance_percent": 100,
|
|
"amount_min": 4,
|
|
"amount_max": 5,
|
|
}
|
|
]
|
|
},
|
|
|
|
]
|