@@ -75,10 +75,10 @@ namespace FPSProfiler::Configs
75
75
behaviorContext->Class <FileSaveSettings>(" FileSaveSettings" )
76
76
->Attribute (AZ::Script::Attributes::Category, " FPSProfiler" )
77
77
->Constructor <>()
78
- ->Property (" outputFilename " , BehaviorValueProperty (&FileSaveSettings::m_OutputFilename))
79
- ->Property (" autoSave " , BehaviorValueProperty (&FileSaveSettings::m_AutoSave))
80
- ->Property (" autoSaveAtFrame " , BehaviorValueProperty (&FileSaveSettings::m_AutoSaveAtFrame))
81
- ->Property (" saveWithTimestamp " , BehaviorValueProperty (&FileSaveSettings::m_SaveWithTimestamp));
78
+ ->Property (" m_OutputFilename " , BehaviorValueProperty (&FileSaveSettings::m_OutputFilename))
79
+ ->Property (" m_AutoSave " , BehaviorValueProperty (&FileSaveSettings::m_AutoSave))
80
+ ->Property (" m_AutoSaveAtFrame " , BehaviorValueProperty (&FileSaveSettings::m_AutoSaveAtFrame))
81
+ ->Property (" m_SaveWithTimestamp " , BehaviorValueProperty (&FileSaveSettings::m_SaveWithTimestamp));
82
82
}
83
83
}
84
84
@@ -160,10 +160,10 @@ namespace FPSProfiler::Configs
160
160
behaviorContext->Class <RecordSettings>(" RecordSettings" )
161
161
->Attribute (AZ::Script::Attributes::Category, " FPSProfiler" )
162
162
->Constructor <>()
163
- ->Property (" recordType " , BehaviorValueProperty (&RecordSettings::m_recordType))
164
- ->Property (" framesToSkip " , BehaviorValueProperty (&RecordSettings::m_framesToSkip))
165
- ->Property (" framesToRecord " , BehaviorValueProperty (&RecordSettings::m_framesToRecord))
166
- ->Property (" recordStats " , BehaviorValueProperty (&RecordSettings::m_RecordStats));
163
+ ->Property (" m_recordType " , BehaviorValueProperty (&RecordSettings::m_recordType))
164
+ ->Property (" m_framesToSkip " , BehaviorValueProperty (&RecordSettings::m_framesToSkip))
165
+ ->Property (" m_framesToRecord " , BehaviorValueProperty (&RecordSettings::m_framesToRecord))
166
+ ->Property (" m_RecordStats " , BehaviorValueProperty (&RecordSettings::m_RecordStats));
167
167
}
168
168
}
169
169
@@ -238,10 +238,10 @@ namespace FPSProfiler::Configs
238
238
behaviorContext->Class <PrecisionSettings>(" PrecisionSettings" )
239
239
->Attribute (AZ::Script::Attributes::Category, " FPSProfiler" )
240
240
->Constructor <>()
241
- ->Property (" NearZeroPrecision " , BehaviorValueProperty (&PrecisionSettings::m_NearZeroPrecision))
242
- ->Property (" AvgFpsType " , BehaviorValueProperty (&PrecisionSettings::m_avgFpsType))
243
- ->Property (" SmoothingFactor " , BehaviorValueProperty (&PrecisionSettings::m_smoothingFactor))
244
- ->Property (" KeepHistory " , BehaviorValueProperty (&PrecisionSettings::m_keepHistory));
241
+ ->Property (" m_NearZeroPrecision " , BehaviorValueProperty (&PrecisionSettings::m_NearZeroPrecision))
242
+ ->Property (" m_avgFpsType " , BehaviorValueProperty (&PrecisionSettings::m_avgFpsType))
243
+ ->Property (" m_smoothingFactor " , BehaviorValueProperty (&PrecisionSettings::m_smoothingFactor))
244
+ ->Property (" m_keepHistory " , BehaviorValueProperty (&PrecisionSettings::m_keepHistory));
245
245
}
246
246
}
247
247
@@ -256,9 +256,9 @@ namespace FPSProfiler::Configs
256
256
257
257
serializeContext->Class <DebugSettings>()
258
258
->Version (0 )
259
- ->Field (" PrintDebugInfo " , &DebugSettings::m_PrintDebugInfo)
260
- ->Field (" ShowFps " , &DebugSettings::m_ShowFps)
261
- ->Field (" Color " , &DebugSettings::m_Color);
259
+ ->Field (" m_PrintDebugInfo " , &DebugSettings::m_PrintDebugInfo)
260
+ ->Field (" m_ShowFps " , &DebugSettings::m_ShowFps)
261
+ ->Field (" m_Color " , &DebugSettings::m_Color);
262
262
263
263
if (auto * editContext = serializeContext->GetEditContext ())
264
264
{
@@ -296,9 +296,9 @@ namespace FPSProfiler::Configs
296
296
behaviorContext->Class <DebugSettings>(" DebugSettings" )
297
297
->Attribute (AZ::Script::Attributes::Category, " FPSProfiler" )
298
298
->Constructor <>()
299
- ->Property (" PrintDebugInfo " , BehaviorValueProperty (&DebugSettings::m_PrintDebugInfo))
300
- ->Property (" ShowFps " , BehaviorValueProperty (&DebugSettings::m_ShowFps))
301
- ->Property (" Color " , BehaviorValueProperty (&DebugSettings::m_Color));
299
+ ->Property (" m_PrintDebugInfo " , BehaviorValueProperty (&DebugSettings::m_PrintDebugInfo))
300
+ ->Property (" m_ShowFps " , BehaviorValueProperty (&DebugSettings::m_ShowFps))
301
+ ->Property (" m_Color " , BehaviorValueProperty (&DebugSettings::m_Color));
302
302
}
303
303
}
304
304
} // namespace FPSProfiler::Configs
0 commit comments