Hi All,
I cannot increase/decrease the audio channels volume.Channel “1” is Background Music,“2” is Sound Effect,“3” is Voice.After I press several times on the graphics to sound out,I cannot hear the sound again.It is something like sound intermittent issue.When I decrease the background music’s volume to Zero,I cannot hear voice and sound effect sound as well.Please help me…Thank you so much…
if swipeSpeed \<= 200 then local soundAudioSwipeSpeed1 = audio.loadStream(SwipeSlowestSpeedAudioMP3Path..soundExt ) local soundAudioSwipeSpeed1Channel = audio.play( soundAudioSwipeSpeed1, { channel= 3, loops=0} ) elseif swipeSpeed \> 200 or swipeSpeed \< 1000 then local soundAudioSwipeSpeed2 = audio.loadStream(SwipeSlowSpeedAudioMP3Path..soundExt ) local soundAudioSwipeSpeed2Channel = audio.play( soundAudioSwipeSpeed2, { channel= 3, loops=0} ) elseif swipeSpeed \>= 1000 then local soundAudioSwipeSpeed3 = audio.loadStream(SwipeNormalSpeedAudioMP3Path..soundExt ) local soundAudioSwipeSpeed3Channel = audio.play( soundAudioSwipeSpeed3, { channel= 3, loops=0} ) end