2015-10-08 18:00:40 +00:00
# ##### 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 #####
# Script copyright (c) Andreas Esau
bl_info = {
" name " : " Godot Export Manager " ,
" author " : " Andreas Esau " ,
" version " : ( 1 , 0 ) ,
" blender " : ( 2 , 7 , 0 ) ,
" location " : " Scene Properties > Godot Export Manager " ,
" description " : " Godot Export Manager uses the Better Collada Exporter to manage Export Groups and automatically export the objects groups to Collada Files. " ,
" warning " : " " ,
" wiki_url " : ( " http://www.godotengine.org " ) ,
" tracker_url " : " " ,
" category " : " Import-Export " }
import bpy
from bpy . props import StringProperty , BoolProperty , EnumProperty , FloatProperty , FloatVectorProperty , IntProperty , CollectionProperty , PointerProperty
import os
from bpy . app . handlers import persistent
from mathutils import Vector , Matrix
class godot_export_manager ( bpy . types . Panel ) :
bl_label = " Godot Export Manager "
bl_space_type = ' PROPERTIES '
bl_region_type = ' WINDOW '
bl_context = " scene "
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
bpy . types . Scene . godot_export_on_save = BoolProperty ( default = False )
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
### draw function for all ui elements
def draw ( self , context ) :
layout = self . layout
split = self . layout . split ( )
scene = bpy . data . scenes [ 0 ]
ob = context . object
scene = context . scene
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
row = layout . row ( )
col = row . column ( )
col . prop ( scene , " godot_export_on_save " , text = " Export Groups on save " )
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
row = layout . row ( )
col = row . column ( align = True )
op = col . operator ( " scene.godot_add_objects_to_group " , text = " Add selected objects to Group " , icon = " COPYDOWN " )
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
op = col . operator ( " scene.godot_delete_objects_from_group " , text = " Delete selected objects from Group " , icon = " PASTEDOWN " )
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
row = layout . row ( )
col = row . column ( )
col . label ( text = " Export Groups: " )
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
row = layout . row ( )
col = row . column ( )
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
col . template_list ( " UI_List_Godot " , " dummy " , scene , " godot_export_groups " , scene , " godot_export_groups_index " , rows = 1 , maxrows = 10 , type = ' DEFAULT ' )
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
col = row . column ( align = True )
col . operator ( " scene.godot_add_export_group " , text = " " , icon = " ZOOMIN " )
col . operator ( " scene.godot_delete_export_group " , text = " " , icon = " ZOOMOUT " )
col . operator ( " scene.godot_export_all_groups " , text = " " , icon = " EXPORT " )
2016-04-02 18:26:12 +00:00
if len ( scene . godot_export_groups ) > 0 :
2015-10-08 18:00:40 +00:00
row = layout . row ( )
col = row . column ( )
group = scene . godot_export_groups [ scene . godot_export_groups_index ]
col . prop ( group , " name " , text = " Group Name " )
col . prop ( group , " export_name " , text = " Export Name " )
col . prop ( group , " export_path " , text = " Export Filepath " )
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
row = layout . row ( )
col = row . column ( )
row = layout . row ( )
col = row . column ( )
col . label ( text = " Export Settings: " )
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
col = col . row ( align = True )
col . prop ( group , " apply_loc " , toggle = True , icon = " MAN_TRANS " )
col . prop ( group , " apply_rot " , toggle = True , icon = " MAN_ROT " )
col . prop ( group , " apply_scale " , toggle = True , icon = " MAN_SCALE " )
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
row = layout . row ( )
col = row . column ( )
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
col . prop ( group , " use_include_particle_duplicates " )
col . prop ( group , " use_mesh_modifiers " )
col . prop ( group , " use_tangent_arrays " )
col . prop ( group , " use_triangles " )
col . prop ( group , " use_copy_images " )
col . prop ( group , " use_active_layers " )
col . prop ( group , " use_anim " )
col . prop ( group , " use_anim_action_all " )
col . prop ( group , " use_anim_skip_noexp " )
col . prop ( group , " use_anim_optimize " )
col . prop ( group , " anim_optimize_precision " )
col . prop ( group , " use_metadata " )
### Custom template_list look
class UI_List_Godot ( bpy . types . UIList ) :
def draw_item ( self , context , layout , data , item , icon , active_data , active_propname , index ) :
ob = data
slot = item
col = layout . row ( align = True )
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
col . label ( text = item . name , icon = " GROUP " )
col . prop ( item , " active " , text = " " )
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
op = col . operator ( " scene.godot_select_group_objects " , text = " " , emboss = False , icon = " RESTRICT_SELECT_OFF " )
op . idx = index
op = col . operator ( " scene.godot_export_group " , text = " " , emboss = False , icon = " EXPORT " )
op . idx = index
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
class add_objects_to_group ( bpy . types . Operator ) :
bl_idname = " scene.godot_add_objects_to_group "
bl_label = " Add Objects to Group "
bl_description = " Adds the selected Objects to the active group below. "
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
undo = BoolProperty ( default = True )
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
def execute ( self , context ) :
scene = context . scene
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
objects_str = " "
if len ( scene . godot_export_groups ) > 0 :
for i , object in enumerate ( context . selected_objects ) :
if object . name not in scene . godot_export_groups [ scene . godot_export_groups_index ] . nodes :
node = scene . godot_export_groups [ scene . godot_export_groups_index ] . nodes . add ( )
node . name = object . name
if i == 0 :
objects_str + = object . name
else :
2016-04-02 18:26:12 +00:00
objects_str + = " , " + object . name
2015-10-08 18:00:40 +00:00
self . report ( { ' INFO ' } , objects_str + " added to group. " )
if self . undo :
bpy . ops . ed . undo_push ( message = " Objects added to group " )
else :
2016-04-02 18:26:12 +00:00
self . report ( { ' WARNING ' } , " Create a group first. " )
2015-10-08 18:00:40 +00:00
return { ' FINISHED ' }
class del_objects_from_group ( bpy . types . Operator ) :
bl_idname = " scene.godot_delete_objects_from_group "
bl_label = " Delete Objects from Group "
bl_description = " Delets the selected Objects from the active group below. "
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
def execute ( self , context ) :
scene = context . scene
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
if len ( scene . godot_export_groups ) > 0 :
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
selected_objects = [ ]
for object in context . selected_objects :
selected_objects . append ( object . name )
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
objects_str = " "
j = 0
for i , node in enumerate ( scene . godot_export_groups [ scene . godot_export_groups_index ] . nodes ) :
if node . name in selected_objects :
scene . godot_export_groups [ scene . godot_export_groups_index ] . nodes . remove ( i )
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
if j == 0 :
objects_str + = object . name
else :
2016-04-02 18:26:12 +00:00
objects_str + = " , " + object . name
2015-10-08 18:00:40 +00:00
j + = 1
2016-04-02 18:26:12 +00:00
self . report ( { ' INFO ' } , objects_str + " deleted from group. " )
2015-10-08 18:00:40 +00:00
bpy . ops . ed . undo_push ( message = " Objects deleted from group " )
else :
2016-04-02 18:26:12 +00:00
self . report ( { ' WARNING ' } , " There is no group to delete from. " )
2015-10-08 18:00:40 +00:00
return { ' FINISHED ' }
class select_group_objects ( bpy . types . Operator ) :
bl_idname = " scene.godot_select_group_objects "
bl_label = " Select Group Objects "
bl_description = " Will select all group Objects in the scene. "
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
idx = IntProperty ( )
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
def execute ( self , context ) :
scene = context . scene
for object in context . scene . objects :
object . select = False
for node in scene . godot_export_groups [ self . idx ] . nodes :
if node . name in bpy . data . objects :
bpy . data . objects [ node . name ] . select = True
context . scene . objects . active = bpy . data . objects [ node . name ]
return { ' FINISHED ' }
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
class export_groups_autosave ( bpy . types . Operator ) :
bl_idname = " scene.godot_export_groups_autosave "
bl_label = " Export All Groups "
bl_description = " Exports all groups to Collada. "
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
def execute ( self , context ) :
scene = context . scene
if scene . godot_export_on_save :
for i in range ( len ( scene . godot_export_groups ) ) :
if scene . godot_export_groups [ i ] . active :
bpy . ops . scene . godot_export_group ( idx = i )
self . report ( { ' INFO ' } , " All Groups exported. " )
2016-04-02 18:26:12 +00:00
bpy . ops . ed . undo_push ( message = " Export all Groups " )
2015-10-08 18:00:40 +00:00
return { ' FINISHED ' }
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
class export_all_groups ( bpy . types . Operator ) :
bl_idname = " scene.godot_export_all_groups "
bl_label = " Export All Groups "
bl_description = " Exports all groups to Collada. "
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
def execute ( self , context ) :
scene = context . scene
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
for i in range ( 0 , len ( scene . godot_export_groups ) ) :
bpy . ops . scene . godot_export_group ( idx = i , export_all = True )
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
self . report ( { ' INFO ' } , " All Groups exported. " )
2016-04-02 18:26:12 +00:00
return { ' FINISHED ' }
2015-10-08 18:00:40 +00:00
class export_group ( bpy . types . Operator ) :
bl_idname = " scene.godot_export_group "
bl_label = " Export Group "
bl_description = " Exports the active group to destination folder as Collada file. "
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
idx = IntProperty ( default = 0 )
export_all = BoolProperty ( default = False )
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
def copy_object_recursive ( self , ob , parent , single_user = True ) :
new_ob = bpy . data . objects [ ob . name ] . copy ( )
if single_user or ob . type == " ARMATURE " :
new_mesh_data = new_ob . data . copy ( )
new_ob . data = new_mesh_data
bpy . context . scene . objects . link ( new_ob )
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
if ob != parent :
new_ob . parent = parent
else :
2016-04-02 18:26:12 +00:00
new_ob . parent = None
for child in ob . children :
2015-10-08 18:00:40 +00:00
self . copy_object_recursive ( child , new_ob , single_user )
2016-04-02 18:26:12 +00:00
new_ob . select = True
2015-10-08 18:00:40 +00:00
return new_ob
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
def delete_object ( self , ob ) :
if ob != None :
for child in ob . children :
self . delete_object ( child )
bpy . context . scene . objects . unlink ( ob )
2016-04-02 18:26:12 +00:00
bpy . data . objects . remove ( ob )
2015-10-08 18:00:40 +00:00
def convert_group_to_node ( self , group ) :
if group . dupli_group != None :
for object in group . dupli_group . objects :
if object . parent == None :
object = self . copy_object_recursive ( object , object , True )
matrix = Matrix ( object . matrix_local )
object . matrix_local = Matrix ( )
object . matrix_local * = group . matrix_local
object . matrix_local * = matrix
2016-04-02 18:26:12 +00:00
self . delete_object ( group )
2015-10-08 18:00:40 +00:00
def execute ( self , context ) :
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
scene = context . scene
group = context . scene . godot_export_groups
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
if not group [ self . idx ] . active and self . export_all :
return { ' FINISHED ' }
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
for i , object in enumerate ( group [ self . idx ] . nodes ) :
if object . name in bpy . data . objects :
pass
else :
group [ self . idx ] . nodes . remove ( i )
bpy . ops . ed . undo_push ( message = " Clear not existent Group Nodes. " )
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
path = group [ self . idx ] . export_path
if ( path . find ( " // " ) == 0 or path . find ( " \\ \\ " ) == 0 ) :
#if relative, convert to absolute
path = bpy . path . abspath ( path )
path = path . replace ( " \\ " , " / " )
2016-04-02 18:26:12 +00:00
### if path exists and group export name is set the group will be exported
2015-10-08 18:00:40 +00:00
if os . path . exists ( path ) and group [ self . idx ] . export_name != " " :
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
context . scene . layers = [ True , True , True , True , True , True , True , True , True , True , True , True , True , True , True , True , True , True , True , True ]
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
if group [ self . idx ] . export_name . endswith ( " .dae " ) :
path = os . path . join ( path , group [ self . idx ] . export_name )
2016-04-02 18:26:12 +00:00
else :
2015-10-08 18:00:40 +00:00
path = os . path . join ( path , group [ self . idx ] . export_name + " .dae " )
2016-04-02 18:26:12 +00:00
hide_select = [ ]
2015-10-08 18:00:40 +00:00
for object in context . scene . objects :
hide_select . append ( object . hide_select )
object . hide_select = False
object . select = False
context . scene . objects . active = None
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
### make particle duplicates, parent and select them
nodes_to_be_added = [ ]
if group [ self . idx ] . use_include_particle_duplicates :
for i , object in enumerate ( group [ self . idx ] . nodes ) :
if bpy . data . objects [ object . name ] . type != " EMPTY " :
context . scene . objects . active = bpy . data . objects [ object . name ]
bpy . data . objects [ object . name ] . select = True
bpy . ops . object . duplicates_make_real ( )
for object in context . selected_objects :
nodes_to_be_added . append ( object )
bpy . ops . object . parent_set ( type = " OBJECT " , keep_transform = False )
for object in context . selected_objects :
object . select = False
bpy . data . objects [ object . name ] . select = False
context . scene . objects . active = None
for object in nodes_to_be_added :
object . select = True
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
### select all other nodes from the group
for i , object in enumerate ( group [ self . idx ] . nodes ) :
if bpy . data . objects [ object . name ] . type == " EMPTY " :
self . convert_group_to_node ( bpy . data . objects [ object . name ] )
2016-04-02 18:26:12 +00:00
else :
2015-10-08 18:00:40 +00:00
bpy . data . objects [ object . name ] . select = True
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
bpy . ops . object . transform_apply ( location = group [ self . idx ] . apply_loc , rotation = group [ self . idx ] . apply_rot , scale = group [ self . idx ] . apply_scale )
2016-04-02 18:26:12 +00:00
bpy . ops . export_scene . dae ( check_existing = True , filepath = path , filter_glob = " *.dae " , object_types = group [ self . idx ] . object_types , use_export_selected = group [ self . idx ] . use_export_selected , use_mesh_modifiers = group [ self . idx ] . use_mesh_modifiers , use_tangent_arrays = group [ self . idx ] . use_tangent_arrays , use_triangles = group [ self . idx ] . use_triangles , use_copy_images = group [ self . idx ] . use_copy_images , use_active_layers = group [ self . idx ] . use_active_layers , use_anim = group [ self . idx ] . use_anim , use_anim_action_all = group [ self . idx ] . use_anim_action_all , use_anim_skip_noexp = group [ self . idx ] . use_anim_skip_noexp , use_anim_optimize = group [ self . idx ] . use_anim_optimize , anim_optimize_precision = group [ self . idx ] . anim_optimize_precision , use_metadata = group [ self . idx ] . use_metadata )
self . report ( { ' INFO ' } , ' " ' + group [ self . idx ] . name + ' " ' + " Group exported. " )
2015-10-08 18:00:40 +00:00
msg = " Export Group " + group [ self . idx ] . name
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
bpy . ops . ed . undo_push ( message = " " )
bpy . ops . ed . undo ( )
bpy . ops . ed . undo_push ( message = msg )
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
else :
2016-04-02 18:26:12 +00:00
self . report ( { ' INFO ' } , " Define Export Name and Export Path. " )
2015-10-08 18:00:40 +00:00
return { ' FINISHED ' }
class add_export_group ( bpy . types . Operator ) :
bl_idname = " scene.godot_add_export_group "
bl_label = " Adds a new export Group "
bl_description = " Creates a new Export Group with the selected Objects assigned to it. "
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
def execute ( self , context ) :
scene = context . scene
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
item = scene . godot_export_groups . add ( )
item . name = " New Group "
for object in context . selected_objects :
node = item . nodes . add ( )
node . name = object . name
2016-04-02 18:26:12 +00:00
scene . godot_export_groups_index = len ( scene . godot_export_groups ) - 1
2015-10-08 18:00:40 +00:00
bpy . ops . ed . undo_push ( message = " Create New Export Group " )
return { ' FINISHED ' }
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
class del_export_group ( bpy . types . Operator ) :
bl_idname = " scene.godot_delete_export_group "
bl_label = " Delets the selected export Group "
bl_description = " Delets the active Export Group. "
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
def invoke ( self , context , event ) :
2016-04-02 18:26:12 +00:00
wm = context . window_manager
2015-10-08 18:00:40 +00:00
return wm . invoke_confirm ( self , event )
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
def execute ( self , context ) :
scene = context . scene
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
scene . godot_export_groups . remove ( scene . godot_export_groups_index )
if scene . godot_export_groups_index > 0 :
scene . godot_export_groups_index - = 1
bpy . ops . ed . undo_push ( message = " Delete Export Group " )
2016-04-02 18:26:12 +00:00
return { ' FINISHED ' }
2015-10-08 18:00:40 +00:00
class godot_node_list ( bpy . types . PropertyGroup ) :
name = StringProperty ( )
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
class godot_export_groups ( bpy . types . PropertyGroup ) :
name = StringProperty ( name = " Group Name " )
export_name = StringProperty ( name = " scene_name " )
nodes = CollectionProperty ( type = godot_node_list )
export_path = StringProperty ( subtype = " DIR_PATH " )
active = BoolProperty ( default = True , description = " Export Group " )
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
object_types = EnumProperty ( name = " Object Types " , options = { ' ENUM_FLAG ' } , items = ( ( ' EMPTY ' , " Empty " , " " ) , ( ' CAMERA ' , " Camera " , " " ) , ( ' LAMP ' , " Lamp " , " " ) , ( ' ARMATURE ' , " Armature " , " " ) , ( ' MESH ' , " Mesh " , " " ) , ( ' CURVE ' , " Curve " , " " ) , ) , default = { ' EMPTY ' , ' CAMERA ' , ' LAMP ' , ' ARMATURE ' , ' MESH ' , ' CURVE ' } )
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
apply_scale = BoolProperty ( name = " Apply Scale " , description = " Apply Scale before export. " , default = False )
apply_rot = BoolProperty ( name = " Apply Rotation " , description = " Apply Rotation before export. " , default = False )
apply_loc = BoolProperty ( name = " Apply Location " , description = " Apply Location before export. " , default = False )
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
use_export_selected = BoolProperty ( name = " Selected Objects " , description = " Export only selected objects (and visible in active layers if that applies). " , default = True )
use_mesh_modifiers = BoolProperty ( name = " Apply Modifiers " , description = " Apply modifiers to mesh objects (on a copy!). " , default = True )
use_tangent_arrays = BoolProperty ( name = " Tangent Arrays " , description = " Export Tangent and Binormal arrays (for normalmapping). " , default = False )
use_triangles = BoolProperty ( name = " Triangulate " , description = " Export Triangles instead of Polygons. " , default = False )
use_copy_images = BoolProperty ( name = " Copy Images " , description = " Copy Images (create images/ subfolder) " , default = False )
use_active_layers = BoolProperty ( name = " Active Layers " , description = " Export only objects on the active layers. " , default = True )
use_anim = BoolProperty ( name = " Export Animation " , description = " Export keyframe animation " , default = False )
use_anim_action_all = BoolProperty ( name = " All Actions " , description = ( " Export all actions for the first armature found in separate DAE files " ) , default = False )
use_anim_skip_noexp = BoolProperty ( name = " Skip (-noexp) Actions " , description = " Skip exporting of actions whose name end in (-noexp). Useful to skip control animations. " , default = True )
use_anim_optimize = BoolProperty ( name = " Optimize Keyframes " , description = " Remove double keyframes " , default = True )
anim_optimize_precision = FloatProperty ( name = " Precision " , description = ( " Tolerence for comparing double keyframes (higher for greater accuracy) " ) , min = 1 , max = 16 , soft_min = 1 , soft_max = 16 , default = 6.0 )
use_metadata = BoolProperty ( name = " Use Metadata " , default = True , options = { ' HIDDEN ' } )
use_include_particle_duplicates = BoolProperty ( name = " Include Particle Duplicates " , default = True )
2016-04-02 18:26:12 +00:00
def register ( ) :
2015-10-08 18:00:40 +00:00
bpy . utils . register_class ( godot_export_manager )
bpy . utils . register_class ( godot_node_list )
bpy . utils . register_class ( godot_export_groups )
bpy . utils . register_class ( add_export_group )
bpy . utils . register_class ( del_export_group )
bpy . utils . register_class ( export_all_groups )
bpy . utils . register_class ( export_groups_autosave )
bpy . utils . register_class ( export_group )
bpy . utils . register_class ( add_objects_to_group )
bpy . utils . register_class ( del_objects_from_group )
bpy . utils . register_class ( select_group_objects )
bpy . utils . register_class ( UI_List_Godot )
bpy . types . Scene . godot_export_groups = CollectionProperty ( type = godot_export_groups )
bpy . types . Scene . godot_export_groups_index = IntProperty ( default = 0 , min = 0 )
def unregister ( ) :
bpy . utils . unregister_class ( godot_export_manager )
bpy . utils . unregister_class ( godot_node_list )
bpy . utils . unregister_class ( godot_export_groups )
bpy . utils . unregister_class ( export_groups_autosave )
bpy . utils . unregister_class ( add_export_group )
bpy . utils . unregister_class ( del_export_group )
bpy . utils . unregister_class ( export_all_groups )
bpy . utils . unregister_class ( export_group )
bpy . utils . unregister_class ( add_objects_to_group )
bpy . utils . unregister_class ( del_objects_from_group )
bpy . utils . unregister_class ( select_group_objects )
bpy . utils . unregister_class ( UI_List_Godot )
@persistent
def auto_export ( dummy ) :
bpy . ops . scene . godot_export_groups_autosave ( )
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
bpy . app . handlers . save_post . append ( auto_export )
if __name__ == " __main__ " :
register ( )