24 lines
650 B
Plaintext
24 lines
650 B
Plaintext
#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 = "mp_flooded_street_water";
|
|
if ( SP )
|
|
{
|
|
level.anim_prop_models[ model ][ "mp_flooded_street_water" ] = %mp_flooded_street_water_anim;
|
|
}
|
|
else
|
|
level.anim_prop_models[ model ][ "mp_flooded_street_water" ] = "mp_flooded_street_water_anim";
|
|
}
|
|
|