├── .gitignore ├── Editor.meta ├── Editor ├── ProfilerSnapshotUtils.cs └── ProfilerSnapshotUtils.cs.meta ├── README.md ├── README.md.meta ├── Unity.WorldBuilding.ProfilerSnapshot.asmdef ├── Unity.WorldBuilding.ProfilerSnapshot.asmdef.meta ├── package.json └── package.json.meta /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/profiler-snapshot-tool/HEAD/.gitignore -------------------------------------------------------------------------------- /Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/profiler-snapshot-tool/HEAD/Editor.meta -------------------------------------------------------------------------------- /Editor/ProfilerSnapshotUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/profiler-snapshot-tool/HEAD/Editor/ProfilerSnapshotUtils.cs -------------------------------------------------------------------------------- /Editor/ProfilerSnapshotUtils.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/profiler-snapshot-tool/HEAD/Editor/ProfilerSnapshotUtils.cs.meta -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/profiler-snapshot-tool/HEAD/README.md -------------------------------------------------------------------------------- /README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/profiler-snapshot-tool/HEAD/README.md.meta -------------------------------------------------------------------------------- /Unity.WorldBuilding.ProfilerSnapshot.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/profiler-snapshot-tool/HEAD/Unity.WorldBuilding.ProfilerSnapshot.asmdef -------------------------------------------------------------------------------- /Unity.WorldBuilding.ProfilerSnapshot.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/profiler-snapshot-tool/HEAD/Unity.WorldBuilding.ProfilerSnapshot.asmdef.meta -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/profiler-snapshot-tool/HEAD/package.json -------------------------------------------------------------------------------- /package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/profiler-snapshot-tool/HEAD/package.json.meta --------------------------------------------------------------------------------