安裝 Steam
登入
|
語言
簡體中文
日本語(日文)
한국어(韓文)
ไทย(泰文)
Български(保加利亞文)
Čeština(捷克文)
Dansk(丹麥文)
Deutsch(德文)
English(英文)
Español - España(西班牙文 - 西班牙)
Español - Latinoamérica(西班牙文 - 拉丁美洲)
Ελληνικά(希臘文)
Français(法文)
Italiano(義大利文)
Bahasa Indonesia(印尼語)
Magyar(匈牙利文)
Nederlands(荷蘭文)
Norsk(挪威文)
Polski(波蘭文)
Português(葡萄牙文 - 葡萄牙)
Português - Brasil(葡萄牙文 - 巴西)
Română(羅馬尼亞文)
Русский(俄文)
Suomi(芬蘭文)
Svenska(瑞典文)
Türkçe(土耳其文)
tiếng Việt(越南文)
Українська(烏克蘭文)
回報翻譯問題
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