In Atom_Feature_Common.static, get cvar values from cvar system instead of reading directly (#5350)
Signed-off-by: Tommy Walton <waltont@amazon.com>
This commit is contained in:
@@ -98,7 +98,12 @@ namespace AZ
|
||||
}
|
||||
m_needsInit = false;
|
||||
|
||||
const AZ::u64 sizeInMb = r_skinnedMeshInstanceMemoryPoolSize;
|
||||
AZ::u64 sizeInMb{};
|
||||
if (auto console = AZ::Interface<AZ::IConsole>::Get(); console != nullptr)
|
||||
{
|
||||
console->GetCvarValue("r_skinnedMeshInstanceMemoryPoolSize", sizeInMb);
|
||||
}
|
||||
|
||||
m_sizeInBytes = sizeInMb * (1024u * 1024u);
|
||||
|
||||
CalculateAlignment();
|
||||
|
||||
Reference in New Issue
Block a user