Skip to content
Open
Show file tree
Hide file tree
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
12 changes: 12 additions & 0 deletions fgd/point/info/info_overlay.fgd
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,18 @@
]
tint(color255) : "Tint Color" : "255 255 255 255" : "Applies a color tint using multiply mix mode. Color will be put as $color shader parameter. Alpha will be put as $alpha shader parameter, so make sure the overlay's material allows the use of those parameters."

colorvar(integer) : "Color Var" : : "If set, override the $color tint by the specified color var."
colorvar[P2CE](choices) : "Paint Tinting" : : "If enabled, override the $color tint by the color of the specified paint type." =
[
"": "Disabled"
"paint_bounce": "Repulsion Gel"
"paint_reflect": "Reflection Gel"
"paint_speed": "Propulsion Gel"
"paint_portal": "Conversion Gel"
"paint_erase": "Cleansing Gel"
"paint_stick": "Adhesion Gel"
]

startu(float) : "U Start" : 0.0 : "A value between 0-1, defining the starting X axis position in the overlay material."
endu(float) : "U End" : 1.0 : "A value between 0-1, defining the ending X axis position in the overlay material."
startv(float) : "V Start" : 0.0 : "A value between 0-1, defining the starting Y axis position in the overlay material."
Expand Down
12 changes: 12 additions & 0 deletions fgd/point/prop/prop_static.fgd
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,18 @@
renderamt(integer) : "Alpha" : 255 : "Alpha of the fade, where 0 = fully transparent and 255 = fully opaque."
rendercolor(color255) : "Color (R G B)" : "255 255 255"

colorvar(integer) : "Color Var" : : "If set, override the tint by the specified color var."
colorvar[P2CE](choices) : "Paint Tinting" : : "If enabled, override the tint by the color of the specified paint type." =
[
"": "Disabled"
"paint_bounce": "Repulsion Gel"
"paint_reflect": "Reflection Gel"
"paint_speed": "Propulsion Gel"
"paint_portal": "Conversion Gel"
"paint_erase": "Cleansing Gel"
"paint_stick": "Adhesion Gel"
]

uniformscale(float) : "Uniform Scale Override" : 1 : "Resize the static prop uniformly."
scale(vector) : "Scale Override" : "1 1 1" : "Resize the static prop."

Expand Down