1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2025-01-26 00:46:54 +00:00

Merge pull request #191 from SquidDev-CC/feature/text-illumination

Make monitor text glow in the dark
This commit is contained in:
Daniel Ratcliffe 2017-05-06 22:11:28 +01:00 committed by GitHub
commit 423d5af87f
3 changed files with 4 additions and 0 deletions

View File

@ -100,6 +100,7 @@ public class TileEntityMonitorRenderer extends TileEntitySpecialRenderer<TileMon
// Draw the contents
GlStateManager.depthMask( false );
GlStateManager.disableLighting();
mc.entityRenderer.disableLightmap();
try
{
if( terminal != null )
@ -256,6 +257,7 @@ public class TileEntityMonitorRenderer extends TileEntitySpecialRenderer<TileMon
finally
{
GlStateManager.depthMask( true );
mc.entityRenderer.enableLightmap();
GlStateManager.enableLighting();
}

View File

@ -3,6 +3,7 @@ New Features in ComputerCraft 1.80:
* Added .getResponseHeaders() to HTTP responses.
* Return a HTTP response when a HTTP error occurs.
* Added a GUI to change ComputerCraft config options
* Monitor text now glows in the dark
New Features in ComputerCraft 1.79:

View File

@ -3,5 +3,6 @@ New Features in ComputerCraft 1.80:
* Added .getResponseHeaders() to HTTP responses.
* Return a HTTP response when a HTTP error occurs.
* Added a GUI to change ComputerCraft config options
* Monitor text now glows in the dark
Type "help changelog" to see the full version history.