Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


IBaseUxmlFactory

Base interface for UXML factories. While it is not strictly required, concrete factories should derive from the generic class UxmlFactory<TCreatedType, TTraits> or UxmlObjectFactory.
Read time 1 minuteLast updated 4 days ago

Definition

Warning
Deprecated. IUxmlFactory is deprecated and will be removed. Use UxmlElementAttribute instead.
public interface IBaseUxmlFactory

Properties

Property

Description

canHaveAnyAttributeMust return true if the UXML element attributes are not restricted to the values enumerated by IBaseUxmlFactory.uxmlAttributesDescription.
substituteForTypeNameThe type of element for which this element type can substitute for.
substituteForTypeNamespaceThe UXML namespace for the type returned by IBaseUxmlFactory.substituteForTypeName.
substituteForTypeQualifiedNameThe fully qualified XML name for the type returned by IBaseUxmlFactory.substituteForTypeName.
uxmlAttributesDescriptionDescribes the UXML attributes expected by the element. The attributes enumerated here will appear in the UXML schema.
uxmlChildElementsDescriptionDescribes the types of element that can appear as children of this element in a UXML file.
uxmlNameThe name of the UXML element read by the factory.
uxmlNamespaceThe namespace of the UXML element read by the factory.
uxmlQualifiedNameThe fully qualified name of the UXML element read by the factory.
uxmlTypeThe type of the UXML element read by the factory.

Methods

Method

Description

AcceptsAttributeBagReturns true if the factory accepts the content of the attribute bag.