mirror of
https://github.com/drewcassidy/TexTools-Blender
synced 2024-09-01 14:54:44 +00:00
17 lines
348 B
Python
17 lines
348 B
Python
import bpy
|
|
import bmesh
|
|
import operator
|
|
|
|
selection_uv_mode = '';
|
|
selection_uv_loops = []
|
|
selection_uv_pivot = '';
|
|
selection_uv_pivot_pos = (0,0)
|
|
|
|
selection_mode = [False, False, True];
|
|
selection_vert_indexies = []
|
|
selection_face_indexies = []
|
|
|
|
bake_render_engine = ''
|
|
bake_objects_hide_render = []
|
|
bake_cycles_samples = 1
|
|
sets = [] |