Skip to content

Commit 2bd8901

Browse files
committed
small fixes
1 parent c218c2b commit 2bd8901

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# Factorio Blueprint Visualizer
22

3-
I love the game Factorio and I really like the look of factories after growing for many hours or blueprints after tweaking them for perfection. So I thought about visualizing the factories and blueprints and created this [online tool](https://piebro.github.io/factorio-blueprint-visualizer/).
3+
I love the game Factorio and I really like the look of factories after growing for many hours or blueprints after tweaking them for perfection. That's way I created a [website](https://piebro.github.io/factorio-blueprint-visualizer/) to artfully visualize Factorio blueprints.
44

55
<p align="center">
66
<img src="examples/Rocket_Ship_1.jpg" width="58%" style="padding: 1% 1% 1% 1%">
77
<img src="examples/Rocket_Ship_1_Visualization.png" width="37%" style="padding: 1% 1% 1% 1%">
88
</p>
99

10-
With the website you can export your blueprints in Factorio as text and visualize them. You can tweak the drawing settings or create random ones.
10+
With the website you can import Factorio blueprints as text and visualize them. You can tweak the drawing settings or create random ones.
1111

1212
All buildings and tiles with their bounding boxes and belt, pipe, rail, inserter, wire and electricity connections can be visualized. Everything is drawn in vector graphics (SVG) to be able to view it in any resolution.
1313

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@
152152
}
153153

154154
function uploadBtnClick(){
155-
input = window.prompt("paste blueprint here")
155+
input = window.prompt("Export your blueprint as text in Factorio and paste it here:")
156156
if (input != null && input != ""){
157157
newBlueprintString(input)
158158
showBlueprint()

scripts/download_factorio_raw_data.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ def remove_layers_recursively(data):
113113
"gate",
114114
"generator",
115115
"half-diagonal-rail",
116-
"heat-interface", # TODO: check if this is needed
116+
"heat-interface",
117117
"heat-pipe",
118118
"highlight-box",
119119
"inserter",
@@ -131,7 +131,7 @@ def remove_layers_recursively(data):
131131
"radar",
132132
"rail-chain-signal",
133133
"rail-ramp",
134-
"rail-remnants", # TODO: check if this is needed
134+
"rail-remnants",
135135
"rail-signal",
136136
"rail-support",
137137
"reactor",

0 commit comments

Comments
 (0)