Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'greasepencil_tools/draw_tools.py')
-rw-r--r--greasepencil_tools/draw_tools.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/greasepencil_tools/draw_tools.py b/greasepencil_tools/draw_tools.py
new file mode 100644
index 00000000..6d2cf3a9
--- /dev/null
+++ b/greasepencil_tools/draw_tools.py
@@ -0,0 +1,23 @@
+# SPDX-License-Identifier: GPL-2.0-or-later
+
+import bpy
+
+class GP_OT_camera_flip_x(bpy.types.Operator):
+ bl_idname = "gp.camera_flip_x"
+ bl_label = "Camera Flip X"
+ bl_description = "Invert active camera scale.x to flip view horizontally"
+ bl_options = {"REGISTER"}
+
+ @classmethod
+ def poll(cls, context):
+ return context.space_data.region_3d.view_perspective == 'CAMERA'
+
+ def execute(self, context):
+ context.scene.camera.scale.x *= -1
+ return {"FINISHED"}
+
+def register():
+ bpy.utils.register_class(GP_OT_camera_flip_x)
+
+def unregister():
+ bpy.utils.unregister_class(GP_OT_camera_flip_x)