LSLib.Granny.Model.ColladaAnimation.ImportSources C# (CSharp) Method

ImportSources() private method

private ImportSources ( ) : void
return void
        private void ImportSources()
        {
            Sources = new Dictionary<String, Source>();
            foreach (var item in Animation.Items)
            {
                if (item is source)
                {
                    var src = Source.FromCollada(item as source);
                    Sources.Add(src.id, src);
                }
            }
        }