Difference between revisions of "Building structures"

From OrbiterWiki
Jump to navigation Jump to search
(Changed image.)
(Corrected Block description.)
Line 34: Line 34:
 
  ROT 330
 
  ROT 330
 
  TEX1 Fcd01 1 1
 
  TEX1 Fcd01 1 1
  TEX2 Fce03 1 1
+
  TEX2 Fcd03 1 1
 
  TEX3 Roof01 1 1
 
  TEX3 Roof01 1 1
 
  END
 
  END
  
 
Again, save the scenario, exit to the Launchpad and re-launch.
 
Again, save the scenario, exit to the Launchpad and re-launch.

Revision as of 12:56, 15 November 2023

A Block is an object that can be used to create structures on bases. It is a cube or rectangular prism consisting of three dimensions, length, width, and height, and it can use any of the textures that are listed in the base.cfg file (Orbiter\Config\base.cfg), although some may not be appropriate for a block.

The description of a block is written into the config file of a base (Orbiter\Config\<Planet>\Base\<BaseConfig.cfg>).

Textures

Textures used for building a block are found in the directory Orbiter\Textures and are listed in the file Orbiter\Config\Base.cfg. Note that there are a number of textures in the \Textures directory that are not listed in the Base.cfg file that could be used, so, if you like type in the filename without the extension into the Base.cfg file so you can use them in building structures, such as door01, but, not, let's say, Exhaust.

So, let's build a block building. If you created

Open the Bonneville.cfg file (Orbiter\Config\Earth\Base\) in your favorite text editor such as Notepad or Notepad+. Place your cursor at the end of the line BEGIN_OBJECTLIST and press Enter. That provides a line to type in an object.

BLOCK
POS 60 0 -100
SCALE 1 1 1
ROT 330
TEX1 0 0 0
TEX2 0 0 0
TEX3 0 0 0
END

Save the file, you can keep the file open as we will be editing this block. Exit the scenario, then re-launch it. Now, you will see a small cube sitting on the ground about 100 meters in front of you. In the scenario editor, change the time to about 18:00 hours, that puts the Sun behind you so you can see what effect shadows have.

Now note the block is white on the side facing you. If you moved your ship so you could see one of the sides, you will note that it is gray. Orbiter applies shading for shadows.

The block should look something like this:

Image of a BLOCK with no texture.

This block is a cube 1 meter cubed. Now, let's edit the block in Bonneville.cfg as follows:

BLOCK
POS 60 0 -100
SCALE 1 1 1
ROT 330
TEX1 Fcd01 1 1
TEX2 Fcd03 1 1
TEX3 Roof01 1 1
END

Again, save the scenario, exit to the Launchpad and re-launch.