20 lines
366 B
C#
20 lines
366 B
C#
|
|
using System.Collections;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using UnityEngine;
|
||
|
|
using UnityEngine.UI;
|
||
|
|
|
||
|
|
public class SliderPage : MonoBehaviour
|
||
|
|
{
|
||
|
|
#region Variables
|
||
|
|
|
||
|
|
[Header("Children")]
|
||
|
|
[SerializeField] private Image _image;
|
||
|
|
|
||
|
|
public Sprite Image
|
||
|
|
{
|
||
|
|
get { return _image.sprite; }
|
||
|
|
set { _image.sprite = value; }
|
||
|
|
}
|
||
|
|
|
||
|
|
#endregion
|
||
|
|
}
|