Skip to content
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
3 changes: 2 additions & 1 deletion contrib/IECoreUSD/src/IECoreUSD/SceneCacheData.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ static InternedString g_ioIndices( "indices" );
static const SceneInterface::Path g_mayaFpsHeaderPath = { "header", "data", "CompoundObject", "data", "members", "maya", "data", "CompoundDataBase", "data", "members", "frameRate", "data"};
static const SceneInterface::Path g_houdiniFpsHeaderPath = { "header", "data", "CompoundObject", "data", "members", "houdini", "data", "CompoundDataBase", "data", "members", "frameRate", "data"};
static const VtValue g_empty = VtValue();
static const InternedString g_expansionRule( "expansionRule" );
} // namespace


Expand Down Expand Up @@ -1112,7 +1113,7 @@ void SceneCacheData::addCollections( SpecData& spec, TfTokenVector& properties,
collectionList.push_back( TfToken( boost::str( boost::format( "CollectionAPI:%s" ) % safeCollectionName ) ) );

// expansion rule
TfToken expansionRuleName( boost::str( boost::format( "collection:%s:%s" ) % safeCollectionName % UsdTokens->expansionRule.GetString() ) );
TfToken expansionRuleName( boost::str( boost::format( "collection:%s:%s" ) % safeCollectionName % g_expansionRule ) );
addProperty(
properties,
primPath,
Expand Down