Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的应用程序中,我有一个声音实例,我喜欢添加淡入淡出。我尝试使用此代码,但音频始终为最大音量。
float volume = 1; float speed = 0.05f; } public void FadeIn(float deltaTime) { MediaPlayer.setVolume(volume, volume); volume += speed * deltaTime }
尝试将媒体音量设置为 0。