diff --git a/loco-graphics-helper/__init__.py b/loco-graphics-helper/__init__.py index 0be6f4e..214fd61 100644 --- a/loco-graphics-helper/__init__.py +++ b/loco-graphics-helper/__init__.py @@ -25,7 +25,7 @@ "name": "Loco Graphics Helper", "description": "Render tool to replicate Locomotion graphics (based on RCT Graphics Helper)", "author": "Olivier Wervers & OpenLoco Team", - "version": (0, 1, 5), + "version": (0, 1, 6), "blender": (2, 79, 0), "location": "Render", "support": "COMMUNITY", diff --git a/loco-graphics-helper/operators/init_operator.py b/loco-graphics-helper/operators/init_operator.py index e1936a6..949d2be 100644 --- a/loco-graphics-helper/operators/init_operator.py +++ b/loco-graphics-helper/operators/init_operator.py @@ -26,8 +26,8 @@ class Init(bpy.types.Operator): def execute(self, context): # Setup render settings - context.scene.render.resolution_x = 96 - context.scene.render.resolution_y = 96 + context.scene.render.resolution_x = 128 + context.scene.render.resolution_y = 128 context.scene.render.resolution_percentage = 100 # Output diff --git a/loco-graphics-helper/operators/render_operator.py b/loco-graphics-helper/operators/render_operator.py index 8a9e877..a8b802f 100644 --- a/loco-graphics-helper/operators/render_operator.py +++ b/loco-graphics-helper/operators/render_operator.py @@ -56,7 +56,7 @@ def execute(self, context): (1920 / context.scene.render.resolution_x) bpy.data.cameras["Camera"].shift_x = -0.000345 * \ - 96 / context.scene.render.resolution_x + 128 / context.scene.render.resolution_x def finish(): general_props.rendering = False