Quote astroniki (

)
Let me know if there's any problems.
1) Dust in the Milky Way fron texture look bad.
2) Sprites in the Pleiades nebula are rotating then flying from through it from the Sun. This is known issue of the enigne, but in this nebula it is very noticeable because of it's orientation and huge size of the sprites. Is it possible to make them smaller?
EDIT: Ok I changed base axis for the sprotes, now they will rotate only if look from "top".
3) The same error in the Models.cfg, as in RC1. Its origin - error in the Bambusman's nebulae model addon. Before NebulaModel "ngc6826" there are a redundant copy of fracton of it's code (after closind bracket of the NebulaModel "lemonslice_in". This code should be romoved:
Code
emParticleMinBrightCenter 0.1
emParticleMinBrightEdge 0.1
absParticleMinBrightCenter 10.0
absParticleMinBrightEdge 10.0
emParticleBrightnessCenter 0.1
emParticleBrightnessEdge 0.1
absParticleBrightnessCenter 1.5
absParticleBrightnessEdge 1.5
// These parameters automatically updated by SpaceEngine
sumColor (1, 0.899474, 0.205079)
sumBright 22421.3
maxBright 0.0957316
clipRadius 0.980405
}
ADDED:
4) No need to use "RemoveStar" in the stars catalog. Now if SE have two or more entries for the same star (one or more names are matched), it updates the old star, ie replaces all data (RA, Dec etc) using the new one. So this code
Code
RemoveStar "HIP 17499"// Electra
Star "Electra"
{
RA 03 44 52.537 // Right ascension
Dec +24 06 48.01 // Declination
Dist 113.36 // Distance from the Sun
Class "B6III" // Spectral class
AppMagn 3.71 // visual magnitude
}
can be replaced with this:
Code
Star "Electra"
{
RA 03 44 52.537 // Right ascension
Dec +24 06 48.01 // Declination
Dist 113.36 // Distance from the Sun
Class "B6III" // Spectral class
AppMagn 3.71 // visual magnitude
}
Use RemoveStar only if you really want to remove star catalog entry. For example, if you making binary star, which already have A and B component in the default star catalog.
By the way, does comments like // Right ascension are really necessary? They was added in the tutorial for education reason, in the production they don't needed.
5) "Theta" is not a correct abbreviation of the Greek letter, the correct is "TET". The overall naming for Theta Orioni is wrong. You wrote:
"41 Theta 1 Ori A" or "41 Theta1 Ori G",
while the correct will be:
"41 Ori A/TET1 Ori A" and "41 Ori G/TET1 Ori G" (without space between TET and 1).
You also made mistake in Greek letters for other stars: Zet Ori (must be ZET Ori), Sig Ori (SIG Ori).