Initial commit

This commit is contained in:
2026-04-06 21:08:06 -04:00
commit 85bdf31a4d
5 changed files with 367 additions and 0 deletions

19
GameObject.cs Normal file
View File

@@ -0,0 +1,19 @@
using System;
using UnityEngine;
namespace PhotonViewDumper
{
internal class GameObject : MonoBehaviour
{
void Update()
{
try
{
if (Input.GetKeyDown(KeyCode.F6)) Plugin.Dump();
} catch (Exception ex)
{
Plugin.Log.LogError($"Failed to dump views: {ex}");
}
}
}
}