Contents

subscript(_:)

Returns the material property with the specified name, for use with subscript syntax.

Declaration

subscript(name: String) -> MDLMaterialProperty? { get }

Parameters

  • name:

    The Name value of a material property in the material.

Return Value

The material property with the specified name, or nil if the material does not contain a material property with that name.

Discussion

This method is equivalent to the propertyNamed(_:) method but allows for the use of subscript syntax for reading material properties. To write material properties to the material, use the setProperty(_:) method.

See Also

Accessing material properties with subscript syntax