Age | Commit message (Collapse) | Author |
|
Add glowing textures to:
- Qantum or Super Tanks and Chests
- Active Bronze and Bricked Blast Furnaces
- Active Magical Absorber Top
- Fusion Reactor Control Computer Screen
- Active Yellow Glass Fusion Casing used on:
- Active Fusion Reactor Controller and Hatches
- Plasma Generator
- Lightning Rod
- Computer Screen Cover
|
|
Convert to png all .png files that were not in image/png format using Linux shell
```sh
git ls-files -z |
while IFS= read -rd '' f; do
mime="$(file --brief --mime "$f")";
if [ -z "${f%%*.png}" ] && [ -n "${mime##image/png;*}" ]; then
convert "$f" /tmp/a.png;
cat /tmp/a.png >"$f";
fi;
done;
rm -f -- /tmp/a.png
```
|
|
Normalise all these json files with jq
Used Linux shell
```sh
find ./src -type f \( -iname '*.mcmeta' -o -iname '*.info' \) -execdir bash -c '
for f; do
if jq "." "$f" >/tmp/a.json;
then cat /tmp/a.json >"$f";
fi;
done;
rm -f -- /tmp/a.json
' _ {} +;
```
|
|
fix insulation texture was darker on cable ends than on cable sides
|
|
|
|
Render smooth lighting ambient occlusion on all Gregtech tiles:
- Ores
- Machines
- Pipes, Cables, Wires, Frames
Add new Client-side configuration entry in Gregtech.cfg.
If false, the flat lighting rendering of older versions is used.
```yml
render {
B:TileAmbientOcclusion_true=true
}
```
|
|
allow autoclave to have fluid out in recipe
|
|
|
|
added GT shadowmetal block, fixed bee crash from new TM
|
|
|
|
|
|
|
|
Long distance pipelines
|
|
(cherry picked from commit 9e483b5c905ec21d8c2193f146a8789a47b17a87)
|
|
|
|
+ Added 2 more coils
+ Improved Tooltips
|
|
(cherry picked from commit bcd9bd8449a810cc0022fc58806d3e78f995ef56)
|
|
bump verion
(cherry picked from commit 5cd8800ac37e8cbcf0bc6578cec0c3215c7df4f9)
|
|
|
|
GT6 under LGPL.
|
|
|
|
if anyone have a better one just send it to me.
|
|
* feat(gregtech): visual programmed circuit
Add: Feature a configuration display for the programmed circuit (integrated circuit).
Address feature request https://github.com/GTNewHorizons/GT-New-Horizons-Modpack/issues/6993
* fix(bug): potential out of bound index
|
|
Intank texture changed
Titanum Gearbox changed
|
|
bump version
|
|
|
|
fix uev machineparts texture
UEV Electric Piston has 2 pixels miscoloured #6443
https://github.com/GTNewHorizons/GT-New-Horizons-Modpack/issues/6443
|
|
fix uev piston texture
UEV Electric Piston has 2 pixels miscoloured #6443
https://github.com/GTNewHorizons/GT-New-Horizons-Modpack/issues/6443
|
|
|
|
Add Raw Poatal Block for DD Infusion recipe
|
|
|
|
|
|
|
|
https://github.com/GTNewHorizons/GT-New-Horizons-Modpack/issues/5928
|
|
+ updated tritanium color
Signed-off-by: bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com>
|
|
|
|
fix tier from ore drill tier 6
bump version
|
|
|
|
https://github.com/GTNewHorizons/NewHorizons/issues/5467
|
|
https://github.com/GTNewHorizons/NewHorizons/issues/5366
|
|
https://github.com/GTNewHorizons/NewHorizons/issues/5271
|
|
|
|
Adds animated textures for the following fluids:
Deuterium
Gas
Natural Gas
Sulphuric Gas
Helium
Helium-3
Hydrogen
Methane
Nitrogen
Nitrogen Dioxide
Oxygen
Radon
Trinium
Liquid Air
|
|
Added animated fluid textures for liquid nitrogen and liquid oxygen based on liquid mercury
|
|
|
|
+added mica crop
+code improvements
Signed-off-by: bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com>
|
|
|
|
|
|
https://github.com/GTNewHorizons/NewHorizons/issues/4869
|
|
+re-added solar GUI
|