CarmenSandiego/Assets/UdonSharp/Maps/FloorMapCountry.cs
Jamie Greunbaum e557398084 - Maps now properly reset when randomised.
- 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.
2025-06-30 02:37:34 -04:00

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;
}