Skip to content
Snippets Groups Projects

GazeTracking Logging

Merged Malte Christian Kögel requested to merge feature/gaze_logging into 4.26
1 file
+ 9
2
Compare changes
  • Side-by-side
  • Inline
@@ -35,8 +35,15 @@ bool USFParticipant::Initialize(int Participant)
"GazeTracking" + Filename, false);
}
StartTime = FPlatformTime::Seconds();
USFGameInstance::Get()->GetLogObject()->WritePositionLogHeaderRow();
USFGameInstance::Get()->GetLogObject()->WriteGazeTrackingLogHeaderRow();
if (USFGameInstance::Get())
{
USFGameInstance::Get()->GetLogObject()->WritePositionLogHeaderRow();
USFGameInstance::Get()->GetLogObject()->WriteGazeTrackingLogHeaderRow();
}
else
{
FSFLoggingUtils::Log("GameInstance not set up yet, no header rows are written to participant logs.");
}
return true;
}
Loading