http://wiki.flightgear.org/Areas_popula ... ty_scenery
btw.
I changed the size of roofs in /textures/catalog.py to get nicer looking big flat roofs.
Code: Select all
+++ b/textures/catalog.py
@@ -550,27 +550,27 @@ def append_roofs(tex_prefix, roofs):
# 1., [], True, 1., [], False, provides=['color:red']))
roofs.append(Texture(tex_prefix + 'tex.src/roof_red1.png',
- 31.8, [], True, 16.1, [], False, provides=['color:red', 'compat:roof-pitched']))
+ 800., [], True, 800., [], False, provides=['color:red', 'compat:roof-pitched']))
roofs.append(Texture(tex_prefix + 'tex.src/roof_black1.png',
- 31.8, [], True, 16.1, [], False, provides=['color:black', 'compat:roof-pitched']))
+ 800., [], True, 800., [], False, provides=['color:black', 'compat:roof-pitched']))
roofs.append(Texture(tex_prefix + 'tex.src/roof_black4.jpg',
- 6., [], True, 3.5, [], False, provides=['color:black', 'compat:roof-pitched']))
+ 600., [], True, 600., [], False, provides=['color:black', 'compat:roof-pitched']))
roofs.append(Texture(tex_prefix + 'tex.src/roof_gen_black1.png',
- 100., [], True, 100., [], False, provides=['color:black', 'compat:roof-flat']))
+ 500., [], True, 500., [], False, provides=['color:black', 'compat:roof-flat']))
roofs.append(Texture(tex_prefix + 'tex.src/roof_gen_gray1.png',
- 100., [], True, 100., [], False, provides=['color:gray', 'compat:roof-flat']))
+ 400., [], True, 400., [], False, provides=['color:gray', 'compat:roof-flat']))
roofs.append(Texture(tex_prefix + 'tex.src/roof_gen_gray2.png',
- 100., [], True, 100., [], False, provides=['color:gray', 'compat:roof-flat']))
+ 400., [], True, 400., [], False, provides=['color:gray', 'compat:roof-flat']))
roofs.append(Texture(tex_prefix + 'tex.src/roof_gen_gray3.png',
- 100., [], True, 100., [], False, provides=['color:gray', 'compat:roof-flat']))
+ 400., [], True, 400., [], False, provides=['color:gray', 'compat:roof-flat']))
roofs.append(Texture(tex_prefix + 'tex.src/roof_gen_brown1.png',
- 100., [], True, 100., [], False, provides=['color:brown', 'compat:roof-flat']))
+ 400., [], True, 400., [], False, provides=['color:brown', 'compat:roof-flat']))