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 'uv_magic_uv/common.py')
-rw-r--r--uv_magic_uv/common.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/uv_magic_uv/common.py b/uv_magic_uv/common.py
index b0c4306e..bad88167 100644
--- a/uv_magic_uv/common.py
+++ b/uv_magic_uv/common.py
@@ -35,10 +35,16 @@ import bmesh
__all__ = [
'is_console_mode',
+ 'is_debug_mode',
+ 'enable_debugg_mode',
+ 'disable_debug_mode',
'debug_print',
'check_version',
'redraw_all_areas',
'get_space',
+ 'mouse_on_region',
+ 'mouse_on_area',
+ 'mouse_on_regions',
'create_bmesh',
'create_new_uv_map',
'get_island_info',
@@ -51,10 +57,12 @@ __all__ = [
'measure_uv_area',
'diff_point_to_segment',
'get_loop_sequences',
+ 'get_overlapped_uv_info',
+ 'get_flipped_uv_info',
]
-__DEBUG_MODE = False
+__DEBUG_MODE = True
def is_console_mode():