mirror of
https://github.com/exogen/t2-mapper.git
synced 2026-03-05 21:40:33 +00:00
Initial commit
This commit is contained in:
parent
2211ed7650
commit
ebb3dc9cdd
10121 changed files with 801 additions and 4 deletions
112
docs/base/@vl2/scripts.vl2/scripts/commanderMapIcons.cs
Normal file
112
docs/base/@vl2/scripts.vl2/scripts/commanderMapIcons.cs
Normal file
|
|
@ -0,0 +1,112 @@
|
|||
// "type image overlay modulate {anim flags} {anim speed}"
|
||||
datablock CommanderIconData(CMDPlayerIcon)
|
||||
{
|
||||
baseImage = "static com_player_grey_24x false true";
|
||||
selectImage = "static com_player_grey_24x_glow true true";
|
||||
hilightImage = "static com_player_grey_24x_glow true true";
|
||||
};
|
||||
|
||||
datablock CommanderIconData(CMDGeneratorIcon)
|
||||
{
|
||||
baseImage = "static com_icon_generator false true";
|
||||
selectImage = "static com_icon_generator_glow true true";
|
||||
hilightImage = "static com_icon_generator_glow true true";
|
||||
};
|
||||
|
||||
datablock CommanderIconData(CMDSolarGeneratorIcon)
|
||||
{
|
||||
baseImage = "static com_icon_solar_gen false true";
|
||||
selectImage = "static com_icon_solar_gen_glow true true";
|
||||
hilightImage = "static com_icon_solar_gen_glow true true";
|
||||
};
|
||||
|
||||
datablock CommanderIconData(CMDHoverScoutIcon)
|
||||
{
|
||||
baseImage = "static com_icon_landscout false true";
|
||||
selectImage = "static com_icon_landscout_glow true true";
|
||||
hilightImage = "static com_icon_landscout_glow true true";
|
||||
};
|
||||
|
||||
datablock CommanderIconData(CMDFlyingScoutIcon)
|
||||
{
|
||||
baseImage = "static com_icon_scout false true";
|
||||
selectImage = "static com_icon_scout_glow true true";
|
||||
hilightImage = "static com_icon_scout_glow true true";
|
||||
};
|
||||
|
||||
datablock CommanderIconData(CMDFlyingBomberIcon)
|
||||
{
|
||||
baseImage = "static com_icon_bomber false true";
|
||||
selectImage = "static com_icon_bomber_glow true true";
|
||||
hilightImage = "static com_icon_bomber_glow true true";
|
||||
};
|
||||
|
||||
datablock CommanderIconData(CMDFlyingHAPCIcon)
|
||||
{
|
||||
baseImage = "static com_icon_hapc false true";
|
||||
selectImage = "static com_icon_hapc_glow true true";
|
||||
hilightImage = "static com_icon_hapc_glow true true";
|
||||
};
|
||||
|
||||
datablock CommanderIconData(CMDGroundTankIcon)
|
||||
{
|
||||
baseImage = "static com_icon_tank false true";
|
||||
selectImage = "static com_icon_tank_glow true true";
|
||||
hilightImage = "static com_icon_tank_glow true true";
|
||||
};
|
||||
|
||||
datablock CommanderIconData(CMDTurretIcon)
|
||||
{
|
||||
baseImage = "static com_icon_turret false true";
|
||||
selectImage = "static com_icon_turret_glow true true";
|
||||
hilightImage = "static com_icon_turret_glow true true";
|
||||
};
|
||||
|
||||
datablock CommanderIconData(CMDCameraIcon)
|
||||
{
|
||||
baseImage = "static com_icon_camera false true";
|
||||
selectImage = "static com_icon_camera true true";
|
||||
hilightImage = "static com_icon_camera true true";
|
||||
};
|
||||
|
||||
datablock CommanderIconData(CMDFlagIcon)
|
||||
{
|
||||
baseImage = "static com_icon_flag_outside false true";
|
||||
selectImage = "static com_icon_flag_outside_glow true true";
|
||||
hilightImage = "static com_icon_flag_outside_glow true true";
|
||||
};
|
||||
|
||||
datablock CommanderIconData(CMDGroundMPBIcon)
|
||||
{
|
||||
baseImage = "static com_icon_mpb false true";
|
||||
selectImage = "static com_icon_mpb_glow true true";
|
||||
hilightImage = "static com_icon_mpb_glow true true";
|
||||
};
|
||||
|
||||
datablock CommanderIconData(CMDSwitchIcon)
|
||||
{
|
||||
baseImage = "static com_icon_genericswitch false true";
|
||||
selectImage = "static com_icon_genericswitch_glow true true";
|
||||
hilightImage = "static com_icon_genericswitch_glow true true";
|
||||
};
|
||||
|
||||
datablock CommanderIconData(CMDStationIcon)
|
||||
{
|
||||
baseImage = "static com_icon_inventory false true";
|
||||
selectImage = "static com_icon_inventory_glow true true";
|
||||
hilightImage = "static com_icon_inventory_glow true true";
|
||||
};
|
||||
|
||||
datablock CommanderIconData(CMDVehicleStationIcon)
|
||||
{
|
||||
baseImage = "static com_icon_vehicle_inventory false true";
|
||||
selectImage = "static com_icon_vehicle_inventory_glow true true";
|
||||
hilightImage = "static com_icon_vehicle_inventory_glow true true";
|
||||
};
|
||||
|
||||
datablock CommanderIconData(CMDSensorIcon)
|
||||
{
|
||||
baseImage = "static com_icon_sensor false true";
|
||||
selectImage = "static com_icon_sensor_glow true true";
|
||||
hilightImage = "static com_icon_sensor_glow true true";
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue