mirror of
https://github.com/GTA-ASM/SanAndreasUnity
synced 2024-11-23 12:33:02 +00:00
45 lines
1.1 KiB
C#
45 lines
1.1 KiB
C#
using SanAndreasUnity.Behaviours.World;
|
|
using UnityEngine;
|
|
using SanAndreasUnity.UI;
|
|
|
|
namespace SanAndreasUnity.Settings
|
|
{
|
|
public class WorldSettings : MonoBehaviour
|
|
{
|
|
private static WorldSettings Singleton { get; set; }
|
|
|
|
private float _drawDistanceToApply = 0f;
|
|
|
|
private OptionsWindow.FloatInput m_maxDrawDistanceInput = new OptionsWindow.FloatInput
|
|
{
|
|
serializationName = "max_draw_distance",
|
|
description = "Max draw distance",
|
|
minValue = WorldManager.MinMaxDrawDistance,
|
|
maxValue = WorldManager.MaxMaxDrawDistance,
|
|
getValue = () => WorldManager.Singleton.MaxDrawDistance,
|
|
setValue = value => { Singleton.OnDrawDistanceChanged(value); },
|
|
persistType = OptionsWindow.InputPersistType.OnStart,
|
|
};
|
|
|
|
|
|
void Awake ()
|
|
{
|
|
Singleton = this;
|
|
|
|
OptionsWindow.RegisterInputs ("WORLD", m_maxDrawDistanceInput);
|
|
}
|
|
|
|
void OnDrawDistanceChanged(float newValue)
|
|
{
|
|
this.CancelInvoke(nameof(ChangeDrawDistanceDelayed));
|
|
_drawDistanceToApply = newValue;
|
|
this.Invoke(nameof(ChangeDrawDistanceDelayed), 0.2f);
|
|
}
|
|
|
|
void ChangeDrawDistanceDelayed()
|
|
{
|
|
WorldManager.Singleton.MaxDrawDistance = _drawDistanceToApply;
|
|
}
|
|
}
|
|
|
|
}
|