~ubuntu-branches/ubuntu/trusty/blender/trusty

« back to all changes in this revision

Viewing changes to source/blender/collada/SkinInfo.cpp

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi
  • Date: 2012-05-12 20:02:22 UTC
  • mfrom: (14.2.16 sid)
  • Revision ID: package-import@ubuntu.com-20120512200222-lznjs2cxzaq96wua
Tags: 2.63a-1
* New upstream bugfix release
  + debian/patches/: re-worked since source code changed

Show diffs side-by-side

added added

removed removed

Lines of Context:
151
151
// called from write_controller
152
152
Object *SkinInfo::create_armature(Scene *scene)
153
153
{
154
 
        ob_arm = add_object(scene, OB_ARMATURE);
 
154
        ob_arm = bc_add_object(scene, OB_ARMATURE, NULL);
155
155
        return ob_arm;
156
156
}
157
157