public void OnMonitorSelect(SelectableMonitor _monitor) { if (SolutionState != PuzzleState.Unsolved) { return; } }
void InitSelectableMonitors() { Interactables.Latitude.Init(this, new PuzzleGPSMonitorData()); Interactables.Longitude.Init(this, new PuzzleGPSMonitorData()); Interactables.Latitude.TypeOn(""); Interactables.Longitude.TypeOn(""); currentSelectedMonitor = Interactables.Latitude; }
public void OnMonitorSelect(SelectableMonitor _monitor) { if (_monitor == Interactables.Latitude) { currentSelectedMonitor = Interactables.Latitude; } else if (_monitor == Interactables.Longitude) { currentSelectedMonitor = Interactables.Longitude; } selectable.Select(); }
public void OnMonitorSelect(SelectableMonitor _monitor) { }
public void OnMonitorSelect(SelectableMonitor _monitor) { throw new System.NotImplementedException(); }