Skip to content

Commit

Permalink
Change the type of kv_setter/adv_output position keyvalues
Browse files Browse the repository at this point in the history
  • Loading branch information
vrad-exe committed Mar 17, 2024
1 parent 25fd37e commit 9b8d913
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
11 changes: 6 additions & 5 deletions fgd/point/comp/comp_adv_output.fgd
Original file line number Diff line number Diff line change
Expand Up @@ -26,21 +26,22 @@

params_global1(target_destination) : "Parameter 1 - String" : : "A value which will replace {1} in the parameter."
params_local1(target_destination) : "Parameter 1 - Ent Name" : : "If set, this is a fixed up entity name which will be used in the parameter, replacing {1}."
params_pos1(vector) : "Parameter 1 - Position" : : "If set, this is a XYZ position which will be used in the parameter, replacing {1}. This will be offset by instancing."
// Has to be "origin" type to get transformed in 2013 engine games
params_pos1(origin) : "Parameter 1 - Position" : : "If set, this is a XYZ position which will be used in the parameter, replacing {1}. This will be offset by instancing."

params_global2(target_destination) : "Parameter 2 - String" : : "A value which will replace {2} in the parameter."
params_local2(target_destination) : "Parameter 2 - Ent Name" : : "If set, this is a fixed up entity name which will be used in the parameter, replacing {1}."
params_pos2(vector) : "Parameter 2 - Position" : : "If set, this is a XYZ position which will be used in the parameter, replacing {2}. This will be offset by instancing."
params_pos2(origin) : "Parameter 2 - Position" : : "If set, this is a XYZ position which will be used in the parameter, replacing {2}. This will be offset by instancing."

params_global3(target_destination) : "Parameter 3 - String" : : "A value which will replace {3} in the parameter."
params_local3(target_destination) : "Parameter 3 - Ent Name" : : "If set, this is a fixed up entity name which will be used in the parameter, replacing {3}."
params_pos3(vector) : "Parameter 3 - Position" : : "If set, this is a XYZ position which will be used in the parameter, replacing {3}. This will be offset by instancing."
params_pos3(origin) : "Parameter 3 - Position" : : "If set, this is a XYZ position which will be used in the parameter, replacing {3}. This will be offset by instancing."

params_global4(target_destination) : "Parameter 4 - Ent Name" : : "A value which will replace {4} in the parameter."
params_local4(target_destination) : "Parameter 4 - Ent Name" : : "If set, this is a fixed up entity name which will be used in the parameter, replacing {4}."
params_pos4(vector) : "Parameter 4 - Position" : : "If set, this is a XYZ position which will be used in the parameter, replacing {4}. This will be offset by instancing."
params_pos4(origin) : "Parameter 4 - Position" : : "If set, this is a XYZ position which will be used in the parameter, replacing {4}. This will be offset by instancing."

params_global5(target_destination) : "Parameter 5 - String" : : "A value which will replace {5} in the parameter."
params_local5(target_destination) : "Parameter 5 - Ent Name" : : "If set, this is a fixed up entity name which will be used in the parameter, replacing {5}."
params_pos5(vector) : "Parameter 5 - Position" : : "If set, this is a XYZ position which will be used in the parameter, replacing {5}. This will be offset by instancing."
params_pos5(origin) : "Parameter 5 - Position" : : "If set, this is a XYZ position which will be used in the parameter, replacing {5}. This will be offset by instancing."
]
3 changes: 2 additions & 1 deletion fgd/point/comp/comp_kv_setter.fgd
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@

kv_value_global(string) : "Value - String" : : "The value to apply."
kv_value_local(target_destination) : "Value - Ent Name" : : "If set, use this fixed-up entity name."
kv_value_pos(vector) : "Value - Position" : : "If set, overrides the regular value. This will be offset by instancing."
// Has to be "origin" type to get transformed in 2013 engine games
kv_value_pos(origin) : "Value - Position" : : "If set, overrides the regular value. This will be offset by instancing."

invert(boolean) : "Invert Value" : 0 : "If enabled, invert the value so 0 and 1 are swapped."
rotate(boolean) : "Rotate Value" : 0 : "If enabled, treat the value as a vector and rotate it by the angles set on this entity first."
Expand Down

0 comments on commit 9b8d913

Please sign in to comment.