From b6db1dfe3f07b6bc115f62bb77082bf3aae28ba3 Mon Sep 17 00:00:00 2001 From: Mikhail <99481254+DCFApixels@users.noreply.github.com> Date: Mon, 12 Jun 2023 22:17:49 +0800 Subject: [PATCH] update --- src/Debug/DebugService/UnityDebugService.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Debug/DebugService/UnityDebugService.cs b/src/Debug/DebugService/UnityDebugService.cs index 90605e1..e54115d 100644 --- a/src/Debug/DebugService/UnityDebugService.cs +++ b/src/Debug/DebugService/UnityDebugService.cs @@ -33,22 +33,22 @@ namespace DCFApixels.DragonECS Debug.Log(v); } - public override void ProfileMarkBegin(int id) + public override void ProfilerMarkBegin(int id) { _profilerMarkers[id].Begin(); } - public override void ProfileMarkEnd(int id) + public override void ProfilerMarkEnd(int id) { _profilerMarkers[id].End(); } - protected override void OnDelMark(int id) + protected override void OnDelProfilerMark(int id) { _profilerMarkers[id] = default; } - protected override void OnNewMark(int id, string name) + protected override void OnNewProfilerMark(int id, string name) { if (id >= _profilerMarkers.Length) Array.Resize(ref _profilerMarkers, _profilerMarkers.Length << 1); _profilerMarkers[id] = new ProfilerMarker(ProfilerCategory.Scripts, name);