Space Engineers

Space Engineers

Not enough ratings
TGP turret bundle (LG)
   
Award
Favorite
Favorited
Unfavorite
File Size
Posted
560.363 KB
10 Feb, 2024 @ 1:49pm
1 Change Note ( view )

Subscribe to download
TGP turret bundle (LG)

Description
Sample blueprint for TGP Targeting Pod script. Single tracker turret. Don't forget to add an antenna.

CustomData includes toggle to lock friendly grids.

Toolbar command is "command:reset-rotors".

If you add it to your ship, ensure that the requirements still hold: main grid cockpit/remote should be in the same group with PB, cameras, etc.
See commands reference and create additional commands on toolbar as you see fit.

The script has a feature of binding commands to WASD button press and double tap, you can change them at the top of the code, or just use my config.
// no toggle support yet Dictionary<string, string> keyUpBindings = new Dictionary<string, string>() { { "a", "command:prev-target" }, { "d", "command:next-target" }, { "e", "command:cast" }, { "q", "command:drop-ban" }, { "w", "command:cycle-offset" }, { "s", "command:static-cast" } }; Dictionary<string, string> dTapBindings = new Dictionary<string, string>() { { "spacebar", "command:clear-user-shift" }, { "c", "command:reset-rotors" } };