You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
516 B
25 lines
516 B
10 years ago
|
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
|
||
|
|
||
|
}
|