Installer Steam
log på
|
sprog
简体中文 (forenklet kinesisk)
繁體中文 (traditionelt kinesisk)
日本語 (japansk)
한국어 (koreansk)
ไทย (thai)
Български (bulgarsk)
Čeština (tjekkisk)
Deutsch (tysk)
English (engelsk)
Español – España (spansk – Spanien)
Español – Latinoamérica (spansk – Latinamerika)
Ελληνικά (græsk)
Français (fransk)
Italiano (italiensk)
Bahasa indonesia (indonesisk)
Magyar (ungarsk)
Nederlands (hollandsk)
Norsk
Polski (polsk)
Português (portugisisk – Portugal)
Português – Brasil (portugisisk – Brasilien)
Română (rumænsk)
Русский (russisk)
Suomi (finsk)
Svenska (svensk)
Türkçe (tyrkisk)
Tiếng Việt (Vietnamesisk)
Українська (ukrainsk)
Rapporter et oversættelsesproblem
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