You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
342 B
C#
12 lines
342 B
C#
using UnityEngine;
|
|
using System.Collections.Generic;
|
|
|
|
namespace NaughtyAttributes.Test
|
|
{
|
|
//[CreateAssetMenu(fileName = "TestScriptableObjectB", menuName = "NaughtyAttributes/TestScriptableObjectB")]
|
|
public class _TestScriptableObjectB : ScriptableObject
|
|
{
|
|
[MinMaxSlider(0, 10)]
|
|
public Vector2Int slider;
|
|
}
|
|
} |