FBX.Scene.Materials.MaterialParameters.RemoveTextureParameter C# (CSharp) Method

RemoveTextureParameter() protected method

Removes a texture parameter (called by one of our TextureParameter which was assigned a texture)
protected RemoveTextureParameter ( Texture2D _Texture ) : void
_Texture Texture2D
return void
        protected void RemoveTextureParameter( Texture2D _Texture )
        {
            if ( _Texture == null || !m_TextureParameters.Contains( _Texture ) )
                return;

            m_TextureParameters.Remove( _Texture );
        }