Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Artery Runner
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abdulrahman Mohammed
Artery Runner
Commits
f6219ff7
Commit
f6219ff7
authored
Jan 20, 2026
by
Abdulrahman Mohammed
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix Audio Mixer
parent
6a701869
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
AudioManager.cs
Assets/_project/Scripts/Core/Manager/AudioManager.cs
+7
-3
No files found.
Assets/_project/Scripts/Core/Manager/AudioManager.cs
View file @
f6219ff7
using
System.Collections
;
using
System.Collections.Generic
;
using
UnityEngine
;
using
UnityEngine
;
using
UnityEngine.Audio
;
using
UnityEngine.Audio
;
using
UnityEngine.UI
;
using
UnityEngine.UI
;
...
@@ -11,11 +9,17 @@ public class AudioManager : MonoBehaviour
...
@@ -11,11 +9,17 @@ public class AudioManager : MonoBehaviour
private
void
Start
()
private
void
Start
()
{
{
audioSlider
.
onValueChanged
.
AddListener
(
SetVolume
);
audioSlider
.
value
=
PlayerPrefs
.
GetFloat
(
"audioVolume"
,
.
5f
);
SetVolume
(
audioSlider
.
value
);
SetVolume
(
audioSlider
.
value
);
audioSlider
.
onValueChanged
.
AddListener
(
SetVolume
);
}
}
public
void
SetVolume
(
float
volume
)
public
void
SetVolume
(
float
volume
)
{
{
audioMixer
.
SetFloat
(
"MyAudio"
,
Mathf
.
Log10
(
volume
)
*
20
);
audioMixer
.
SetFloat
(
"MyAudio"
,
Mathf
.
Log10
(
volume
)
*
20
);
}
}
private
void
OnDestroy
()
{
PlayerPrefs
.
SetFloat
(
"audioVolume"
,
audioSlider
.
value
);
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment