Skip to content

Instantly share code, notes, and snippets.

View SorenSaket's full-sized avatar
🧑‍🍳
Cookin'

Soren Saket SorenSaket

🧑‍🍳
Cookin'
View GitHub Profile
@frarees
frarees / MinMaxSliderAttribute.cs
Last active April 4, 2024 12:13
MinMaxSlider for Unity
// https://frarees.github.io/default-gist-license
using System;
using UnityEngine;
[AttributeUsage(AttributeTargets.Field, Inherited = true, AllowMultiple = false)]
public class MinMaxSliderAttribute : PropertyAttribute
{
public float Min { get; set; }
public float Max { get; set; }