[UI] UI for multiple players

Hey,
I’m trying to set a timer for multiple players, using Custom Countdown Timer as a base.
I was wondering what is the expected setup for replicating UI to multiple player :

  • Is it OK if I assign the same canvas to all players ? If so, when updating the canvas, will all players update ?
  • If that’s not the way, am I supposed to set 1 canvas per player UI ? If so, is a canvas array initialised with a for loop sound like a good plan ?

Thanks :slight_smile:

I was working on something similar.

  • Had to create a separate canvas per player otherwise only the last player you add the canvas to was able to see it.

  • Ended up using a for loop for each player to handle their canvas.

3 Likes