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.Collections.Generic; | |
using Unity.Mathematics; | |
using UnityEngine; | |
using UnityEngine.Splines; | |
public static class SplineUtils | |
{ | |
/// <summary> | |
/// Retrieve the list of intersections between a Spline and a ray (line segment with a direction and length). | |
/// </summary> |
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.Collections.Generic; | |
#if UNITY_EDITOR | |
using UnityEditor; | |
using UnityEditor.UIElements; | |
using UnityEngine.UIElements; | |
[CustomPropertyDrawer( typeof(TestProp))] | |
public class TestPropDrawerUIE : PropertyDrawer |
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 UnityEngine; | |
public sealed class AutoUpdater : MonoBehaviour | |
{ | |
private const string AndroidClass = "com.lagoonsoft.AutoUpdater"; | |
#region static Singleton | |
private static AutoUpdater _instance; | |
private static AutoUpdater GetInstance() |