
This file contains hidden or 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; | |
using System.Collections.Generic; | |
using UnityEngine; | |
using UnityEngine.UI; | |
[RequireComponent(typeof(Text))] | |
public class AnimatedText: BaseMeshEffect | |
{ | |
[SerializeField] private float _waitBetweenLetters = .1f; | |
private CanvasRenderer _canvasRendered; |
This file contains hidden or 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; | |
using UnityEngine.EventSystems; | |
public class OrtographicDrag: MonoBehaviour, IDragHandler | |
{ | |
private Camera _mainCamera; | |
public float DistanceToCamera; | |
public void OnDrag(PointerEventData eventData) | |
{ |
This file contains hidden or 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; | |
[SelectionBase] | |
public class SelectionBaseScript : MonoBehaviour { | |
} |
This file contains hidden or 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; | |
using System.Collections.Generic; | |
using System.Linq; | |
namespace Collections | |
{ | |
/// <summary> | |
/// A binary heap. | |
/// </summary> |
This file contains hidden or 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 FS.SDK.Collections; | |
namespace AStar | |
{ | |
/// <summary> | |
/// A pathfinder. | |
/// </summary> | |
public class Pathfinder | |
{ |
This file contains hidden or 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.Diagnostics; | |
using UnityEngine; | |
public static class GizmoHelper | |
{ | |
private static Color _color; | |
private static GizmoHelperDrawer _gizmoHelperComp; | |
public static Color Color |