Axiom.Graphics.Material.load C# (CSharp) Метод

load() защищенный Метод

Overridden from Resource.
By default, Materials are not loaded, and adding additional textures etc do not cause those textures to be loaded. When the Load method is called, all textures are loaded (if they are not already), GPU programs are created if applicable, and Controllers are instantiated. Once a material has been loaded, all changes made to it are immediately loaded too
protected load ( ) : void
Результат void
		protected override void load()
		{
			// compile if needed
			if ( this.compilationRequired )
			{
				this.Compile();
			}

			// load all the supported techniques
			for ( int i = 0; i < this.SupportedTechniques.Count; i++ )
			{
				( (Technique)this.SupportedTechniques[ i ] ).Load();
			}
		}