Skip to content

Instantly share code, notes, and snippets.

View AShim3D's full-sized avatar

Mykhaylo Titov AShim3D

  • Red Beat
  • Kiev, Ukraine
View GitHub Profile
using UnityEngine;
public class MinMaxSliderAttribute : PropertyAttribute {
public readonly float max;
public readonly float min;
public readonly bool showFLoatFields;
public MinMaxSliderAttribute(float min, float max, bool showFLoatFields = false) {
this.min = min;