Replace string/hash based execution out look up for indices, 10-50% speed up in lookup code. Fix bugs calling dependent functions.
This commit is contained in:
@@ -37,10 +37,10 @@
|
||||
namespace ScriptCanvasSystemComponentCpp
|
||||
{
|
||||
#if !defined(_RELEASE) && !defined(PERFORMANCE_BUILD)
|
||||
const int k_infiniteLoopDetectionMaxIterations = 3000;
|
||||
const int k_infiniteLoopDetectionMaxIterations = 1000000;
|
||||
const int k_maxHandlerStackDepth = 25;
|
||||
#else
|
||||
const int k_infiniteLoopDetectionMaxIterations = 10000;
|
||||
const int k_infiniteLoopDetectionMaxIterations = 10000000;
|
||||
const int k_maxHandlerStackDepth = 100;
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user