Skip to content

Instantly share code, notes, and snippets.

View srndpty's full-sized avatar

Masaki Takano srndpty

View GitHub Profile
using UnityEngine;
using System.Collections;
public class MinMaxSliderAttribute : PropertyAttribute
{
public readonly float max;
public readonly float min;
public MinMaxSliderAttribute(float min, float max)
{