Infinite ScrollRect?

How to do an infinitely Scrolling scroll rect that snaps into place when you press up and down on keyboard?

This probably belongs on the forums, as its not a short topics, and will engender plenty of conversation. But here goes.

The overlay on the screen could be done with a screen space canvas. Note that is always on top of the screen. It appears to switch side to side as the player moves, but its always displayed.

The numbers popping up when damage is dealt could be done with world space canvases. Same deal for the names above the characters heads. Be sure to remove the graphics raycaster component from the canvas for anything that cannot be interacted with.

The actual wrist watch UI (and I assume this is what you really care about) could be made up of multiple world space canvases. One way to duplicate this would be to have all of the canvases parented to an empty GameObject, and rotate the GameObject. This concept is hinted at in the 3D art display on the YouTube channel you linked.

One thing to consider is weather you need to create any elements dynamically, or if the entire thing can be prebuilt. For this I would suggest prebuilding as much as possible. The first menu showing the various options could be entirely prebuilt, its likely every character will have the same skills, options, quit, ect items in this menu. For the second menu you may not be able to prebuild everything, but you could build the background slots, and just populate them at runtime.

As too relying on his tutorials, I’m not sure that’s a good idea, he seems pretty sketchy :slight_smile: