Is there a way to have an asteroid belt in a custom system that does not orbit the center of the system? The idea is to have, for example, both stars of a split binary system having their own asteroid belts.
So far, I've tried adding an asteroid belt as a child of a star, like so:
...but that just results in a system without an asteroid belt.
I've also tried adding an orbit distance to an asteroid belt (as a child of the system like normal, not a child of the star):
That ends up creating an asteroid belt centered around the center of the system, as usual, and pops an "Unexpected token: orbit_distance" error into the error log.
So far, I've tried adding an asteroid belt as a child of a star, like so:
Code:
planet = {
name = "foo"
class = pc_a_star
orbit_distance = 150
asteroid_belt = {
type = rocky_asteroid_belt
radius = 145
}
}
...but that just results in a system without an asteroid belt.
I've also tried adding an orbit distance to an asteroid belt (as a child of the system like normal, not a child of the star):
Code:
asteroid_belt = {
type = rocky_asteroid_belt
radius = 200
orbit_distance = 150
}
That ends up creating an asteroid belt centered around the center of the system, as usual, and pops an "Unexpected token: orbit_distance" error into the error log.