Skip to content

Commit 1acd096

Browse files
authored
Add three new icons (#304)
1 parent ca9787b commit 1acd096

File tree

10 files changed

+34
-5
lines changed

10 files changed

+34
-5
lines changed

fgd/bases/BaseClusteredLight.fgd

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,17 @@
2020
[
2121
0: "None"
2222
1: "Static Only"
23+
]
24+
_initialshadowsize(choices) : "Initial Shadow Size" : 3 : "The initial shadow resolution exponent for shadowed lights. Each increment of one doubles both dimensions of the shadowmap, making shadows appear sharper as a result." =
25+
[
26+
1: "1"
27+
2: "2"
28+
3: "3"
29+
4: "4"
30+
5: "5"
31+
6: "6"
32+
7: "7"
2333
]
24-
25-
_initialshadowsize(integer) : "Initial Shadow Size" : 3 : "The initial static shadow resolution exponent. Only relevant for static shadow allocation. Adding 1 to this value doubles both dimensions of the shadowmap."
2634
nearz(float) : "Near Z" : 4.0 : "Near Z for this light. Determines where shadows start to be cast. Inside the nearz radius, the light is still visible, but anything inside it won't cast shadows"
2735

2836
input SetShadowSize(integer) : "Set the size exponent of this light's shadowmap(s)."

fgd/point/filter/filter_activator_surfacedata.fgd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@FilterClass base(filter_base)
2-
iconsprite("editor/filter_generic.vmt")
2+
iconsprite("editor/l2/filter_activator_surfacedata.vmt")
33
= filter_activator_surfacedata : "A filter that tests the activator's surface data."
44
[
55
filtersurfaceprop[engine](string) : "Surface"

fgd/point/logic/logic_console.fgd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@PointClass base(BaseEntityPoint)
2-
iconsprite("editor/logic_console.vmt")
2+
iconsprite("editor/l2/logic_console.vmt")
33
= logic_console : "Sends messages to the console. Not to be confused with point_clientcommand or point_servercommand."
44
[
55
// Keys

fgd/point/math/math_counter_advanced.fgd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@PointClass base(BaseEntityPoint, EnableDisable, math_counter)
2-
iconsprite("editor/math_counter_advanced.vmt")
2+
iconsprite("editor/l2/math_counter_advanced.vmt")
33
= math_counter_advanced : "A special version of math_counter with the ability to perform advanced calculations. " +
44
"Otherwise functions identically to math_counter."
55
[
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
"Sprite"
2+
{
3+
"$spriteorientation" "vp_parallel"
4+
"$spriteorigin" "[ 0.50 0.50 ]"
5+
"$baseTexture" "editor/l2/filter_activator_surfacedata"
6+
"$no_fullbright" 1
7+
}
3.87 KB
Binary file not shown.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
"Sprite"
2+
{
3+
"$spriteorientation" "vp_parallel"
4+
"$spriteorigin" "[ 0.50 0.50 ]"
5+
"$baseTexture" "editor/l2/logic_console"
6+
"$no_fullbright" 1
7+
}
2.45 KB
Binary file not shown.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
"Sprite"
2+
{
3+
"$spriteorientation" "vp_parallel"
4+
"$spriteorigin" "[ 0.50 0.50 ]"
5+
"$baseTexture" "editor/l2/math_counter_advanced"
6+
"$no_fullbright" 1
7+
}
2.97 KB
Binary file not shown.

0 commit comments

Comments
 (0)