You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.0 KiB
34 lines
1.0 KiB
// ----------------------------------------------------------------------- |
|
// <copyright file="ScrollViewExEditor.cs" company="AillieoTech"> |
|
// Copyright (c) AillieoTech. All rights reserved. |
|
// </copyright> |
|
// ----------------------------------------------------------------------- |
|
|
|
namespace AillieoUtils |
|
{ |
|
using UnityEditor; |
|
|
|
[CustomEditor(typeof(ScrollViewEx))] |
|
public class ScrollViewExEditor : ScrollViewEditor |
|
{ |
|
private SerializedProperty pageSize; |
|
|
|
protected override void OnEnable() |
|
{ |
|
base.OnEnable(); |
|
this.pageSize = this.serializedObject.FindProperty("pageSize"); |
|
} |
|
|
|
protected override void DrawConfigInfo() |
|
{ |
|
base.DrawConfigInfo(); |
|
EditorGUILayout.PropertyField(this.pageSize); |
|
} |
|
|
|
[MenuItem("GameObject/UI/DynamicScrollViewEx", false, 90)] |
|
private static void AddScrollViewEx(MenuCommand menuCommand) |
|
{ |
|
InternalAddScrollView<ScrollViewEx>(menuCommand); |
|
} |
|
} |
|
}
|
|
|