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

GetCustomParameter() public method

public GetCustomParameter ( int index ) : Vector4
index int
return Vector4
		public Vector4 GetCustomParameter( int index )
		{
			if ( customParams[ index ] == null )
			{
				throw new Exception( "A parameter was not found at the given index" );
			}
			else
			{
				return (Vector4)customParams[ index ];
			}
		}