mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-04 22:06:06 +02:00
IPC photon logging
This commit is contained in:
@@ -386,6 +386,14 @@ namespace VRCX
|
||||
return "";
|
||||
}
|
||||
|
||||
public string DeserializeVrcEvent(string base64Data)
|
||||
{
|
||||
byte[] bytes = Convert.FromBase64String(base64Data);
|
||||
var deserialization = new VRCEventDeserialization();
|
||||
var eventData = deserialization.DeserializeData(bytes);
|
||||
return System.Text.Json.JsonSerializer.Serialize<VRCEventDeserialization.EventEntry>(eventData);
|
||||
}
|
||||
|
||||
public void SetStartup(bool enabled)
|
||||
{
|
||||
try
|
||||
|
||||
Reference in New Issue
Block a user