Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
The reason of high load is this script decompresses the movie. It basically have an archive and n unarchiver in it.
But actually, yes, there is a way
Look for two vatiables
public const int TASK_END_LIMIT = 7000;
public const int SCHEDULLER_START_LIMIT = 10000;
The total "budget" is 50000 operations by default
So, TASK_END_LIMIT means it will consume 43000 operations
So, you need to set it much higher, probably something line 37000 and 40000, ot even higher
It will make initialization something like 4 times slover.
SCHEDULLER_START_LIMIT should be higher then TASK_END_LIMIT by some margin.