This commit is contained in:
2025-06-16 15:14:23 +02:00
commit 074e590073
3174 changed files with 428263 additions and 0 deletions

View File

@ -0,0 +1,103 @@
#if !NEWTONSOFT_JSON
using System;
#if UNITY_EDITOR
using UnityEditor;
namespace Newtonsoft.Json
{
public static class FallbackDisplayer
{
private const string WARN_TIME_NAME = "EdgegapWarnTime";
internal static void ResetWarnTime()
{
EditorPrefs.SetString(WARN_TIME_NAME, DateTime.Now.ToBinary().ToString());
}
[InitializeOnLoadMethod]
private static void Initialize()
{
string dtStr = EditorPrefs.GetString(WARN_TIME_NAME, string.Empty);
//Somehow got cleared. Reset.
if (string.IsNullOrWhiteSpace(dtStr))
{
ResetWarnTime();
}
else
{
long binary;
//Failed to parse.
if (!long.TryParse(dtStr, out binary))
{
ResetWarnTime();
}
else
{
//Not enough time passed.
DateTime dt = DateTime.FromBinary(binary);
if ((DateTime.Now - dt).TotalMinutes < 30)
return;
}
}
ResetWarnTime();
UnityEngine.Debug.LogWarning($"Edgegap requires Json.NET to be imported to function. To import Json.NET navigate to Window -> Package Manager -> Click the + symbol and choose 'Add package by name' -> com.unity.nuget.newtonsoft-json -> Leave version blank and click Add. If you are not currently using Edgegap you may ignore this message.");
}
}
}
#endif
namespace Newtonsoft.Json
{
public class JsonPropertyAttribute : Attribute
{
public string PropertyName;
public JsonPropertyAttribute() { }
public JsonPropertyAttribute(string a) { }
}
public class JsonIgnoreAttribute : Attribute
{
}
public static class JsonConvert
{
public static string SerializeObject(object obj, Formatting format) => default;
public static string SerializeObject(object obj) => default;
public static object DeserializeObject(string str) => default;
public static T DeserializeObject<T>(string str) => default;
}
public enum Formatting
{
None = 0,
Indented = 1,
}
}
namespace Newtonsoft.Json.Linq
{
public class JObject
{
public string this[string position]
{
get => string.Empty;
set { }
}
public JObject() { }
public JObject(object content) { }
public JObject(params object[] content) { }
public JObject(JObject content) { }
public static JObject Parse(string json) => default;
}
}
#endif