Page MenuHomeFeedback Tracker

The function "BIS_fnc_fadeEffect" doesn't reset the music volume back to the default value
Feedback, NormalPublic

Description

This is what the function does:

switch (_BIS_fadeInOrOut) do
{
	case 0:
	{
		...
		_BIS_fadeDuration fadeSound 0;
		_BIS_fadeDuration fadeMusic 0;
		_BIS_fadeDuration fadeSpeech 0;
		...
	};
	
	case 1:
	{
		...
		0 fadeSound 0;
		0 fadeSpeech 0;
		...
		_BIS_fadeDuration fadeSound 1;
		_BIS_fadeDuration fadeSpeech 1;
		...
	}
};

In other words, if someone uses the function in "fade out" mode ([0,"BLACK",3,1] spawn BIS_fnc_fadeEffect;), they can't go back to normal using [1,"BLACK",3,1] spawn BIS_fnc_fadeEffect

But at the same time, I don't think it is necessary to use 0 fadeMusic 0; at the start of case 1. (it changes the behavior of this function)
you only need:
_BIS_fadeDuration fadeMusic 1;

Details

Severity
Minor
Resolution
Open
Reproducibility
Always
Operating System
Windows 7
Category
Scripting

Event Timeline

Leopard20 updated the task description. (Show Details)Jan 26 2021, 11:55 AM
BIS_fnc_KK removed BIS_fnc_KK as the assignee of this task.May 21 2021, 9:48 PM
BIS_fnc_KK changed the task status from New to Feedback.
BIS_fnc_KK added a subscriber: BIS_fnc_KK.