- Reduced polygon count of drywall meshes. - Improved triangulation of the TV screen. - Improved lightmaps, and reduce their size. - Added video player to show Patty Larceny going to jail. - Added temporary Patty In Jail tune. - Added a new interface to the host card for these experimental features.
15 lines
292 B
C#
15 lines
292 B
C#
|
|
using TMPro;
|
|
using UnityEngine.UI;
|
|
using UdonSharp;
|
|
using UnityEngine;
|
|
using VRC.SDKBase;
|
|
using VRC.Udon;
|
|
|
|
|
|
[UdonBehaviourSyncMode(BehaviourSyncMode.Manual)]
|
|
public class HostCardRecoverTheLootEndInterface : HostCardInterfaceBase
|
|
{
|
|
[SerializeField] private TextMeshProUGUI _CommentUI;
|
|
}
|