add billboard model type

This commit is contained in:
David Rose 2003-01-24 19:48:00 +00:00
parent 29e9fe84ec
commit 46d570f4ce

View File

@ -1981,6 +1981,12 @@ do_expand_object_type(EggGroup *egg_group, const pset<string> &expanded,
} else if (cmp_nocase_uh(object_type, "decal") == 0) {
egg_syntax = "<Decal> { 1 }";
} else if (cmp_nocase_uh(object_type, "billboard") == 0) {
egg_syntax = "<Billboard> { axis }";
} else if (cmp_nocase_uh(object_type, "billboard-point") == 0) {
egg_syntax = "<Billboard> { point }";
} else if (cmp_nocase_uh(object_type, "backstage") == 0) {
// Ignore "backstage" geometry.
return false;