- Edited
Targetors are special type of UI component, that allows to select target via ui.
In vanilla they are used for 2 parts: tractor beam emitter and ion prism, for additional info refer to them and part_targetors file.
Adding targetor:
Add following code into your mod.txt
Action = AddMany
AddTo = "<gui/game/parts/part_targetors.txt>/PartTargetors"
ManyToAdd =
[
//List of targetors here.
]
As one can notice, process is effectively identical to adding ui triggers and toggles.
As for code of targetor itself here is basic example, for any advanced stuff refer part_targetors.txt
{
TargetorID = "your"
DefaultHotkey = [PlatformCmdCtrl, I]
DefaultCancelHotkey = [PlatformCmdCtrl, Shift, I]
ButtonToolTipKey = "PartTargetors/Your"
CancelButtonToolTipKey = "PartTargetors/YourCancel"
ShowWithShipCommands = true
AllowAppend = false
AllowSameShipTarget = false
TargetTypes = [Ships,Parts, ShipLocalPoint ] //If any new target type will be learned from interrogating Walt, it will be added here.
ButtonSprite
{
Texture
{
File = "your_start.png"
MipLevels = 2
SampleMode = Linear
}
}
CancelButtonSprite
{
Texture
{
File = "your_stop.png"
MipLevels = 2
SampleMode = Linear
}
}
Cursor
{
File = "your_cursor.png"
HotSpot = [8, 8]
Scale = .5
}
}
Note, that all id's and icons one need to add themselves
Whats left is to add following code into your parts components list.
Targetor
{
Type = UITargetor
TargetorID = your //Notice, that its need to be same id as in targetor declaration
Weapon = Turret
}
Well, thats about it.
P.S. You will need to specify text in your en.txt