diff options
author | Léa Gris <lea.gris@noiraude.net> | 2021-04-04 22:01:11 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-04 22:01:11 +0200 |
commit | 4fb771c07cefad013da8588db27a46ed0311e367 (patch) | |
tree | 4c113321579b9c9f6047bf3c8f5c1c4bba98aa0f /src/main/java/gregtech/api/interfaces/metatileentity | |
parent | cb41ac5155bee91779fc3dbf38966be4a082a1d4 (diff) | |
download | GT5-Unofficial-4fb771c07cefad013da8588db27a46ed0311e367.tar.gz GT5-Unofficial-4fb771c07cefad013da8588db27a46ed0311e367.tar.bz2 GT5-Unofficial-4fb771c07cefad013da8588db27a46ed0311e367.zip |
fix(rendering): multiple rendering fixes and refactor (#494)
* fix(rendering): multiple rendering fixes and refactor
- Fix rendering gregtech machines in inventory with correct orientation and lighting.
- Fix rendering of pipes connected through covers, no longer z-fight at a distance.
- Fix updating of textures when un/holding a soldering-iron.
- Refactor of the GT_Renderer_Block class with properly named constants replacing raw literals.
Diffstat (limited to 'src/main/java/gregtech/api/interfaces/metatileentity')
-rw-r--r-- | src/main/java/gregtech/api/interfaces/metatileentity/IConnectable.java | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/main/java/gregtech/api/interfaces/metatileentity/IConnectable.java b/src/main/java/gregtech/api/interfaces/metatileentity/IConnectable.java index bc822250fd..cffcb4c4ab 100644 --- a/src/main/java/gregtech/api/interfaces/metatileentity/IConnectable.java +++ b/src/main/java/gregtech/api/interfaces/metatileentity/IConnectable.java @@ -4,6 +4,18 @@ package gregtech.api.interfaces.metatileentity; * For pipes, wires, and other MetaTiles which need to be decided whether they should connect to the block at each side. */ public interface IConnectable { + int NO_CONNECTION = 0b00000000; + int CONNECTED_DOWN = 0b00000001; + int CONNECTED_UP = 0b00000010; + int CONNECTED_NORTH = 0b00000100; + int CONNECTED_SOUTH = 0b00001000; + int CONNECTED_WEST = 0b00010000; + int CONNECTED_EAST = 0b00100000; + int CONNECTED_ALL = 0b00111111; + int HAS_FRESHFOAM = 0b01000000; + int HAS_HARDENEDFOAM = 0b10000000; + int HAS_FOAM = 0b11000000; + /** * Try to connect to the Block at the specified side * returns the connection state. Non-positive values for failed, others for succeeded. |