Axiom.RenderSystems.Xna.FixedFunctionEmulation.FixedFunctionPrograms.FixedFunctionProgramsParameters.SetTextureEnabled C# (CSharp) Method

SetTextureEnabled() public method

public SetTextureEnabled ( int index, bool value ) : void
index int
value bool
return void
			public void SetTextureEnabled( int index, bool value )
			{
				while ( index >= textureEnabled.Count )
					textureEnabled.Add( false );

				textureEnabled[ index ] = value;
			}