22 lines
379 B
C#
22 lines
379 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.UIElements;
|
|
|
|
namespace MuHua {
|
|
/// <summary>
|
|
/// 滚动条 - 垂直
|
|
/// </summary>
|
|
public class UIScrollerV : MonoBehaviour {
|
|
// Start is called before the first frame update
|
|
void Start() {
|
|
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update() {
|
|
|
|
}
|
|
}
|
|
} |