Skip to content

Commit e1564c6

Browse files
committed
graphics: Reverted automated factory graphics back to 1.1 graphics. Resolves pyanodon/pybugreports#617
1 parent 5e35ab7 commit e1564c6

File tree

3 files changed

+9
-24
lines changed

3 files changed

+9
-24
lines changed

changelog.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
---------------------------------------------------------------------------------------------------
2+
Version: 3.0.28
3+
Date: ?
4+
Graphics:
5+
- Reverted automated factory graphics back to 1.1 graphics. Resolves https://github.com/pyanodon/pybugreports/issues/617
6+
---------------------------------------------------------------------------------------------------
27
Version: 3.0.27
38
Date: 2025-1-2
49
Changes:

info.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pycoalprocessing",
3-
"version": "3.0.27",
3+
"version": "3.0.28",
44
"factorio_version": "2.0",
55
"title": "Pyanodons Coal Processing",
66
"author": "Pyanodon, Nexela, Kingarthur, notnotmelon, Mootykins, ShadowGlass, Archezekiel, Quintuple",
@@ -9,7 +9,7 @@
99
"description": "Extends and overhauls Factorio's burner phase. Use realistic oil and coal processes to create advanced products. Functions as the core and library for the rest of the pY mods.",
1010
"dependencies": [
1111
"base >= 2.0.21",
12-
"~ pycoalprocessinggraphics >= 3.0.0",
12+
"~ pycoalprocessinggraphics >= 3.0.3",
1313
"~ pypostprocessing >= 3.0.0",
1414
"(?) DiscoScience",
1515
"(?) better-victory-screen",

prototypes/buildings/automated-factory.lua

Lines changed: 2 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -73,42 +73,22 @@ for i = 1, 4 do
7373
animation = {
7474
layers = {
7575
{
76-
filename = "__pycoalprocessinggraphics__/graphics/entity/automated-factory/left.png",
77-
width = 128,
78-
height = 280,
79-
line_length = 16,
80-
frame_count = 101,
81-
shift = {-1.5, -0.68},
82-
animation_speed = 0.5
83-
},
84-
{
85-
filename = "__pycoalprocessinggraphics__/graphics/entity/automated-factory/right.png",
86-
width = 116,
87-
height = 280,
88-
line_length = 16,
89-
frame_count = 101,
90-
shift = {2.31, -0.68},
91-
animation_speed = 0.5
92-
},
93-
{
94-
filename = "__pycoalprocessinggraphics__/graphics/entity/automated-factory/left-mask.png",
76+
filename = "__pycoalprocessinggraphics__/graphics/entity/automated-factory/mk0" .. i .. "-left.png",
9577
width = 128,
9678
height = 280,
9779
line_length = 16,
9880
frame_count = 101,
9981
shift = {-1.5, -0.68},
10082
animation_speed = 0.5,
101-
tint = py.tints[i],
10283
},
10384
{
104-
filename = "__pycoalprocessinggraphics__/graphics/entity/automated-factory/right-mask.png",
85+
filename = "__pycoalprocessinggraphics__/graphics/entity/automated-factory/mk0" .. i .. "-right.png",
10586
width = 116,
10687
height = 280,
10788
line_length = 16,
10889
frame_count = 101,
10990
shift = {2.31, -0.68},
11091
animation_speed = 0.5,
111-
tint = py.tints[i],
11292
}
11393
}
11494
},

0 commit comments

Comments
 (0)