using System;
using System.Xml;
using CDAColladaNET.Import.Attributes;
// Copyright (c) 2005 Accelerated Pictures, LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
namespace ColladaNET.Import{
public class Animation : NamedNode
{
#region Constants
private static readonly string kSources = "dae:source";
private static readonly string kSamplers = "dae:sampler";
private static readonly string kChannels = "dae:channel";
#endregion
#region Accessors
private CDA.SourcesAttr mSources;
public CDA.SourcesAttr Sources { get { return mSources; } }
private CDA.SamplersAttr mSamplers;
public CDA.SamplersAttr Samplers { get { return mSamplers; } }
private CDA.ChannelsAttr mChannels;
public CDA.ChannelsAttr Channels { get { return mChannels; } }
#endregion
#region Constructors
public Animation( XmlNode source ) : base( source )
{
mSources = new CDA.SourcesAttr( source , kSources );
mSamplers = new CDA.SamplersAttr( source , kSamplers );
mChannels = new CDA.ChannelsAttr( source , kChannels );
}
#endregion
}
}
|