- Some countries are now "hard mode" options, and are not chosen by default. - Map dot switched to a quad to save on triangles. - Map borders SDF updated to be more repeatable when making new maps. - Added looping options to SFX. - Added a "Carmen In Jail" SFX event. - Added a curved TV monitor model for video player. - Added a loot image URL setting for the case list entries.
14 lines
263 B
C#
14 lines
263 B
C#
|
|
using UdonSharp;
|
|
using UnityEngine;
|
|
using VRC.SDKBase;
|
|
using VRC.Udon;
|
|
|
|
|
|
[UdonBehaviourSyncMode(BehaviourSyncMode.None)]
|
|
public class FloorMapCountry : UdonSharpBehaviour
|
|
{
|
|
public bool HardModeSelection = false;
|
|
public FloorMapLocation[] Locations;
|
|
}
|