Kleiner Anfang für Dialog system
This commit is contained in:
24
Assets/RPGTALK/Scripts/Helpers/TextWithIcon.cs
Normal file
24
Assets/RPGTALK/Scripts/Helpers/TextWithIcon.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text.RegularExpressions;
|
||||
using UnityEngine;
|
||||
using UnityEngine.UI;
|
||||
|
||||
namespace RPGTALK.Texts
|
||||
{
|
||||
|
||||
public interface ITextWithIcon
|
||||
{
|
||||
Image icon { get; set; }
|
||||
Vector3 iconPosition { get; set; }
|
||||
List<Image> icons { get; set; } //= new List<Image>();
|
||||
List<int> indexes { get; set; }
|
||||
RPGTalk rpgtalk { get; set; }
|
||||
|
||||
void RepopulateImages();
|
||||
|
||||
bool FitImagesOnText(int y);
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user