mirror of
https://gitlab.com/lvra/lvra.gitlab.io.git
synced 2024-11-10 02:20:26 +01:00
add: vrchat performance page
This commit is contained in:
parent
37905e76fc
commit
08bfc2dc02
2 changed files with 75 additions and 38 deletions
|
@ -7,46 +7,11 @@ weight: 50
|
||||||
|
|
||||||
The most popular social VR game, here are resources to get the best experience on Linux.
|
The most popular social VR game, here are resources to get the best experience on Linux.
|
||||||
|
|
||||||
## Recommendations
|
## Recommended Proton
|
||||||
|
|
||||||
Proton version: [Proton-GE-RTSP](https://github.com/SpookySkeletons/proton-ge-rtsp/releases) - this will give you the most painless experience.
|
Current recommended Proton: [Proton-GE-RTSP](https://github.com/SpookySkeletons/proton-ge-rtsp/releases)
|
||||||
|
|
||||||
### Performance Tuning
|
As opposed to the default setting, this Proton version allows you to use more video player features, such as RTSP stream.
|
||||||
|
|
||||||
In VRC, it's very easy to hit a CPU bottleneck. Avatar material count, avatar mesh count, pixel light count, phys bones, particles all contribute to CPU load.
|
|
||||||
|
|
||||||
How to check if you're bottlenecked by CPU or GPU:
|
|
||||||
- Check GPU usage in `nvtop` (any GPU) or `nvidia-smi` (NVidia-only).
|
|
||||||
- If it's not at 100%, you're likely CPU bottlenecked.
|
|
||||||
- SteamVR: Lower the SteamVR render resolution.
|
|
||||||
- If your FPS doesn't increase, you're likely CPU bottlenecked.
|
|
||||||
|
|
||||||
What to do if CPU bottlenecked:
|
|
||||||
- Reduce Maximum Shown Avatars
|
|
||||||
- I recommend 10-15 as a base setting, likely won't be interacting with more people than that at the same time.
|
|
||||||
- Block Poorly Optimized Avatars: Very Poor
|
|
||||||
- Can still show-avatar people who you are actively interacting with.
|
|
||||||
- Will often notice that showing a speficic person's avatar will wreck your performance, while everyone else's avatars are fine. Blocking very poor by default makes you more aware on whose avatar has a large impact.
|
|
||||||
- Optimize your avatar, and nag your friends to do the same.
|
|
||||||
- There are many tools that let you do this in a few clicks, even if you are completely clueless about what to do.
|
|
||||||
- d4rkAvatarOptimizer
|
|
||||||
- `vrc-get repo add https://d4rkc0d3r.github.io/vpm-repos/main.json`
|
|
||||||
- [Guide](https://github.com/d4rkc0d3r/d4rkAvatarOptimizer)
|
|
||||||
- Avatar Optimizer by Anatawa12
|
|
||||||
- `vrc-get repo add https://vpm.anatawa12.com/vpm.json`
|
|
||||||
- [Guide](https://vpm.anatawa12.com/avatar-optimizer/en/docs/tutorial/basic-usage/)
|
|
||||||
|
|
||||||
|
|
||||||
In-game settings:
|
|
||||||
- Graphics:
|
|
||||||
- Anti-Aliasing: Off or 2x
|
|
||||||
- Greatly increases GPU load (even more so on NVidia)
|
|
||||||
- Try with off first, if the jagged edges bother you too much, try 2x.
|
|
||||||
- Pixel light count: Low
|
|
||||||
- Each pixel light adds significant CPU load.
|
|
||||||
- Turning these completely off will make some worlds look incorrect (too dark).
|
|
||||||
- Shadow Quality: Low
|
|
||||||
- Adds significant GPU load.
|
|
||||||
|
|
||||||
## Common issues
|
## Common issues
|
||||||
|
|
||||||
|
|
72
content/docs/vrchat/performance.md
Normal file
72
content/docs/vrchat/performance.md
Normal file
|
@ -0,0 +1,72 @@
|
||||||
|
---
|
||||||
|
weight: 60
|
||||||
|
title: Performance
|
||||||
|
---
|
||||||
|
|
||||||
|
# Performance
|
||||||
|
|
||||||
|
VRChat is notorius for not looking super great compared to modern 2D titles, while also being laggy. Here are some tips for getting a smoother experience.
|
||||||
|
|
||||||
|
## Recommended Settings
|
||||||
|
|
||||||
|
This gives a good baseline for anyone to start with. Feel free to tweak and experiment further.
|
||||||
|
|
||||||
|
- Anti-Aliasing: Off or 2x
|
||||||
|
- Greatly increases GPU load (even more so on NVidia)
|
||||||
|
- Try with off first, if the jagged edges bother you too much, try 2x.
|
||||||
|
- Pixel light count: Low
|
||||||
|
- Each pixel light adds significant CPU load.
|
||||||
|
- It's extemely common for new world creators to forget to bake lighting and upload a world with too many realtime lights, killing everyone's performance.
|
||||||
|
- Turning these completely off will make some worlds look incorrect (too dark).
|
||||||
|
- Shadow Quality: Low
|
||||||
|
- Peformance hit can be disproportionately high for visual benefit
|
||||||
|
- LOD Quality: Low-Medium
|
||||||
|
- Only makes a real difference in complex scenes, such as forests, cityscapes, etc.
|
||||||
|
- Adds GPU load based on how complex the scene is
|
||||||
|
- Particle Limiter: On
|
||||||
|
|
||||||
|
## CPU Bottlenecks
|
||||||
|
|
||||||
|
In VRC, it's very easy to hit a CPU bottleneck. Avatar material count, avatar mesh count, avatar animators, pixel lights, phys bones, particles all contribute to CPU load.
|
||||||
|
|
||||||
|
By far the biggest contributors are unoptimized avatars and unoptimized worlds.
|
||||||
|
|
||||||
|
### How to check if you're bottlenecked by CPU or GPU:
|
||||||
|
|
||||||
|
1. Check GPU usage in `nvtop` (any GPU) or `nvidia-smi` (NVidia-only).
|
||||||
|
- If it's not at 100%, you're likely CPU bottlenecked.
|
||||||
|
2. SteamVR: Lower the SteamVR render resolution.
|
||||||
|
- If your FPS doesn't increase, you're likely CPU bottlenecked.
|
||||||
|
|
||||||
|
### What to do when CPU bottlenecked
|
||||||
|
|
||||||
|
Here are some tips to ease VRChat's CPU hit on your system.
|
||||||
|
|
||||||
|
#### Reduce Maximum Shown Avatars
|
||||||
|
I recommend 10-15 as a base setting, likely won't be interacting with more people than that at the same time.
|
||||||
|
|
||||||
|
#### Block by default, utilize Show Avatar
|
||||||
|
|
||||||
|
1. Set up a custom Safety profile where you block Animators and Shaders for everyone (possibly even for friends).
|
||||||
|
2. Block Poorly Optimized Avatars: Very Poor
|
||||||
|
3. Manually `Show Avatar` people who you are actively interacting with.
|
||||||
|
|
||||||
|
This gives you full control on what you're seeing, and will be able to quickly identify that one person whose avatar is wrecking your FPS.
|
||||||
|
|
||||||
|
## Avatar Optimization
|
||||||
|
|
||||||
|
Are you running around in a Very Poor avatar? Consider this a read. (And also poke your friends to do the same!)
|
||||||
|
|
||||||
|
There are tools that let you do this in a few clicks, even if you are completely clueless about what to do.
|
||||||
|
|
||||||
|
### d4rkAvatarOptimizer
|
||||||
|
[Guide](https://github.com/d4rkc0d3r/d4rkAvatarOptimizer)
|
||||||
|
|
||||||
|
Install using `vrc-get`:
|
||||||
|
- `vrc-get repo add https://d4rkc0d3r.github.io/vpm-repos/main.json`
|
||||||
|
|
||||||
|
### Avatar Optimizer by Anatawa12
|
||||||
|
[Guide](https://vpm.anatawa12.com/avatar-optimizer/en/docs/tutorial/basic-usage/)
|
||||||
|
|
||||||
|
Install using `vrc-get`:
|
||||||
|
- `vrc-get repo add https://vpm.anatawa12.com/vpm.json`
|
Loading…
Reference in a new issue