Skip to content

Commit 214d09d

Browse files
Increase render resolution
1 parent 7fc45c8 commit 214d09d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

loco-graphics-helper/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"name": "Loco Graphics Helper",
2626
"description": "Render tool to replicate Locomotion graphics (based on RCT Graphics Helper)",
2727
"author": "Olivier Wervers & OpenLoco Team",
28-
"version": (0, 1, 5),
28+
"version": (0, 1, 6),
2929
"blender": (2, 79, 0),
3030
"location": "Render",
3131
"support": "COMMUNITY",

loco-graphics-helper/operators/init_operator.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ class Init(bpy.types.Operator):
2626

2727
def execute(self, context):
2828
# Setup render settings
29-
context.scene.render.resolution_x = 96
30-
context.scene.render.resolution_y = 96
29+
context.scene.render.resolution_x = 128
30+
context.scene.render.resolution_y = 128
3131
context.scene.render.resolution_percentage = 100
3232

3333
# Output

loco-graphics-helper/operators/render_operator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def execute(self, context):
5656
(1920 / context.scene.render.resolution_x)
5757

5858
bpy.data.cameras["Camera"].shift_x = -0.000345 * \
59-
96 / context.scene.render.resolution_x
59+
128 / context.scene.render.resolution_x
6060

6161
def finish():
6262
general_props.rendering = False

0 commit comments

Comments
 (0)