Skip to content

Commit 28892e5

Browse files
authored
Merge pull request EXOK#74 from Calverin/fix-cutscene-hair
Fix White Hair in Cutscenes
2 parents 2465969 + 2c17145 commit 28892e5

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Source/Actors/Player.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1998,6 +1998,12 @@ private void StDeadUpdate()
19981998
private void StCutsceneEnter()
19991999
{
20002000
Model.Play("Idle");
2001+
// Fix white hair in cutscene bug
2002+
if (tDashResetFlash > 0)
2003+
{
2004+
tDashResetFlash = 0;
2005+
SetHairColor(CNormal);
2006+
}
20012007
}
20022008

20032009
private void StCutsceneUpdate()

0 commit comments

Comments
 (0)