chrisgregan
11 years ago
2 changed files with 32 additions and 0 deletions
@ -0,0 +1,24 @@
|
||||
using UnityEngine; |
||||
using UnityEngine.UI; |
||||
using UnityEngine.Events; |
||||
using System.Collections; |
||||
|
||||
public class DialogController : MonoBehaviour |
||||
{ |
||||
public Button optionButton; |
||||
public GridLayoutGroup optionButtonGrid; |
||||
public Text storyText; |
||||
public Text nameText; |
||||
public Image leftImage; |
||||
public Image rightImage; |
||||
|
||||
public UnityEvent testEvent; |
||||
|
||||
// Write story text over time |
||||
// Show character image (with side, fade in?) |
||||
// Hide / Show canvas |
||||
// Show continue image |
||||
// Show one button |
||||
// Show button grid |
||||
|
||||
} |
Loading…
Reference in new issue