Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions neo/rebuild.fgd
Original file line number Diff line number Diff line change
Expand Up @@ -278,4 +278,22 @@
output OnUse(void) : "Fired when the Use input is given. "
output OnStartTouch(void) : "Fired when an entity starts touching this trigger. The touching entity must pass this trigger's InputFilter to cause this output to fire."
output OnEndTouch(void) : "Fired when an entity stops touching this trigger. Only entities that passed this trigger's InputFilter will cause this output to fire."
]

@PointClass base(Targetname) iconsprite("vgui/hud/non_star.vmt") = neo_type_converter : "An entity that lets you convert between parameter types."
[
outputtype(choices) : "Type to convert to" : 0 =
[
0 : "Float"
1 : "Integer"
2 : "String"
]

input SendFloat(float) : "Float input"
input SendInteger(integer) : "Integer input"
input SendString(string) : "String input"

output OutFloat(float) : "Float output"
output OutInteger(integer) : "Integer output"
output OutString(string) : "String output"
]