Only export Actions with a user count > 0
This commit is contained in:
parent
cf04e1a827
commit
8e6442cf05
1 changed files with 1 additions and 1 deletions
|
@ -1144,7 +1144,7 @@ class DaeExporter:
|
|||
self.writel(S_ANIM_CLIPS,0,'<library_animation_clips>')
|
||||
|
||||
for x in bpy.data.actions[:]:
|
||||
if x in self.action_constraints:
|
||||
if x.users==0 or x in self.action_constraints:
|
||||
continue
|
||||
|
||||
bones=[]
|
||||
|
|
Loading…
Reference in a new issue