移除不用的脚本

This commit is contained in:
Bob.Song
2026-02-26 16:08:15 +08:00
parent 06e5d9ae1a
commit be43dbbf46
4999 changed files with 5034 additions and 845474 deletions

View File

@@ -4,22 +4,17 @@ namespace SRDebugger.Services
using System;
using Profiler;
using SRF.Service;
#if UNITY_2018_1_OR_NEWER
using UnityEngine.Rendering;
using UnityEngine.Experimental.Rendering;
#endif
public static class ProfilerServiceSelector
{
[ServiceSelector(typeof(IProfilerService))]
public static Type GetProfilerServiceType()
{
#if UNITY_2018_1_OR_NEWER
if(GraphicsSettings.defaultRenderPipeline != null)
{
return typeof(SRPProfilerService);
}
#endif
return typeof(ProfilerServiceImpl);
}