Axiom.Graphics.Compositor.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()
		{
			if ( !IsLoaded )
			{
				// compile if needed
				if ( compilationRequired )
				{
					Compile();
				}
			}
		}