diff --git a/Assets/USharpVideo/Scripts/USharpVideoPlayer.cs b/Assets/USharpVideo/Scripts/USharpVideoPlayer.cs index e029779..8654f3e 100644 --- a/Assets/USharpVideo/Scripts/USharpVideoPlayer.cs +++ b/Assets/USharpVideo/Scripts/USharpVideoPlayer.cs @@ -176,6 +176,10 @@ private void Start() { SetPlayerMode(PLAYER_MODE_AVPRO); _nextPlaylistIndex = 0; // SetPlayerMode sets this to -1, but we want to be able to keep it intact so reset to 0 + + foreach (var syncController in GetComponentsInChildren()) { + syncController.SetStreamVisual(); + } } _shuffleSeed = Random.Range(0, 10000);