![]() |
|
Class representing the builtin definition of a prim given the schemas registered in the schema registry. More...
Public Member Functions | |
const TfTokenVector & | GetPropertyNames () const |
Return the list of names of builtin properties for this prim definition. More... | |
const TfTokenVector & | GetAppliedAPISchemas () const |
Return the list of names of the API schemas that have been applied to this prim definition in order. More... | |
SdfSpecType | GetSpecType (const TfToken &propName) const |
Return the SdfSpecType for propName if it is a builtin property of the prim type represented by this prim definition. More... | |
SdfPropertySpecHandle | GetSchemaPropertySpec (const TfToken &propName) const |
Return the property spec that defines the fallback for the property named propName on prims of this prim definition's type. More... | |
SdfAttributeSpecHandle | GetSchemaAttributeSpec (const TfToken &attrName) const |
This is a convenience method. More... | |
SdfRelationshipSpecHandle | GetSchemaRelationshipSpec (const TfToken &relName) const |
This is a convenience method. More... | |
template<class T > | |
bool | GetAttributeFallbackValue (const TfToken &attrName, T *value) const |
Retrieves the fallback value for the attribute named attrName and stores it in value if possible. More... | |
TfTokenVector | ListMetadataFields () const |
Returns the list of names of metadata fields that are defined by this prim definition for the prim itself. More... | |
template<class T > | |
bool | GetMetadata (const TfToken &key, T *value) const |
Retrieves the fallback value for the metadata field named key , that is defined by this prim definition for the prim itself and stores it in value if possible. More... | |
template<class T > | |
bool | GetMetadataByDictKey (const TfToken &key, const TfToken &keyPath, T *value) const |
Retrieves the value at keyPath from the fallback dictionary value for the dictionary metadata field named key , that is defined by this prim definition for the prim itself, and stores it in value if possible. More... | |
USD_API std::string | GetDocumentation () const |
Returns the documentation metadata defined by the prim definition for the prim itself. More... | |
TfTokenVector | ListPropertyMetadataFields (const TfToken &propName) const |
Returns the list of names of metadata fields that are defined by this prim definition for property propName if a property named propName exists. More... | |
template<class T > | |
bool | GetPropertyMetadata (const TfToken &propName, const TfToken &key, T *value) const |
Retrieves the fallback value for the metadata field named key , that is defined by this prim definition for the property named propName , and stores it in value if possible. More... | |
template<class T > | |
bool | GetPropertyMetadataByDictKey (const TfToken &propName, const TfToken &key, const TfToken &keyPath, T *value) const |
Retrieves the value at keyPath from the fallback dictionary value for the dictionary metadata field named key , that is defined by this prim definition for the property named propName , and stores it in value if possible. More... | |
USD_API std::string | GetPropertyDocumentation (const TfToken &propName) const |
Returns the documentation metadata defined by the prim definition for the property named propName if it exists. More... | |
USD_API bool | FlattenTo (const SdfLayerHandle &layer, const SdfPath &path, SdfSpecifier newSpecSpecifier=SdfSpecifierOver) const |
Copies the contents of this prim definition to a prim spec on the given layer at the given path . More... | |
USD_API UsdPrim | FlattenTo (const UsdPrim &parent, const TfToken &name, SdfSpecifier newSpecSpecifier=SdfSpecifierOver) const |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. Copies the contents of this prim definition to a prim spec at the current edit target for a prim with the given name under the prim parent . More... | |
USD_API UsdPrim | FlattenTo (const UsdPrim &prim, SdfSpecifier newSpecSpecifier=SdfSpecifierOver) const |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. Copies the contents of this prim definition to a prim spec at the current edit target for the given prim . More... | |
Friends | |
class | UsdSchemaRegistry |
Class representing the builtin definition of a prim given the schemas registered in the schema registry.
It provides access to the the builtin properties and metadata of a prim whose type is defined by this definition.
Instances of this class can only be created by the UsdSchemaRegistry.
Definition at line 48 of file primDefinition.h.
USD_API bool FlattenTo | ( | const SdfLayerHandle & | layer, |
const SdfPath & | path, | ||
SdfSpecifier | newSpecSpecifier = SdfSpecifierOver |
||
) | const |
Copies the contents of this prim definition to a prim spec on the given layer
at the given path
.
This includes the entire property spec for each of this definition's built-in properties as well as all of this definition's prim metadata.
If the prim definition represents a concrete prim type, the type name of the prim spec is set to the the type name of this prim definition. Otherwise the type name is set to empty. The 'apiSchemas' metadata on the prim spec will always be explicitly set to the combined list of all API schemas applied to this prim definition, i.e. the list returned by UsdPrimDefinition::GetAppliedAPISchemas. Note that if this prim definition is an API schema prim definition (see UsdSchemaRegistry::FindAppliedAPIPrimDefinition) then 'apiSchemas' will be empty as this prim definition does not "have" an applied API because instead it "is" an applied API.
If there is no prim spec at the given path
, a new prim spec is created at that path with the specifier newSpecSpecifier
. Any necessary ancestor specs will be created as well but they will always be created as overs. If a spec does exist at path
, then all of its properties and schema allowed metadata are cleared before it is populated from the prim definition.
USD_API UsdPrim FlattenTo | ( | const UsdPrim & | parent, |
const TfToken & | name, | ||
SdfSpecifier | newSpecSpecifier = SdfSpecifierOver |
||
) | const |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. Copies the contents of this prim definition to a prim spec at the current edit target for a prim with the given name
under the prim parent
.
USD_API UsdPrim FlattenTo | ( | const UsdPrim & | prim, |
SdfSpecifier | newSpecSpecifier = SdfSpecifierOver |
||
) | const |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. Copies the contents of this prim definition to a prim spec at the current edit target for the given prim
.
|
inline |
Return the list of names of the API schemas that have been applied to this prim definition in order.
Definition at line 58 of file primDefinition.h.
|
inline |
Retrieves the fallback value for the attribute named attrName
and stores it in value
if possible.
Returns true if the attribute exists in this prim definition and it has a fallback value defined. Returns false otherwise.
Definition at line 112 of file primDefinition.h.
USD_API std::string GetDocumentation | ( | ) | const |
Returns the documentation metadata defined by the prim definition for the prim itself.
|
inline |
Retrieves the fallback value for the metadata field named key
, that is defined by this prim definition for the prim itself and stores it in value
if possible.
Returns true if a fallback value is defined for the given metadata key
. Returns false otherwise.
Definition at line 131 of file primDefinition.h.
Retrieves the value at keyPath
from the fallback dictionary value for the dictionary metadata field named key
, that is defined by this prim definition for the prim itself, and stores it in value
if possible.
Returns true if a fallback dictionary value is defined for the given metadata key
and it contains a value at keyPath
. Returns false otherwise.
Definition at line 148 of file primDefinition.h.
USD_API std::string GetPropertyDocumentation | ( | const TfToken & | propName | ) | const |
Returns the documentation metadata defined by the prim definition for the property named propName
if it exists.
Retrieves the fallback value for the metadata field named key
, that is defined by this prim definition for the property named propName
, and stores it in value
if possible.
Returns true if a fallback value is defined for the given metadata key
for the named property. Returns false otherwise.
Definition at line 178 of file primDefinition.h.
|
inline |
Retrieves the value at keyPath
from the fallback dictionary value for the dictionary metadata field named key
, that is defined by this prim definition for the property named propName
, and stores it in value
if possible.
Returns true if a fallback dictionary value is defined for the given metadata key
for the named property and it contains a value at keyPath
. Returns false otherwise.
Definition at line 196 of file primDefinition.h.
|
inline |
Return the list of names of builtin properties for this prim definition.
Definition at line 54 of file primDefinition.h.
|
inline |
This is a convenience method.
It is shorthand for TfDynamic_cast<SdfAttributeSpecHandle>( GetSchemaPropertySpec(primType, attrName));
Definition at line 87 of file primDefinition.h.
|
inline |
Return the property spec that defines the fallback for the property named propName on prims of this prim definition's type.
Return null if there is no such property spec.
Definition at line 76 of file primDefinition.h.
|
inline |
This is a convenience method.
It is shorthand for TfDynamic_cast<SdfRelationshipSpecHandle>( GetSchemaPropertySpec(primType, relName));
Definition at line 98 of file primDefinition.h.
|
inline |
Return the SdfSpecType for propName
if it is a builtin property of the prim type represented by this prim definition.
Otherwise return SdfSpecTypeUnknown.
Definition at line 65 of file primDefinition.h.
|
inline |
Returns the list of names of metadata fields that are defined by this prim definition for the prim itself.
Definition at line 119 of file primDefinition.h.
|
inline |
Returns the list of names of metadata fields that are defined by this prim definition for property propName
if a property named propName
exists.
Definition at line 165 of file primDefinition.h.