Added support for tie down areas (width > 150 feet) and support for lakebed
taxiway types.
This commit is contained in:
parent
fd2fc30ef5
commit
f4d1b34776
1 changed files with 11 additions and 1 deletions
|
@ -1656,12 +1656,22 @@ void build_runway( const FGRunway& rwy_info,
|
|||
if ( !rwy_info.really_taxiway ) {
|
||||
material = "pc_"; // concrete
|
||||
} else {
|
||||
material = "pc_taxiway";
|
||||
if ( rwy_info.width > 150 ) {
|
||||
material = "pc_tiedown";
|
||||
} else {
|
||||
material = "pc_taxiway";
|
||||
}
|
||||
}
|
||||
} else if ( surface_flag == "D" ) {
|
||||
material = "dirt_rwy";
|
||||
} else if ( surface_flag == "G" ) {
|
||||
material = "grass_rwy";
|
||||
} else if ( surface_flag == "L" ) {
|
||||
if ( rwy_info.really_taxiway ) {
|
||||
material = "lakebed_taxiway";
|
||||
} else {
|
||||
material = "dirt_rwy";
|
||||
}
|
||||
} else if ( surface_flag == "T" ) {
|
||||
material = "grass_rwy";
|
||||
} else if ( surface_flag == "W" ) {
|
||||
|
|
Loading…
Add table
Reference in a new issue