- 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.
14 lines
245 B
C#
14 lines
245 B
C#
|
|
using TMPro;
|
|
using UdonSharp;
|
|
using UnityEngine;
|
|
using VRC.SDKBase;
|
|
using VRC.Udon;
|
|
|
|
|
|
[UdonBehaviourSyncMode(BehaviourSyncMode.Manual)]
|
|
public class HostCardLightningRoundInterface : HostCardInterfaceBase
|
|
{
|
|
public TextMeshProUGUI ClueUI;
|
|
}
|