Axiom.Core.SubEntity.GetCustomParameter C# (CSharp) Метод

GetCustomParameter() публичный Метод

public GetCustomParameter ( int index ) : Vector4
index int
Результат 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 ];
			}
		}