Axiom.Core.SubEntity.SetCustomParameter C# (CSharp) Method

SetCustomParameter() public method

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