- Changed shaders for the ACME Crimenet logo to something with proper alpha. - Implemented EasyQuestSwitch for mobile optimisation.
16 lines
289 B
C#
16 lines
289 B
C#
|
|
using TMPro;
|
|
using UnityEngine.UI;
|
|
using UdonSharp;
|
|
using UnityEngine;
|
|
using VRC.SDKBase;
|
|
using VRC.Udon;
|
|
|
|
|
|
[UdonBehaviourSyncMode(BehaviourSyncMode.Manual)]
|
|
public class HostCardTheChaseInterface : HostCardInterfaceBase
|
|
{
|
|
public TextMeshProUGUI ClueUI;
|
|
public Button OtherButton;
|
|
}
|