I'm not sure has anyone report it yet but orbit angle of moon is not working, instead it inherit its parent planet orbit angle.
with this code the three moon should be 90 degree angle, but they are 30 degree angle following orbit angle of the planet.
Then when I change orbit of Nanna to 60 I got this.
Code:
planet = {
name = "Nanna"
class = "pc_gas_giant"
orbit_distance = 20
orbit_angle = 30
size = 30
has_ring = no
entity = "gas_giant_02_entity"
change_orbit = 6
change_orbit = @base_moon_distance
moon = {
name = "Unn"
class = "pc_frozen"
size = 6
orbit_distance = 0
orbit_angle = 90
has_ring = no
}
moon = {
name = "Lodung"
class = "pc_frozen"
size = 9
orbit_distance = 5
orbit_angle = 90
has_ring = no
}
moon = {
name = "Bragi"
class = "pc_frozen"
size = 7
orbit_distance = 2.5
orbit_angle = 90
has_ring = no
}
}
Then when I change orbit of Nanna to 60 I got this.
Upvote
0