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
But i look at the AI in spectator mod wihtout friendly module its weird, so the simulation is disabled few sec after spawning, the perf are great but after few minutes a lot of unit are gradually simulated (every 2-3 sec). There something somewhere in your code that enable simulation.
I encounter an issue like this by using enableSimulation + dynamicsim (enable/disablesimulation will breack dynamicsim feature).
By the way i do a test by disabling dynamic sim in the Ao module and drop the BI simulation manager module, that take some time to transfer all the unit (to be cached) but when its done got good perf (80fps) in editor, saddly im not able to make it work on dedicated server.
EDIT : Got the same issue with the simulation manager module, after few minutes the unit are gradually simulated.
there something running periodically that enable simulation in your code that breack the dynamicsim or simmanager.
So its impossible for us to implent something that disable simulation because something in your code reenable it.
You should try to find and delete all the line "enableSimulation" in your script.
2nd EDIT : Every 3 sec that enablesimulation on a unit (1 by one) so check in your code where the AI are spawned there should be a line like this :
{
if...................then{
{
_something enableSimulation true;
sleep 3;
};
_something enableSimulation true; should be deleted