Skip to content

Commit

Permalink
Fix a missing init of a variable.
Browse files Browse the repository at this point in the history
  • Loading branch information
lanierd-adsk committed Feb 9, 2024
1 parent a4fc977 commit 405d1d9
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ namespace FVP_NS_DEF {
*/
DataProducerSceneIndexDataBase::DataProducerSceneIndexDataBase(const CreationParameters& params)
{
_parentMatrix.SetIdentity();
_dataProducerSceneIndex = params._customDataProducerSceneIndex;
_prefix = params._prefix;
_lastSceneIndexChain = params._customDataProducerSceneIndex;
Expand All @@ -50,6 +51,7 @@ DataProducerSceneIndexDataBase::DataProducerSceneIndexDataBase(const CreationPar
//For Usd stages
DataProducerSceneIndexDataBase::DataProducerSceneIndexDataBase(const CreationParametersForUsdStage& params)
{
_parentMatrix.SetIdentity();
_dataProducerSceneIndex = nullptr;//Will be set later
_prefix = params._prefix;
_lastSceneIndexChain = nullptr;//Will be set later
Expand Down

0 comments on commit 405d1d9

Please sign in to comment.