It looks like you're new here. If you want to get involved, click one of these buttons!
Is there a way of setting the visibility? I'd like to temporarily hide shows that are not selected for clarity. I tried this script but all the stars are still visible.
sector = GetCurrentSector()
j = sector.SystemCount
For i = 1 to j
o = sector.GetSystem( i-1)
o.Modified = true
o.visible = false
If i mod 500 = 0 Then
sector.RenderMessageBig = "Updating stars: " & Int( (i / j) * 100) & "%"
sector.RenderMessageSmall = "Press Esc to cancel"
RefreshScene
'check Cancel
k = GetKey()
if k = 27 then Exit For
End If
Next
sector.RenderMessageBig = ""
sector.RenderMessageSmall = ""
RefreshScene
Comments
Make sure Filters -> Hide Filtered Systems is set in the menu. That might be causing it to show systems set to not visible. I think the default may be to just hide the labels.
Thanks Ed. It was set (ticked) but when I clicked on it again it DID hide them.