Whole interactable world-board with different zones and jobs ready to be completed. - party voting for job selection & scene swapping - fully working scene change between inn and skellyard - updated many systems with lots of new information - bunch of new UIs to acomodate new job and scene swapping voting systems
13 lines
253 B
C#
13 lines
253 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using TMPro;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
public class PartyVoteFrame : MonoBehaviour
|
|
{
|
|
public TMP_Text playerName;
|
|
public Image avatarIcon;
|
|
public Image votedCheck;
|
|
}
|