Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow connecting filename attributes. #2733

Merged
merged 1 commit into from
Nov 29, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions lib/mayaUsd/ufe/UsdAttribute.h
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,11 @@ class UsdAttributeGeneric
//! \brief Interface for USD token attributes.
class UsdAttributeFilename
: public Ufe::AttributeFilename
#ifdef UFE_V4_FEATURES_AVAILABLE
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copied verbatim from UsdAttributeGeneric at line 165.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Right that was the only one not transitioned!!!

, public UsdAttribute
#else
, private UsdAttribute
#endif
{
public:
typedef std::shared_ptr<UsdAttributeFilename> Ptr;
Expand Down