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

draw_tools.py « greasepencil_tools - git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6d2cf3a908d6810fe74b61c2d8a107d4dd2cc778 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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)