Axiom.Graphics.ShadowRenderable.SetCustomParameter C# (CSharp) Méthode

SetCustomParameter() public méthode

public SetCustomParameter ( int index, Vector4 val ) : void
index int
val Vector4
Résultat void
		public void SetCustomParameter( int index, Vector4 val )
		{
			while ( customParams.Count <= index )
				customParams.Add( Vector4.Zero );
			customParams[ index ] = val;
		}