IW4-Dump-Files/maps/animated_models/foliage_tree_palm_med_1.gsc

24 lines
601 B
Plaintext
Raw Normal View History

2017-07-08 11:47:21 -07:00
#include common_scripts\utility;
#using_animtree( "animated_props" );
main()
{
if( !isdefined ( level.anim_prop_models ) )
level.anim_prop_models = [];
// Would use isSP() but this runs before we can
mapname = tolower( getdvar( "mapname" ) );
SP = true;
if ( string_starts_with( mapname, "mp_" ) )
SP = false;
model = "foliage_tree_palm_med_1";
if ( SP )
{
level.anim_prop_models[ model ][ "still" ] = %palmtree_med1_still;
level.anim_prop_models[ model ][ "strong" ] = %palmtree_med1_sway;
}
else
level.anim_prop_models[ model ][ "strong" ] = "palmtree_mp_med1_sway";
}