00001 /* 00002 ----------------------------------------------------------------------------- 00003 This source file is part of OpenSpace3D 00004 For the latest info, see http://www.openspace3d.com 00005 00006 Copyright (c) 2010 I-maginer 00007 00008 This program is free software; you can redistribute it and/or modify it under 00009 the terms of the GNU Lesser General Public License as published by the Free Software 00010 Foundation; either version 2 of the License, or (at your option) any later 00011 version. 00012 00013 This program is distributed in the hope that it will be useful, but WITHOUT 00014 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 00015 FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. 00016 00017 You should have received a copy of the GNU Lesser General Public License along with 00018 this program; if not, write to the Free Software Foundation, Inc., 59 Temple 00019 Place - Suite 330, Boston, MA 02111-1307, USA, or go to 00020 http://www.gnu.org/copyleft/lesser.txt 00021 00022 You may alternatively use this source under the terms of a specific version of 00023 the OpenSpace3D Unrestricted License provided you have obtained such a license from 00024 I-maginer. 00025 ----------------------------------------------------------------------------- 00026 */ 00027 00028 #include "../SO3Animation/SO3SkeletonAnimation.h" 00029 #include "../SO3Animation/SO3SkeletonAnimationTrack.h" 00030 00031 namespace SO3 00032 { 00033 00034 SSkeletonAnimationTrack::SSkeletonAnimationTrack(std::string animationTrackName, SSkeletonAnimation* animation, unsigned short skeletonTrackAnimationId) : SAnimTrack(animationTrackName, animation, SAnimTrack::SO3_NODE_TRACK) 00035 { 00036 ogreAnimationTrack = GetParentAnimation()->GetOgreAnimationPointer()->getNodeTrack(skeletonTrackAnimationId); 00037 } 00038 00039 SSkeletonAnimationTrack::SSkeletonAnimationTrack() : SAnimTrack("", 0, SAnimTrack::SO3_NODE_TRACK) 00040 { 00041 //Forbiden (private) 00042 } 00043 00044 }
1.6.3