Skip to content

Instantly share code, notes, and snippets.

View alertedsnake's full-sized avatar

alertedsnake

  • 18:28 (UTC -05:00)
View GitHub Profile
@hasanbayatme
hasanbayatme / MinMax.cs
Last active January 5, 2026 03:13
Unity Min Max Slider Implementation
using System;
using UnityEngine;
[Serializable]
public struct MinMax
{
[SerializeField]
private float min;
[SerializeField]