-
Notifications
You must be signed in to change notification settings - Fork 10
/
uv_texture_atlas.py
803 lines (623 loc) · 27.1 KB
/
uv_texture_atlas.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
# BEGIN GPL LICENSE BLOCK #####
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# END GPL LICENSE BLOCK #####
bl_info = {
"name": "Texture Atlas",
"author": "Andreas Esau, Paul Geraskin, Campbell Barton",
"version": (0, 2, 1),
"blender": (2, 67, 0),
"location": "Properties > Render",
"description": "A simple Texture Atlas for unwrapping many objects. It creates additional UV",
"wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"
"Scripts/UV/TextureAtlas",
"category": "UV",
}
import bpy
from bpy.types import (
Operator,
Panel,
PropertyGroup,
)
from bpy.props import (
BoolProperty,
CollectionProperty,
EnumProperty,
FloatProperty,
IntProperty,
StringProperty,
)
import mathutils
def check_all_objects_visible(self, context):
scene = context.scene
group = scene.ms_lightmap_groups[scene.ms_lightmap_groups_index]
isAllObjectsVisible = True
bpy.ops.object.select_all(action='DESELECT')
for thisObject in bpy.data.groups[group.name].objects:
isThisObjectVisible = False
# scene.objects.active = thisObject
for thisLayerNumb in range(20):
if thisObject.layers[thisLayerNumb] is True and scene.layers[thisLayerNumb] is True:
isThisObjectVisible = True
break
# If Object is on an invisible Layer
if isThisObjectVisible is False:
isAllObjectsVisible = False
return isAllObjectsVisible
def check_group_exist(self, context, use_report=True):
scene = context.scene
group = scene.ms_lightmap_groups[scene.ms_lightmap_groups_index]
if group.name in bpy.data.groups:
return True
else:
if use_report:
self.report({'INFO'}, "No Such Group %r!" % group.name)
return False
class TexAtl_Main(Panel):
bl_label = "Texture Atlas"
bl_space_type = 'PROPERTIES'
bl_region_type = 'WINDOW'
bl_context = "render"
bl_options = {'DEFAULT_CLOSED'}
def draw(self, context):
scene = context.scene
ob = context.object
col = self.layout.column()
row = self.layout.row()
split = self.layout.split()
row.template_list("UI_UL_list", "template_list_controls", scene,
"ms_lightmap_groups", scene, "ms_lightmap_groups_index", rows=2, maxrows=5)
col = row.column(align=True)
col.operator("scene.ms_add_lightmap_group", icon='ZOOMIN', text="")
col.operator("scene.ms_del_lightmap_group", icon='ZOOMOUT', text="")
row = self.layout.row(align=True)
# Resolution and Unwrap types (only if Lightmap group is added)
if context.scene.ms_lightmap_groups:
group = scene.ms_lightmap_groups[scene.ms_lightmap_groups_index]
row.label(text="Resolution:")
row.prop(group, 'resolutionX', text='')
row.prop(group, 'resolutionY', text='')
row = self.layout.row()
#self.layout.separator()
row = self.layout.row()
row.operator("scene.ms_remove_other_uv",
text="RemoveOtherUVs", icon="GROUP")
row.operator("scene.ms_remove_selected",
text="RemoveSelected", icon="GROUP")
#self.layout.separator()
row = self.layout.row()
row.operator("scene.ms_add_selected_to_group",
text="AddSelected", icon="GROUP")
row.operator("scene.ms_select_group",
text="SelectGroup", icon="GROUP")
#self.layout.separator()
self.layout.label(text="Auto Unwrap:")
self.layout.prop(group, 'unwrap_type', text='Lightmap', expand=True)
row = self.layout.row()
row.operator(
"object.ms_auto", text="Auto Unwrap", icon="LAMP_SPOT")
row.prop(group, 'autoUnwrapPrecision', text='')
self.layout.label(text="Manual Unwrap:")
row = self.layout.row()
row.operator(
"object.ms_run", text="StartManualUnwrap", icon="LAMP_SPOT")
row.operator(
"object.ms_run_remove", text="FinishManualUnwrap", icon="LAMP_SPOT")
class TexAtl_RunAuto(Operator):
bl_idname = "object.ms_auto"
bl_label = "Auto Unwrapping"
bl_description = "Auto Unwrapping"
def execute(self, context):
scene = context.scene
old_context = context.area.type
# Check if group exists
if check_group_exist(self, context) is False:
return {'CANCELLED'}
group = scene.ms_lightmap_groups[scene.ms_lightmap_groups_index]
context.area.type = 'VIEW_3D'
if bpy.ops.object.mode_set.poll():
bpy.ops.object.mode_set(mode='OBJECT', toggle=False)
if group.bake is True and bpy.data.groups[group.name].objects:
# Check if objects are all on the visible Layers.
isAllObjVisible = check_all_objects_visible(self, context)
if isAllObjVisible is True:
resX = int(group.resolutionX)
resY = int(group.resolutionY)
bpy.ops.object.ms_create_lightmap(
group_name=group.name, resolutionX=resX, resolutionY=resY)
bpy.ops.object.ms_merge_objects(
group_name=group.name, unwrap=True)
bpy.ops.object.ms_separate_objects(group_name=group.name)
else:
self.report({'INFO'}, "Not All Objects Are Visible!!!")
context.area.type = old_context
return{'FINISHED'}
class TexAtl_RunStart(Operator):
bl_idname = "object.ms_run"
bl_label = "Make Manual Unwrapping Object"
bl_description = "Makes Manual Unwrapping Object"
def execute(self, context):
scene = context.scene
old_context = context.area.type
# Check if group exists
if check_group_exist(self, context) is False:
return {'CANCELLED'}
context.area.type = 'VIEW_3D'
group = scene.ms_lightmap_groups[scene.ms_lightmap_groups_index]
if bpy.ops.object.mode_set.poll():
bpy.ops.object.mode_set(mode='OBJECT', toggle=False)
if group.bake is True and bpy.data.groups[group.name].objects:
# Check if objects are all on the visible Layers.
isAllObjVisible = check_all_objects_visible(self, context)
if bpy.data.objects.get(group.name + "_mergedObject") is not None:
self.report({'INFO'}, "Old Merged Object Exists!!!")
elif isAllObjVisible is False:
self.report({'INFO'}, "Not All Objects Are Visible!!!")
else:
resX = int(group.resolutionX)
resY = int(group.resolutionY)
bpy.ops.object.ms_create_lightmap(
group_name=group.name, resolutionX=resX, resolutionY=resY)
bpy.ops.object.ms_merge_objects(
group_name=group.name, unwrap=False)
context.area.type = old_context
return{'FINISHED'}
class TexAtl_RunFinish(Operator):
bl_idname = "object.ms_run_remove"
bl_label = "Remove Manual Unwrapping Object"
bl_description = "Removes Manual Unwrapping Object"
def execute(self, context):
scene = context.scene
old_context = context.area.type
# Check if group exists
if check_group_exist(self, context) is False:
return {'CANCELLED'}
group = scene.ms_lightmap_groups[scene.ms_lightmap_groups_index]
context.area.type = 'VIEW_3D'
if bpy.ops.object.mode_set.poll():
bpy.ops.object.mode_set(mode='OBJECT', toggle=False)
if group.bake is True and bpy.data.groups[group.name].objects:
# Check if objects are all on the visible Layers.
isAllObjVisible = check_all_objects_visible(self, context)
if isAllObjVisible is True:
bpy.ops.object.ms_separate_objects(group_name=group.name)
else:
self.report({'INFO'}, "Not All Objects Are Visible!!!")
context.area.type = old_context
return{'FINISHED'}
class TexAtl_UVLayers(PropertyGroup):
name = StringProperty(default="")
class TexAtl_VertexGroups(PropertyGroup):
name = StringProperty(default="")
class TexAtl_Groups(PropertyGroup):
name = StringProperty(default="")
class TexAtl_MSLightmapGroups(PropertyGroup):
name = StringProperty(default="")
bake = BoolProperty(default=True)
unwrap_type = EnumProperty(
name="unwrap_type",
items=(('0', 'Smart_Unwrap', 'Smart_Unwrap'),
('1', 'Lightmap', 'Lightmap'),
('2', 'No_Unwrap', 'No_Unwrap'),
),
)
resolutionX = EnumProperty(
name="resolutionX",
items=(('256', '256', ''),
('512', '512', ''),
('1024', '1024', ''),
('2048', '2048', ''),
('4096', '4096', ''),
('8192', '8192', ''),
('16384', '16384', ''),
),
default='1024'
)
resolutionY = EnumProperty(
name="resolutionY",
items=(('256', '256', ''),
('512', '512', ''),
('1024', '1024', ''),
('2048', '2048', ''),
('4096', '4096', ''),
('8192', '8192', ''),
('16384', '16384', ''),
),
default='1024'
)
autoUnwrapPrecision = FloatProperty(
name="autoUnwrapPrecision",
default=0.01,
min=0.001,
max=10
)
template_list_controls = StringProperty(
default="bake",
options={"HIDDEN"},
)
class TexAtl_MergedObjects(PropertyGroup):
name = StringProperty()
vertex_groups = CollectionProperty(
type=TexAtl_VertexGroups,
)
groups = CollectionProperty(type=TexAtl_Groups)
uv_layers = CollectionProperty(type=TexAtl_UVLayers)
class TexAtl_AddSelectedToGroup(Operator):
bl_idname = "scene.ms_add_selected_to_group"
bl_label = "Add to Group"
bl_description = "Adds selected Objects to current Group"
def execute(self, context):
scene = context.scene
group_name = scene.ms_lightmap_groups[
scene.ms_lightmap_groups_index].name
# Create a New Group if it was deleted.
obj_group = bpy.data.groups.get(group_name)
if obj_group is None:
obj_group = bpy.data.groups.new(group_name)
# Add objects to a group
if bpy.ops.object.mode_set.poll():
bpy.ops.object.mode_set(mode='OBJECT', toggle=False)
for object in context.selected_objects:
if object.type == 'MESH' and object.name not in obj_group.objects:
obj_group.objects.link(object)
return {'FINISHED'}
class TexAtl_SelectGroup(Operator):
bl_idname = "scene.ms_select_group"
bl_label = "sel Group"
bl_description = "Selected Objects of current Group"
def execute(self, context):
scene = context.scene
group_name = scene.ms_lightmap_groups[
scene.ms_lightmap_groups_index].name
# Check if group exists
if check_group_exist(self, context) is False:
return {'CANCELLED'}
if bpy.ops.object.mode_set.poll():
bpy.ops.object.mode_set(mode='OBJECT', toggle=False)
bpy.ops.object.select_all(action='DESELECT')
obj_group = bpy.data.groups[group_name]
for object in obj_group.objects:
object.select = True
return {'FINISHED'}
class TexAtl_RemoveFromGroup(Operator):
bl_idname = "scene.ms_remove_selected"
bl_label = "del Selected"
bl_description = "Remove Selected Group and UVs"
# remove all modifiers
# for m in mesh.modifiers:
# bpy.ops.object.modifier_remove(modifier=m.name)
def execute(self, context):
scene = context.scene
# Check if group exists
if check_group_exist(self, context) is False:
return {'CANCELLED'}
if bpy.ops.object.mode_set.poll():
bpy.ops.object.mode_set(mode='OBJECT', toggle=False)
for group in scene.ms_lightmap_groups:
group_name = group.name
obj_group = bpy.data.groups[group_name]
for object in context.selected_objects:
scene.objects.active = object
if object.type == 'MESH' and object.name in obj_group.objects:
# remove UV
tex = object.data.uv_textures.get(group_name)
if tex is not None:
object.data.uv_textures.remove(tex)
# remove from group
obj_group.objects.unlink(object)
object.hide_render = False
return {'FINISHED'}
class TexAtl_RemoveOtherUVs(Operator):
bl_idname = "scene.ms_remove_other_uv"
bl_label = "remOther"
bl_description = "Remove Other UVs from Selected"
def execute(self, context):
scene = context.scene
group_name = scene.ms_lightmap_groups[
scene.ms_lightmap_groups_index].name
# Check if group exists
if check_group_exist(self, context) is False:
return {'CANCELLED'}
if bpy.ops.object.mode_set.poll():
bpy.ops.object.mode_set(mode='OBJECT', toggle=False)
# bpy.ops.object.select_all(action='DESELECT')
obj_group = bpy.data.groups[group_name]
# Remove other UVs of selected objects
for object in context.selected_objects:
scene.objects.active = object
if object.type == 'MESH' and object.name in obj_group.objects:
# remove UVs
UVLIST = []
for uv in object.data.uv_textures:
if uv.name != group_name:
UVLIST.append(uv.name)
for uvName in UVLIST:
tex = object.data.uv_textures[uvName]
object.data.uv_textures.remove(tex)
UVLIST.clear() # clear array
return {'FINISHED'}
class TexAtl_AddLightmapGroup(Operator):
bl_idname = "scene.ms_add_lightmap_group"
bl_label = "add Lightmap"
bl_description = "Adds a new Lightmap Group"
name = StringProperty(name="Group Name", default='TextureAtlas')
def execute(self, context):
scene = context.scene
obj_group = bpy.data.groups.new(self.name)
item = scene.ms_lightmap_groups.add()
item.name = obj_group.name
#item.resolution = '1024'
scene.ms_lightmap_groups_index = len(scene.ms_lightmap_groups) - 1
# Add selested objects to group
for object in context.selected_objects:
if object.type == 'MESH':
obj_group.objects.link(object)
return {'FINISHED'}
def invoke(self, context, event):
wm = context.window_manager
return wm.invoke_props_dialog(self)
class TexAtl_DelLightmapGroup(Operator):
bl_idname = "scene.ms_del_lightmap_group"
bl_label = "delete Lightmap"
bl_description = "Deletes active Lightmap Group"
def execute(self, context):
scene = context.scene
if len(scene.ms_lightmap_groups) > 0:
idx = scene.ms_lightmap_groups_index
group_name = scene.ms_lightmap_groups[idx].name
# Remove Group
group = bpy.data.groups.get(group_name)
if group is not None:
# Unhide Objects if they are hidden
for obj in group.objects:
obj.hide_render = False
obj.hide = False
bpy.data.groups.remove(group)
# Remove Lightmap Group
scene.ms_lightmap_groups.remove(scene.ms_lightmap_groups_index)
scene.ms_lightmap_groups_index -= 1
if scene.ms_lightmap_groups_index < 0:
scene.ms_lightmap_groups_index = 0
return {'FINISHED'}
class TexAtl_CreateLightmap(Operator):
bl_idname = "object.ms_create_lightmap"
bl_label = "TextureAtlas - Generate Lightmap"
bl_description = "Generates a Lightmap"
group_name = StringProperty(default='')
resolutionX = IntProperty(default=1024)
resolutionY = IntProperty(default=1024)
def execute(self, context):
scene = context.scene
# Create/Update Image
image = bpy.data.images.get(self.group_name)
if image is None:
image = bpy.data.images.new(
name=self.group_name, width=self.resolutionX, height=self.resolutionY)
image.generated_type = 'COLOR_GRID'
image.generated_width = self.resolutionX
image.generated_height = self.resolutionY
obj_group = bpy.data.groups[self.group_name]
# non MESH objects for removal list
NON_MESH_LIST = []
for object in obj_group.objects:
# Remove non MESH objects
if object.type != 'MESH':
NON_MESH_LIST.append(object)
elif object.type == 'MESH' and len(object.data.vertices) == 0:
NON_MESH_LIST.append(object)
else:
# Add Image to faces
if object.data.uv_textures.active is None:
tex = object.data.uv_textures.new()
tex.name = self.group_name
else:
if self.group_name not in object.data.uv_textures:
tex = object.data.uv_textures.new()
tex.name = self.group_name
tex.active = True
tex.active_render = True
else:
tex = object.data.uv_textures[self.group_name]
tex.active = True
tex.active_render = True
for face_tex in tex.data:
face_tex.image = image
# remove non NESH objects
for object in NON_MESH_LIST:
obj_group.objects.unlink(object)
NON_MESH_LIST.clear() # clear array
return{'FINISHED'}
class TexAtl_MergeObjects(Operator):
bl_idname = "object.ms_merge_objects"
bl_label = "TextureAtlas - TexAtl_MergeObjects"
bl_description = "Merges Objects and stores Origins"
group_name = StringProperty(default='')
unwrap = BoolProperty(default=False)
def execute(self, context):
scene = context.scene
# objToDelete = None
bpy.ops.object.select_all(action='DESELECT')
ob_merged_old = bpy.data.objects.get(self.group_name + "_mergedObject")
if ob_merged_old is not None:
ob_merged_old.select = True
scene.objects.active = ob_merged_old
bpy.ops.object.delete(use_global=True)
me = bpy.data.meshes.new(self.group_name + '_mergedObject')
ob_merge = bpy.data.objects.new(self.group_name + '_mergedObject', me)
ob_merge.location = scene.cursor_location # position object at 3d-cursor
scene.objects.link(ob_merge) # Link object to scene
me.update()
ob_merge.select = False
bpy.ops.object.select_all(action='DESELECT')
# We do the MergeList beacuse we will duplicate grouped objects
mergeList = []
for object in bpy.data.groups[self.group_name].objects:
mergeList.append(object)
for object in mergeList:
# make object temporary unhidden
isObjHideSelect = object.hide_select
object.hide = False
object.hide_select = False
bpy.ops.object.select_all(action='DESELECT')
object.select = True
# activate lightmap uv if existant
for uv in object.data.uv_textures:
if uv.name == self.group_name:
uv.active = True
scene.objects.active = object
# Duplicate Temp Object
bpy.ops.object.select_all(action='DESELECT')
object.select = True
scene.objects.active = object
bpy.ops.object.duplicate(linked=False, mode='TRANSLATION')
activeNowObject = scene.objects.active
activeNowObject.select = True
# hide render of original mesh
object.hide_render = True
object.hide = True
object.select = False
object.hide_select = isObjHideSelect
# remove unused UV
# remove UVs
UVLIST = []
for uv in activeNowObject.data.uv_textures:
if uv.name != self.group_name:
UVLIST.append(uv.name)
for uvName in UVLIST:
tex = activeNowObject.data.uv_textures[uvName]
activeNowObject.data.uv_textures.remove(tex)
UVLIST.clear() # clear array
# create vertex groups for each selected object
scene.objects.active = activeNowObject
vgroup = activeNowObject.vertex_groups.new(name=object.name)
vgroup.add(
list(range(len(activeNowObject.data.vertices))), weight=1.0, type='ADD')
# save object name in merged object
item = ob_merge.ms_merged_objects.add()
item.name = object.name
# Add material to a tempObject if there are no materialSlots on the object
if not activeNowObject.data.materials:
matName = "zz_TextureAtlas_NO_Material"
mat = bpy.data.materials.get(matName)
if mat is None:
mat = bpy.data.materials.new(matName)
activeNowObject.data.materials.append(mat)
# merge objects together
bpy.ops.object.select_all(action='DESELECT')
activeNowObject.select = True
ob_merge.select = True
scene.objects.active = ob_merge
bpy.ops.object.join()
mergeList.clear() # Clear Merge List
# make Unwrap
bpy.ops.object.select_all(action='DESELECT')
ob_merge.select = True
scene.objects.active = ob_merge
# Unfide all faces
bpy.ops.object.mode_set(mode='EDIT')
bpy.ops.mesh.reveal()
bpy.ops.mesh.select_all(action='SELECT')
bpy.ops.object.mode_set(mode='OBJECT', toggle=False)
if self.unwrap is True:
groupProps = scene.ms_lightmap_groups[self.group_name]
unwrapType = groupProps.unwrap_type
if unwrapType == '0' or unwrapType == '1':
bpy.ops.object.mode_set(mode='EDIT')
if unwrapType == '0':
bpy.ops.uv.smart_project(
angle_limit=72.0, island_margin=groupProps.autoUnwrapPrecision, user_area_weight=0.0)
elif unwrapType == '1':
bpy.ops.uv.lightmap_pack(
PREF_CONTEXT='ALL_FACES', PREF_PACK_IN_ONE=True, PREF_NEW_UVLAYER=False,
PREF_APPLY_IMAGE=False, PREF_IMG_PX_SIZE=1024, PREF_BOX_DIV=48, PREF_MARGIN_DIV=groupProps.autoUnwrapPrecision)
bpy.ops.object.mode_set(mode='OBJECT', toggle=False)
return{'FINISHED'}
class TexAtl_SeparateObjects(Operator):
bl_idname = "object.ms_separate_objects"
bl_label = "TextureAtlas - Separate Objects"
bl_description = "Separates Objects and restores Origin"
group_name = StringProperty(default='')
def execute(self, context):
scene = context.scene
ob_merged = bpy.data.objects.get(self.group_name + "_mergedObject")
if ob_merged is not None:
# if scene.objects.active is not None:
# bpy.ops.object.mode_set(mode='OBJECT', toggle=False)
bpy.ops.object.select_all(action='DESELECT')
ob_merged.hide = False
ob_merged.select = True
groupSeparate = bpy.data.groups.new(ob_merged.name)
groupSeparate.objects.link(ob_merged)
ob_merged.select = False
doUnhidePolygons = False
for ms_obj in ob_merged.ms_merged_objects:
# select vertex groups and separate group from merged
# object
bpy.ops.object.select_all(action='DESELECT')
ob_merged.select = True
scene.objects.active = ob_merged
bpy.ops.object.mode_set(mode='EDIT')
if doUnhidePolygons is False:
# Unhide Polygons only once
bpy.ops.mesh.reveal()
doUnhidePolygons = True
bpy.ops.mesh.select_all(action='DESELECT')
ob_merged.vertex_groups.active_index = ob_merged.vertex_groups[
ms_obj.name].index
bpy.ops.object.vertex_group_select()
bpy.ops.mesh.separate(type='SELECTED')
bpy.ops.object.mode_set(mode='OBJECT', toggle=False)
# scene.objects.active.select = False
# find separeted object
ob_separeted = None
for obj in groupSeparate.objects:
if obj != ob_merged:
ob_separeted = obj
break
# Copy UV Coordinates to the original mesh
if ms_obj.name in scene.objects:
ob_merged.select = False
ob_original = scene.objects[ms_obj.name]
isOriginalToSelect = ob_original.hide_select
ob_original.hide_select = False
ob_original.hide = False
ob_original.select = True
scene.objects.active = ob_separeted
bpy.ops.object.join_uvs()
ob_original.hide_render = False
ob_original.select = False
ob_original.hide_select = isOriginalToSelect
ob_original.data.update()
# delete separeted object
bpy.ops.object.select_all(action='DESELECT')
ob_separeted.select = True
bpy.ops.object.delete(use_global=False)
# delete duplicated object
bpy.ops.object.select_all(action='DESELECT')
ob_merged.select = True
bpy.ops.object.delete(use_global=False)
return{'FINISHED'}
def register():
bpy.utils.register_module(__name__)
bpy.types.Object.ms_merged_objects = CollectionProperty(
type=TexAtl_MergedObjects)
bpy.types.Scene.ms_lightmap_groups = CollectionProperty(
type=TexAtl_MSLightmapGroups)
bpy.types.Scene.ms_lightmap_groups_index = IntProperty()
def unregister():
bpy.utils.unregister_module(__name__)
if __name__ == "__main__":
register()