安装 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(越南语)
Українська(乌克兰语)
报告翻译问题






Very nice script :)
isSimpleObject cursorObject
in case that formatting causes confusion
```sqf
isSimpleObject cursorObject
```
while pointing your crosshair at the object in question. The only downsides I can recall is that objects lose everything interactive but their model properties (like collision) and sometimes the script does not cleanly replace the object (position and angle may be a little askew). I'd recommend loading the mission and taking a quick look before running the script live to see if you need to exclude anything.
Are you manually circumventing the limitation of the simple object creation or using a massive BIS_fnc_replaceWithSimpleObject for evetything in the layer?
Asking as, stated in wiki, the later should not be used for MP as it might cause desync.
[this] call BIS_fnc_replaceWithSimpleObject;
This composition uses a function I made to destroy objects I placed in my missions and create simple objects in their place. It doesn't work for absolutely everything and does not account for stuff like animation states but if you want something quick and dirty then this will do.
For example, I used this function to create an H-barrier wall with minimal performance impact and create weapon caches that I do not wish to have inventories or destruction effects.