This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define POSTPROCESSOR_ENABLED | |
using Newtonsoft.Json.Linq; | |
using System; | |
using System.IO; | |
using System.Linq; | |
using UnityEditor; | |
using UnityEditorInternal; | |
using Debug = UnityEngine.Debug; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using Unity.Burst; | |
using Unity.Collections; | |
using Unity.Jobs; | |
using Unity.Mathematics; | |
using UnityEngine; | |
using Random = Unity.Mathematics.Random; | |
/* | |
* A port of Fast Poisson Disk Sampling for Unity to the Jobs System. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Linq; | |
using UnityEngine; | |
public static partial class CsvDataGenerator | |
{ | |
#region Types | |
public class CsvFile | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ScriptedImporter(1, "gsheet")] | |
public class GSheetImporter : ScriptedImporter | |
{ | |
#region Types | |
private class WebClientEx : WebClient | |
{ | |
#region Fields | |
private readonly CookieContainer _container; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Diagnostics; | |
using System.IO; | |
using Unity.Logging; | |
using UnityEditor; | |
using UnityEditor.Callbacks; | |
using UnityEngine; | |
using Debug = UnityEngine.Debug; | |
public class BlenderSupportFunctions : AssetPostprocessor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using Unity.Mathematics; | |
using UnityEngine; | |
[Serializable] | |
public struct AttenuationCurve | |
{ | |
#region Properties | |
[field: SerializeField] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Linq; | |
using UnityEditor; | |
using UnityEditor.ShortcutManagement; | |
using UnityEngine; | |
[InitializeOnLoad] | |
public class PlayModeShortcutManagerProfileUtility | |
{ | |
#region Types |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
public readonly struct TaskData | |
{ | |
#region Fields | |
public readonly double ExecTime; | |
public readonly double DelayTime; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class AdvancedDropdownField : DropdownField | |
{ | |
#region Types | |
private class SimpleAdvancedDropdown : AdvancedDropdown | |
{ | |
#region Fields | |
private readonly DropdownField _dropdownField; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace BeardPhantom.LiteEvent | |
{ | |
public interface ILiteEvent<in TDelegate> where TDelegate : Delegate | |
{ | |
#region Properties | |
int ListenerCount { get; } |
NewerOlder