46 lines
1.2 KiB
C#
46 lines
1.2 KiB
C#
using BrewMonster.Assets.PerfectWorld.Scripts.UI;
|
|
using BrewMonster.Common;
|
|
using BrewMonster.Managers;
|
|
using BrewMonster.Scripts;
|
|
using BrewMonster.Scripts.Managers;
|
|
using BrewMonster.UI;
|
|
using CSNetwork.GPDataType;
|
|
using Cysharp.Threading.Tasks.Triggers;
|
|
using PerfectWorld.Scripts.Managers;
|
|
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using TMPro;
|
|
using UnityEngine;
|
|
using UnityEngine.EventSystems;
|
|
using UnityEngine.UI;
|
|
|
|
namespace BrewMonster
|
|
{
|
|
public class SettingInterface : MonoBehaviour
|
|
{
|
|
[Header("Slider Value Level")]
|
|
private float valueLevel1 = 0;
|
|
private float valueLevel2 = 0.194f;
|
|
private float valueLevel3 = 0.409f;
|
|
private float valueLevel4 = 0.603f;
|
|
private float valueLevel5 = 0.793f;
|
|
private float valueLevel6 = 1f;
|
|
|
|
[Header("slider Text Level")]
|
|
[SerializeField] private TextMeshProUGUI txt_level_of_foresight;
|
|
[SerializeField] private TextMeshProUGUI txt_level_of_distance_npc_and_mst;
|
|
[SerializeField] private TextMeshProUGUI txt_level_of_distance_player_other;
|
|
|
|
private void OnEnable()
|
|
{
|
|
|
|
}
|
|
|
|
private void OnDisable()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|