FPS Tree
A downloadable game for Windows
Download NowName your own price
This is an ordinary game with a New Year's style and it tests the power of your PC
Published | 7 days ago |
Status | Released |
Platforms | Windows |
Author | Cheloweck12 |
Genre | Simulation |
Download
Download NowName your own price
Click download now to get access to the following files:
FPS Tree Installer.exe 90 MB
Comments
Log in with itch.io to leave a comment.
using UnityEngine;
using UnityEngine.UI;
public class VolumeController : MonoBehaviour
{
public AudioSource musicSource;
public Slider volumeSlider;
private void Start()
{
if (musicSource != null && volumeSlider != null)
{
volumeSlider.value = musicSource.volume;
volumeSlider.onValueChanged.AddListener(SetVolume);
}
else
{
Debug.LogError("AudioSource или Slider не указаны");
}
}
public void SetVolume(float volume)
{
if (musicSource != null)
{
musicSource.volume = volume;
}
}
}