22 lines
694 B
C#
22 lines
694 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
public class MonumentPreview : MonoBehaviour
|
|
{
|
|
[SerializeField] private Image _image;
|
|
[SerializeField] private UITextShow _UITextShow;
|
|
[SerializeField] private TextAutoscroll _textAutoscroll;
|
|
[SerializeField] private UIFader _UIFader;
|
|
[SerializeField] private TMPro.TextMeshProUGUI _nameText;
|
|
|
|
public void ShowInfo(string name, Sprite image, string text, float time)
|
|
{
|
|
_nameText.SetText(name);
|
|
_image.sprite = image;
|
|
_UITextShow.SetText(text, time, _UIFader.ShowPanel, _UIFader.HidePanel);
|
|
_textAutoscroll.Scroll(time - 1);
|
|
}
|
|
}
|