p.aabbtree.DirtyElementMaxGridCellQueryCount
p.aabbtree.DirtyElementMaxGridCellQueryCount
#Overview
name: p.aabbtree.DirtyElementMaxGridCellQueryCount
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Maximum grid cells to query (per raycast for example) in DirtyElement grid acceleration structure before falling back to brute force
It is referenced in 1
C++ source file.
#Summary
#References in C++ code
#Callsites
This variable is referenced in the following C++ source code:
#Loc: <Workspace>/Engine/Source/Runtime/Experimental/Chaos/Private/Chaos/AABBTree.cpp:9
Scope: file
Source code excerpt:
int32 FAABBTreeDirtyGridCVars::DirtyElementMaxGridCellQueryCount = 340;
FAutoConsoleVariableRef FAABBTreeDirtyGridCVars::CVarDirtyElementMaxGridCellQueryCount(TEXT("p.aabbtree.DirtyElementMaxGridCellQueryCount"), FAABBTreeDirtyGridCVars::DirtyElementMaxGridCellQueryCount, TEXT("Maximum grid cells to query (per raycast for example) in DirtyElement grid acceleration structure before falling back to brute force"));
int32 FAABBTreeDirtyGridCVars::DirtyElementMaxPhysicalSizeInCells = 16;
FAutoConsoleVariableRef FAABBTreeDirtyGridCVars::CVarDirtyElementMaxPhysicalSizeInCells(TEXT("p.aabbtree.DirtyElementMaxPhysicalSizeInCells"), FAABBTreeDirtyGridCVars::DirtyElementMaxPhysicalSizeInCells, TEXT("If a dirty element stradles more than this number of cells, it will no be added to the grid acceleration structure"));
int32 FAABBTreeDirtyGridCVars::DirtyElementMaxCellCapacity = 32;
FAutoConsoleVariableRef FAABBTreeDirtyGridCVars::CVarDirtyElementMaxCellCapacity(TEXT("p.aabbtree.DirtyElementMaxCellCapacity"), FAABBTreeDirtyGridCVars::DirtyElementMaxCellCapacity, TEXT("The maximum number of dirty elements that can be added to a single grid cell before spilling to slower flat list"));