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
// | |
// @kurtdekker | |
// | |
// How to start using the new input system in place of the old one. | |
// | |
// If you've been using Input.* for everything, here is how to start | |
// using the new input system without a lot of extra fussing around. | |
// | |
using UnityEngine; |
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; | |
// @kurtdekker - dead-simple infinite loop finder | |
// TODO: call BREAKOUT.Check(); from within every suspect loop. | |
// TODO: optionally supply a custom max callcount | |
public class BREAKOUT : MonoBehaviour | |
{ | |
static BREAKOUT _instance; |
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; | |
using System.Reflection; | |
using System.Text; | |
using UnityEditor; | |
using UnityEngine; | |
using UnityEngine.UI; | |
#if UNITY_2021_2_OR_NEWER | |
using PrefabStage = UnityEditor.SceneManagement.PrefabStage; | |
using PrefabStageUtility = UnityEditor.SceneManagement.PrefabStageUtility; |
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; | |
using System.Collections.Generic; | |
using UnityEngine; | |
// @kurtdekker - precise timing on two cars passing the finish line at the same instant | |
// | |
// from forum post: | |
// | |
// https://discussions.unity.com/t/how-do-you-measure-milliseconds-at-runtime/1562308 | |
// |
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
namespace Zooming | |
{ | |
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
// @kurtdekker - Shepard Tones for Unity3D. | |
// | |
// https://en.wikipedia.org/wiki/Shepard_tone | |
// |
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; | |
using UnityEditor; | |
using UnityEditor.Callbacks; | |
using System.Collections.Generic; | |
// @kurtdekker | |
// | |
// Makes temporary changes to scenes when building. | |
// | |
// Obviously this must live in an Editor/ folder. |
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; | |
// @kurtdekker | |
public static class StreamingAssetsPath | |
{ | |
public static string StreamingAssetPathForWWW() | |
{ | |
#if UNITY_EDITOR || UNITY_STANDALONE_OSX || UNITY_STANDALONE_WIN | |
return "file://" + Application.dataPath + "/StreamingAssets/"; |
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 static partial class FilterUtilities | |
{ | |
// @kurtdekker | |
// | |
// Part of Jetpack Kurt Space Flight available for iOS/Android | |
// | |
// Evalutes a normalized analog input signal (such as an analog | |
// axis) and filters it: | |
// |
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; | |
// @kurtdekker - Cheesy quick way to do low-resolution in Unity3D: | |
// | |
// This script creates and controls the final Camera, not the Main Camera. | |
// | |
// Player Scene, when loaded, MUST have a Main Camera that we hijack. | |
// | |
// DO NOT DROP THIS ON A CAMERA! | |
// |
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; | |
using System.Collections.Generic; | |
using UnityEngine; | |
// @kurtdekker | |
// | |
// Counts revolutions in degrees around the +Z axis of a transform | |
// | |
// NOTE: Like all things in a discrete digital simulation, this takes samples at | |
// regular intervals. This means rapid rotation of the transform will introduce |
NewerOlder