mirror of
https://github.com/byeongyupKim/dlfqks.git
synced 2026-02-04 19:52:54 +09:00
10 lines
206 B
C#
10 lines
206 B
C#
using UnityEngine;
|
|
using UnityEditor;
|
|
|
|
[CustomEditor( typeof(ScrollRectSnap))]
|
|
public sealed class ScrollRectSnapEditor : Editor {
|
|
|
|
public override void OnInspectorGUI(){
|
|
DrawDefaultInspector ();
|
|
}
|
|
} |