Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Cyb10101

6
Posts
1
Topics
A member registered Jun 09, 2020

Recent community posts

(2 edits)

Edit launcher file:

gedit ~/.local/share/applications/io.itch.itch.desktop

Append ' --in-progress-gpu --no-sandbox' on 'Exec' line:

Exec=/home/username/.itch/itch --in-progress-gpu --no-sandbox %U

And the launcher should be working in a few seconds.

Or if you are lazy like me, just a one liner:

sed -Ei "s/^(Exec=\/home\/\w+\/\.itch\/itch)\s+(%U)$/\1 --in-progress-gpu --no-sandbox \2/" ~/.local/share/applications/io.itch.itch.desktop

Extrem simple remove:

sed -i "s| --in-progress-gpu||; s| --no-sandbox||" ~/.local/share/applications/io.itch.itch.desktop
(1 edit)

Under Windows 10 the CPU (60-80%) and the GPU (100%) are very high when playing.

This is probably due to the fact that the FPS (frames per second) is quite high and goes above 2000-4000 FPS.

Apparently it's because of the vSync. Please just follow the thread for more information:

QualitySettings.vSyncCount = ?;
Application.targetFrameRate = 144; // Maybe not a good idea to limit FPS?!

Can you check that if you are too?

You may still need this here:

Thanks, good to know.

(1 edit)

Under Windows 10 the CPU (60-80%) and the GPU (100%) are very high when playing.
This is probably due to the fact that the FPS (frames per second) is quite high and goes above 2000-4000 FPS.

Apparently it's because of the vSync. Please just follow the thread:

QualitySettings.vSyncCount = ?;
Application.targetFrameRate = 144; // Maybe not a good idea to limit FPS?!

You may still need this here:

Nice. CTRL and quality between Good and Fantastic, works perfectly. Thanks.

I assume that the CTRL key was programmed by you and is nothing special from Unity?
I probably have the problem in another game too.

(1 edit)

Hi, I may have a solution, but I can't test it.
In addition, I have unfortunately never done anything with the Unity Engine.


For me, the CPU (60-80%) & GPU (100%) also burns quite a bit:


I found that the FPS (frames per second) is quite high: 2000-4000 + FPS.

See: 4 Quick Ways to See a PC Game’s FPS (Frames Per Second)

This may be solved with this setting:
Application.targetFrameRate = 60;

Möglicherweise benötigt man noch das hier:
QualitySettings.vSyncCount = 1;

See:

Unfortunately, I don't know how I can test this myself. Whether there is software that limits the FPS.
If you create a package for me, I can test it.