- Added an ACME Crimenet logo. - Separated Music and SFX sound sources, and moved them outside the host card. - Added a font that very closely resembles a common typeface from the show. - Replaced the choice card and podium fonts with said typeface.
16 lines
295 B
C#
16 lines
295 B
C#
|
|
using UdonSharp;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
using TMPro;
|
|
|
|
|
|
[UdonBehaviourSyncMode(BehaviourSyncMode.Manual)]
|
|
public class HostCardInterfaceBase : UdonSharpBehaviour
|
|
{
|
|
public TextMeshProUGUI HeaderUI;
|
|
|
|
public TextMeshProUGUI[] ChoiceUI;
|
|
public Image[] ChoiceButtons;
|
|
}
|