General Question Does anyone know how to add textures to planets in mods?

The Orbiterfan

New member
Joined
May 26, 2021
Messages
9
Reaction score
4
Points
3
Location
mumbai
So, I am making a mod adding the Proxima Centauri system to Orbiter. The problem is, I don't know how to add textures to it. So it looks like this

1656606519542.png
Please reply. Also, can anyone tell how to add mesh objects to bases?

Thank You!
 

N_Molson

Addon Developer
Addon Developer
Donator
Joined
Mar 5, 2010
Messages
9,271
Reaction score
3,244
Points
203
Location
Toulouse
Also, can anyone tell how to add mesh objects to bases?

Where "vab" is the name of your mesh (must be a valid .msh file)

Code:
BASE-V2.0
Name = Cape Canaveral
Location = -80.65165 +28.58438
Size = 1000
MapObjectsToSphere = TRUE

...

BEGIN_OBJECTLIST

...

MESH
    FILE vab
    OWNMATERIAL
    POS 0 0 0
    ROT 10
    SHADOW
    PRELOAD
END

...

END_OBJECTLIST
 

The Orbiterfan

New member
Joined
May 26, 2021
Messages
9
Reaction score
4
Points
3
Location
mumbai
Where "vab" is the name of your mesh (must be a valid .msh file)

Code:
BASE-V2.0
Name = Cape Canaveral
Location = -80.65165 +28.58438
Size = 1000
MapObjectsToSphere = TRUE

...

BEGIN_OBJECTLIST

...

MESH
    FILE vab
    OWNMATERIAL
    POS 0 0 0
    ROT 10
    SHADOW
    PRELOAD
END

...

END_OBJECTLIST
Thank You!
 
Top