Epigene.UI.UIVideo.Parse C# (CSharp) Метод

Parse() публичный Метод

Parse the content of the dictionary and create a new gameobjet with this parameter
public Parse ( object>.Dictionary dict ) : void
dict object>.Dictionary
Результат void
		public override void Parse(Dictionary<string,object> dict)
		{

			if(dict.ContainsKey("file"))
			{
				Load(dict["file"].ToString());
			}
			
			//get base stuff
			base.Parse(dict);
		}//Parse()