We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae4c780 commit 8b446faCopy full SHA for 8b446fa
Activities/GAScripted.cpp
@@ -35,6 +35,8 @@
35
#include "BuyMenuGUI.h"
36
#include "SceneEditorGUI.h"
37
38
+#include "tracy/Tracy.hpp"
39
+
40
namespace RTE {
41
42
ConcreteClassInfo(GAScripted, GameActivity, 0);
@@ -448,6 +450,8 @@ void GAScripted::Update() {
448
450
// Description: Updates globals scripts loaded with this activity.
449
451
452
void GAScripted::UpdateGlobalScripts(bool lateUpdate) {
453
+ ZoneScoped;
454
455
// Update all global scripts
456
for (std::vector<GlobalScript *>::iterator sItr = m_GlobalScriptsList.begin(); sItr < m_GlobalScriptsList.end(); ++sItr) {
457
if ((*sItr)->ShouldLateUpdate() == lateUpdate) {
0 commit comments