Using
playableDirector = GetComponent()
…
playableDirector.Play()
in a WebGL build doesn’t work, switching back to managing the animation with
anim = GetComponent()
…
anim.SetBool(“boolName”, true)
is a workaround.
However, anyone else seen this?