vrcx-team / VRCX

Friendship management tool for VRChat
MIT License
966 stars 183 forks source link

[Feature Request] Better Thumbnail Preview #510

Closed Kiddo-Kris closed 1 year ago

Kiddo-Kris commented 1 year ago

Currently, the thumbnail preview (specifically, favorite friends/worlds/avatars) is small, alongside text.

Please refer to image 01, the current view

Whats the suggestion?

I would like to suggest making an alternative view mode as an option that's more focused on thumbnails, with text below it, much like VRChat menu for better world management. And additionally, make it scaleable

Please refer to image 02, my suggested view

Why is this neccessary?

As VRCX has become (if not one of) the main tool for managing local world favorites. Many world travelers will manage (including store, which is swapping world from online to local. And retrieval, swap world from local to online so that a portal can be placed) their favorite world locally using VRCX due to the fact that 400 world favor limit is too small for them.

However, the current VRCX thumbnail preview is too small to identify which world(even harder in VR view using SteamVR or OVR Toolkit), people tend to remember the thumbnail instead of the name of the world, especially when they have thousands of worlds.

}(86SIE1D13)FU%FME9K274

image

Natsumi-sama commented 1 year ago

You can achieve what your after using custom CSS https://github.com/vrcx-team/VRCX#themes

Here is an example:

Just larger images Screenshot 2023-03-20 194926

.x-friend-item > .avatar { width: 80px; height: 80px; }

Larger image above text Screenshot 2023-03-20 194833

.x-friend-item > .avatar { width: 290px; height: 290px; }

.x-friend-item { display: block; }

And if you don't want rounded images you can add

.x-friend-item > .avatar > img { border-radius: 0%; }

Kiddo-Kris commented 1 year ago

Much appreciated, thanks for the instruction.