Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Transparency merge #618

Open
wants to merge 46 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 40 commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
6a6f044
Add Transparency buffer
psieg Apr 20, 2014
42c31dc
Add TransparencyCount buffer, repurpose Emissiveness for Bloom
psieg Apr 20, 2014
f1955b4
code checkpoint
psieg Apr 20, 2014
dada5fd
Switch color format to include alpha
psieg Apr 20, 2014
1b89943
fix shader
psieg Apr 20, 2014
977f4e5
Fix shader even more, the rest is algorithm error
psieg Apr 21, 2014
d5e8ca6
Should have done that earlier
psieg Apr 21, 2014
df7330e
Transparency! In every VoxelCluster
psieg Apr 21, 2014
ed4536f
And because we like it, here is particle transparency
psieg Apr 21, 2014
1ce8cfc
try to make something transparent
xchrdw Apr 21, 2014
ea77924
Make even more things transparent
psieg Apr 21, 2014
5c2043f
shader formatting
psieg Apr 21, 2014
3f0f122
Add missing cockpitvoxels
psieg Apr 21, 2014
56e4239
more shader formatting
psieg Apr 21, 2014
f9d38ae
buffer clear order
psieg Apr 21, 2014
b860371
make things transparent for mrzzzrm
psieg Apr 21, 2014
92fd3fe
Only render relevant voxels in correspondig pass (voxelrenderer)
psieg Apr 26, 2014
da6a062
Shader no longer needs ifs
psieg Apr 26, 2014
f7af066
do not render normals for transparent geometry
psieg Apr 26, 2014
b22ad91
fix tests
psieg Apr 26, 2014
6b6bfac
can't test voxelrenderer as GL context is required
psieg Apr 26, 2014
2326cb0
Merge remote-tracking branch 'origin/master' into transparency2
psieg Apr 27, 2014
d87d351
Fix tansparent voxels disappearing
psieg Apr 27, 2014
c5f5091
cleanup
psieg Apr 27, 2014
f2ed7bf
Different ParticleEngines for opaque/transparent particles
psieg May 1, 2014
ca18a2e
switch uniform to bool
psieg May 4, 2014
ba1ff4e
Merge remote-tracking branch 'origin/master' into transparency2
psieg May 4, 2014
6c9689a
merga withda masta
May 8, 2014
2105a77
Merge branch 'transparency2' of github.com:voxelinc/voxellancer into …
May 8, 2014
3671959
Lots of curious bugs
psieg May 9, 2014
f62c540
Some shader documentation
psieg May 10, 2014
510b04a
Add bloom last
psieg May 10, 2014
cc48cd4
remove drawGameAlpha development leftovers
psieg May 10, 2014
f4e319e
switch gameplayscene to glow::State
psieg May 10, 2014
46a677c
fix crucial voxel color not rendered
psieg May 10, 2014
2e35ca2
make voxel vertex and normal vec4s
psieg May 13, 2014
bf24de1
Everything should be red
psieg May 13, 2014
f46fbeb
Bitmask working
psieg May 17, 2014
8f9d5b6
Remove shader debug code
psieg May 17, 2014
2b3b506
Merge branch 'master' of github.com:voxelinc/voxellancer into transpa…
May 18, 2014
b134b9f
made objects that aren't rendered beautifully when transparent opaque…
May 18, 2014
4a1ab19
some formating
May 18, 2014
7bacd1d
Avoid if in fragment shader
psieg May 18, 2014
200efe6
Don't add invisible voxels to renderdata
psieg May 21, 2014
97b6d57
Merge branch 'master' into transparency2
psieg May 31, 2014
766ff0b
Merge branch 'transparency2' into transparency2_grid2
psieg May 31, 2014
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
4 changes: 2 additions & 2 deletions data/equipment/engines/candle.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ type=engine

[trail]
lifetime = 10
color=0xFFFF00
color=0xFFFF00A0
emissiveness=1.0

[visuals]
color=0xFFFF00
color=0xFFFF0090
emissiveness=0.7

[sound]
Expand Down
4 changes: 2 additions & 2 deletions data/equipment/engines/enginemk1.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ type=engine

[trail]
lifetime = 5
color=0x0022FF
color=0x0022FFA0
emissiveness=0.2

[visuals]
color=0x0022FF
color=0x0022FFA0
emissiveness=0.5

[sound]
Expand Down
4 changes: 2 additions & 2 deletions data/equipment/engines/enginemk3.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ type=engine

[trail]
lifetime = 0.3
color=0xEEFF99
color=0xEEFF99A0
emissiveness=0.6

[visuals]
color=0x889900
color=0x889900A0
emissiveness=0.5

[sound]
Expand Down
4 changes: 2 additions & 2 deletions data/equipment/engines/loudengine.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ type=engine

[trail]
lifetime = 25
color=0x0011DD
color=0x0011DDB0
emissiveness=0.1

[visuals]
color=0x0022FF
color=0x0022FFB0
emissiveness=0.5

[sound]
Expand Down
3 changes: 2 additions & 1 deletion data/equipment/engines/mginemk1.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@ angularAcceleration=1000.0,1000.0,1000.0
type=engine

[trail]
color=0x0077FF90
lifetime = 1
emissiveness=0.2

[visuals]
color=0x0077FF
color=0x0077FFA0
emissiveness=0.2

[sound]
Expand Down
3 changes: 2 additions & 1 deletion data/equipment/engines/piratethruster.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@ angularAcceleration=160.0,160.0,160.0
type=engine

[trail]
color=0x0077FFC0
lifetime = 1
emissiveness=0.2

[visuals]
color=0x0077FF
color=0x0077FFA0
emissiveness=0.2

[sound]
Expand Down
4 changes: 2 additions & 2 deletions data/equipment/engines/piratethrusterheavy.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ angularAcceleration=200.0,200.0,200.0
type=engine

[trail]
color=0x0077FF
color=0x0077FFC0
lifetime = 1
emissiveness=0.2

[visuals]
color=0x0077FF
color=0x0077FFA0
emissiveness=0.2

[sound]
Expand Down
3 changes: 2 additions & 1 deletion data/equipment/engines/rocketthrustermk1.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@ angularAcceleration=10,10,10
type=engine

[trail]
color=0xFF0000F0
lifetime=5
emissiveness=0.2

[visuals]
color=0xFF0000
color=0xFF0000C0
emissiveness=1.0

[sound]
Expand Down
4 changes: 2 additions & 2 deletions data/equipment/engines/slowsublight.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ angularAcceleration=200.0,200.0,300.0

[trail]
lifetime = 0.7
color=0xAA8800
color=0xAA880040
emissiveness=0.2

[visuals]
color=0x889900
color=0x88990090
emissiveness=0.5

[sound]
Expand Down
4 changes: 2 additions & 2 deletions data/equipment/engines/superslowengine.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ type=engine

[trail]
lifetime = 1
color=0xFF7700
color=0xFF7700B0
emissiveness=0.2

[visuals]
color=0xFF7700
color=0xFF7700B0
emissiveness=0.5

[sound]
Expand Down
2 changes: 1 addition & 1 deletion data/equipment/weapons/gun.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ cooldownTime=0.1
bullet=gunbullet

[visuals]
color=0x00FF00
color=0x00FF00B0
emissiveness=0.3

[sound]
Expand Down
2 changes: 1 addition & 1 deletion data/equipment/weapons/hornetlauncher.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ cooldownTime=2.0
rocket=hornet

[visuals]
color=0xFF8000
color=0xFF8000B0
emissiveness=0.5

2 changes: 1 addition & 1 deletion data/equipment/weapons/ioncannon.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ cooldownTime=2.0
bullet=ionbullet

[visuals]
color=0x00FFFFFF
color=0x00FFFFC0
emissiveness=1.0

[sound]
Expand Down
2 changes: 1 addition & 1 deletion data/equipment/weapons/pulselaser.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ cooldownTime = 0.3
bullet = pulselaser_bullet

[visuals]
color = 0x00FF00
color = 0x00FF00B0
emissiveness = 0.3

[sound]
Expand Down
2 changes: 1 addition & 1 deletion data/equipment/weapons/railgun.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ cooldownTime=0.05
bullet=railgunbullet

[visuals]
color=0xFFFF00
color=0xFFFF00B0
emissiveness=0.5

[sound]
Expand Down
2 changes: 1 addition & 1 deletion data/equipment/weapons/snowcanon.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ cooldownTime=0.2
bullet=snowball

[visuals]
color=0xFFFFFF
color=0xFFFFFF70
emissiveness=1.0

[sound]
Expand Down
6 changes: 3 additions & 3 deletions data/hud/arrow.csv
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
5,3,1
#00000000,#00000000,#FF0000FFL,#00000000,#00000000
#00000000,#00000000,#FF0000FFF,#00000000,#00000000

#00000000,#FF0000FFL,#00000000,#FF0000FFL,#00000000
#00000000,#FF0000FFF,#00000000,#FF0000FFF,#00000000

#FF0000FFL,#00000000,#00000000,#00000000,#FF0000FFL
#FF0000FFF,#00000000,#00000000,#00000000,#FF0000FFF

12 changes: 6 additions & 6 deletions data/hud/arrowXT.csv
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
7,7,1
#00000000,#00000000,#00000000,#FF0000FFL,#00000000,#00000000,#00000000
#00000000,#00000000,#00000000,#FF0000E0,#00000000,#00000000,#00000000

#00000000,#00000000,#FF0000FFL,#55557FFFL,#FF0000FFL,#00000000,#00000000
#00000000,#00000000,#FF0000E0,#55557FA0,#FF0000E0,#00000000,#00000000

#00000000,#00000000,#FF0000FFL,#55557FFFL,#FF0000FFL,#00000000,#00000000
#00000000,#00000000,#FF0000E0,#55557FA0,#FF0000E0,#00000000,#00000000

#00000000,#FF0000FFL,#55557FFFL,#55557FFFL,#55557FFFL,#FF0000FFL,#00000000
#00000000,#FF0000E0,#55557FA0,#55557FA0,#55557FA0,#FF0000E0,#00000000

#00000000,#FF0000FFL,#55557FFFL,#FF0000FFL,#55557FFFL,#FF0000FFL,#00000000
#00000000,#FF0000E0,#55557FA0,#FF0000E0,#55557FA0,#FF0000E0,#00000000

#00000000,#00000000,#FF0000FFL,#00000000,#FF0000FFL,#00000000,#00000000
#00000000,#00000000,#FF0000E0,#00000000,#FF0000E0,#00000000,#00000000

#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000

8 changes: 4 additions & 4 deletions data/hud/bottom.csv
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
55,4,1
#00000000,#00000000,#0FF00FFL,#0FF00FFL,#0FF00FFL,#0FF00FFL,#0FF00FFL,#0FF00FFL,#0FF00FFL,#0FF00FFL,#0FF00FFL,#0FF00FFL,#0FF00FFL,#0FF00FFL,#0FF00FFL,#0FF00FFL,#0FF00FFL,#0FF00FFL,#0FF00FFL,#0FF00FFL,#0FF00FFL,#0FF00FFL,#0FF00FFL,#0FF00FFL,#0FF00FFL,#0FF00FFL,#0FF00FFL,#0FF00FFL,#0FF00FFL,#0FF00FFL,#0FF00FFL,#00FF00FL,#00FF00FL,#00FF00FL,#00FF00FL,#00FF00FL,#00FF00FL,#00FF00FL,#00FF00FL,#00FF00FL,#00FF00FL,#00FF00FL,#00FF00FL,#00FF00FL,#00FF00FL,#00FF00FL,#00FF00FL,#00FF00FL,#00FF00FL,#00FF00FL,#00FF00FL,#00FF00FL,#00FF00FL,#00000000,#00000000
#00000000,#00000000,#0FF00FFF,#0FF00FFF,#0FF00FFF,#0FF00FFF,#0FF00FFF,#0FF00FFF,#0FF00FFF,#0FF00FFF,#0FF00FFF,#0FF00FFF,#0FF00FFF,#0FF00FFF,#0FF00FFF,#0FF00FFF,#0FF00FFF,#0FF00FFF,#0FF00FFF,#0FF00FFF,#0FF00FFF,#0FF00FFF,#0FF00FFF,#0FF00FFF,#0FF00FFF,#0FF00FFF,#0FF00FFF,#0FF00FFF,#0FF00FFF,#0FF00FFF,#0FF00FFF,#00FF00FF,#00FF00FF,#00FF00FF,#00FF00FF,#00FF00FF,#00FF00FF,#00FF00FF,#00FF00FF,#00FF00FF,#00FF00FF,#00FF00FF,#00FF00FF,#00FF00FF,#00FF00FF,#00FF00FF,#00FF00FF,#00FF00FF,#00FF00FF,#00FF00FF,#00FF00FF,#00FF00FF,#00FF00FF,#00000000,#00000000

#00000000,#0FF00FFL,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00FF00FL,#00000000
#00000000,#0FF00FFF,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00FF00FF,#00000000

#0FF00FFL,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00FF00FL
#0FF00FFF,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00FF00FF

#0FF00FFL,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00FF00FL
#0FF00FFF,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00FF00FF

4 changes: 2 additions & 2 deletions data/hud/bottomleft.csv
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
4,2,1
#00FF00FL,#00000000,#00000000,#00000000
#00FF00FF,#00000000,#00000000,#00000000

#00000000,#00FF00FL,#00FF00FL,#00FF00FL
#00000000,#00FF00FF,#00FF00FF,#00FF00FF

4 changes: 2 additions & 2 deletions data/hud/bottomright.csv
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
4,2,1
#00000000,#00000000,#00000000,#00FF00FL
#00000000,#00000000,#00000000,#00FF00FF

#00FF00FL,#00FF00FL,#00FF00FL,#00000000
#00FF00FF,#00FF00FF,#00FF00FF,#00000000

8 changes: 4 additions & 4 deletions data/hud/crosshair.csv
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
9,9,1
#00FF00FL,#00FF00FL,#00000000,#00000000,#00000000,#00000000,#00000000,#00FF00FL,#00FF00FL
#00FF00FF,#00FF00FF,#00000000,#00000000,#00000000,#00000000,#00000000,#00FF00FF,#00FF00FF

#00FF00FL,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00FF00FL
#00FF00FF,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00FF00FF

#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000

Expand All @@ -13,7 +13,7 @@

#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000

#00FF00FL,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00FF00FL
#00FF00FF,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00000000,#00FF00FF

#00FF00FL,#00FF00FL,#00000000,#00000000,#00000000,#00000000,#00000000,#00FF00FL,#00FF00FL
#00FF00FF,#00FF00FF,#00000000,#00000000,#00000000,#00000000,#00000000,#00FF00FF,#00FF00FF

10 changes: 5 additions & 5 deletions data/hud/font/3x5/0.csv
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
3,5,1
#00FF00FL,#00FF00FL,#00FF00FL
#00FF00FF,#00FF00FF,#00FF00FF

#00FF00FL,#00000000,#00FF00FL
#00FF00FF,#00000000,#00FF00FF

#00FF00FL,#00000000,#00FF00FL
#00FF00FF,#00000000,#00FF00FF

#00FF00FL,#00000000,#00FF00FL
#00FF00FF,#00000000,#00FF00FF

#00FF00FL,#00FF00FL,#00FF00FL
#00FF00FF,#00FF00FF,#00FF00FF

10 changes: 5 additions & 5 deletions data/hud/font/3x5/1.csv
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
3,5,1
#00000000,#00FF00FL,#00FF00FL
#00000000,#00FF00FF,#00FF00FF

#00000000,#00000000,#00FF00FL
#00000000,#00000000,#00FF00FF

#00000000,#00000000,#00FF00FL
#00000000,#00000000,#00FF00FF

#00000000,#00000000,#00FF00FL
#00000000,#00000000,#00FF00FF

#00000000,#00000000,#00FF00FL
#00000000,#00000000,#00FF00FF

10 changes: 5 additions & 5 deletions data/hud/font/3x5/2.csv
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
3,5,1
#00FF00FL,#00FF00FL,#00FF00FL
#00FF00FF,#00FF00FF,#00FF00FF

#00000000,#00000000,#00FF00FL
#00000000,#00000000,#00FF00FF

#00FF00FL,#00FF00FL,#00FF00FL
#00FF00FF,#00FF00FF,#00FF00FF

#00FF00FL,#00000000,#00000000
#00FF00FF,#00000000,#00000000

#00FF00FL,#00FF00FL,#00FF00FL
#00FF00FF,#00FF00FF,#00FF00FF

10 changes: 5 additions & 5 deletions data/hud/font/3x5/3.csv
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
3,5,1
#00FF00FL,#00FF00FL,#00FF00FL
#00FF00FF,#00FF00FF,#00FF00FF

#00000000,#00000000,#00FF00FL
#00000000,#00000000,#00FF00FF

#00000000,#00FF00FL,#00FF00FL
#00000000,#00FF00FF,#00FF00FF

#00000000,#00000000,#00FF00FL
#00000000,#00000000,#00FF00FF

#00FF00FL,#00FF00FL,#00FF00FL
#00FF00FF,#00FF00FF,#00FF00FF

10 changes: 5 additions & 5 deletions data/hud/font/3x5/4.csv
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
3,5,1
#00FF00FL,#00000000,#00FF00FL
#00FF00FF,#00000000,#00FF00FF

#00FF00FL,#00000000,#00FF00FL
#00FF00FF,#00000000,#00FF00FF

#00FF00FL,#00FF00FL,#00FF00FL
#00FF00FF,#00FF00FF,#00FF00FF

#00000000,#00000000,#00FF00FL
#00000000,#00000000,#00FF00FF

#00000000,#00000000,#00FF00FL
#00000000,#00000000,#00FF00FF

10 changes: 5 additions & 5 deletions data/hud/font/3x5/5.csv
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
3,5,1
#00FF00FL,#00FF00FL,#00FF00FL
#00FF00FF,#00FF00FF,#00FF00FF

#00FF00FL,#00000000,#00000000
#00FF00FF,#00000000,#00000000

#00FF00FL,#00FF00FL,#00FF00FL
#00FF00FF,#00FF00FF,#00FF00FF

#00000000,#00000000,#00FF00FL
#00000000,#00000000,#00FF00FF

#00FF00FL,#00FF00FL,#00FF00FL
#00FF00FF,#00FF00FF,#00FF00FF

10 changes: 5 additions & 5 deletions data/hud/font/3x5/6.csv
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
3,5,1
#00FF00FL,#00FF00FL,#00FF00FL
#00FF00FF,#00FF00FF,#00FF00FF

#00FF00FL,#00000000,#00000000
#00FF00FF,#00000000,#00000000

#00FF00FL,#00FF00FL,#00FF00FL
#00FF00FF,#00FF00FF,#00FF00FF

#00FF00FL,#00000000,#00FF00FL
#00FF00FF,#00000000,#00FF00FF

#00FF00FL,#00FF00FL,#00FF00FL
#00FF00FF,#00FF00FF,#00FF00FF

Loading