Esempio n. 1
0
 public bool TryAddData(UguiNovelTextCharacter data)
 {
     if ((this.size == data.FontSize) && (this.style == data.FontStyle))
     {
         this.characters = this.characters + data.Char;
         return(true);
     }
     return(false);
 }
Esempio n. 2
0
 public RequestCharactersInfo(UguiNovelTextCharacter data)
 {
     this.characters = string.Empty + data.Char;
     this.size       = data.FontSize;
     this.style      = data.FontStyle;
 }
Esempio n. 3
0
 public GraphicObject(UguiNovelTextCharacter character, RectTransform graphic)
 {
     this.character = character;
     this.graphic   = graphic;
 }