Celestia/Celx Scripting/CELX Lua Methods/CEL command setfaintestautomag45deg

From Wikibooks, open books for an open world
Jump to navigation Jump to search

setfaintestautomag45deg[edit | edit source]

setfaintestautomag45deg { magnitude <faintestnumber> }

Set the lowest Magnitude of stars to be displayed when Auto-Magnitude is on.

Arguments:

magnitude <faintestnumber>
The magnitude at which stars will become visible, when Auto-Magnitude is on. Default is 8.5.
The Celestia user interface allows a range from about 1.0 to 15.0.


CELX equivalent:

Based on the celestia:setrenderflags() and celestia:setfaintestvisible() methods.

  • Enable "AutoMag" and set the faintest magnitude of stars at 45°.
    <faintestnumber> is the new faintest magnitude of stars.
celestia:setrenderflags{automag = true}
celestia:setfaintestvisible( <faintestnumber> )


Example:

CEL:

setfaintestautomag45deg { magnitude 9.0 }

CELX:

celestia:setrenderflags{automag = true}
celestia:setfaintestvisible(9.0)


Back to CEL command index