enableSimulation

From Bohemia Interactive Community
Jump to navigation Jump to search
Hover & click on the images for description

Description

Description:
Enables / disables simulation for the given entity, e.g its animation and physics; it will still be able to take damage and report enemies. This command will affect entity simulation only locally. For a global and JIP enabled alternative, see enableSimulationGlobal.
Groups:
Object Manipulation

Syntax

Syntax:
entity enableSimulation state
Parameters:
entity: Object
state: Boolean
Return Value:
Nothing

Examples

Example 1:
player enableSimulation false;

Additional Information

See also:
enableSimulationGlobal simulationEnabled enableDynamicSimulationSystem dynamicSimulationSystemEnabled enableDynamicSimulation dynamicSimulationEnabled setDynamicSimulationDistance dynamicSimulationDistance setDynamicSimulationDistanceCoef dynamicSimulationDistanceCoef triggerDynamicSimulation canTriggerDynamicSimulation

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note
Posted on 19 July, 2011
Krause
The following only applies to Arma 2 before a certain patch, in which such changes have been integrated in the game code.

Nou/Jaynus have discovered something quite important about the Arma2 engine:

Orient yourself to the enableSimulation command in ARMA 2:

If simulation is disabled on objects (this enablesimulation false), they do not send updates across the network, drastically reducing traffic across the network by an order of magnitude. What this means in practicality is that it is possible to have huge mission maker created cities with no or negligible impact on mission performance. Mission placed objects is the most common cause of performance woes - so this is huge news, and was previously undocumented, both on the BIS wiki and elsewhere.

There are some quirks.

While an object which has enableSimulation false set on it will take damage, it will not display any animations or damage states until enableSimulation is enabled back onto it. If you want to disable simulation on a unit and then show it as dieing once it is hit or damaged, add an eventhandler onto it which enables simulation on the object when it is hit or killed. Hit handler for best visual, killed handler for best performance.

This discovery will be the basis of a new unit caching script by Jaynus.

This also has importance in a technical sense: bandwith is the most significant factor in mission performance. The lower the server bandwith, the better the performance.

Posted on 9 Sept, 2011
Rocket
Objects with disabled simulation are not calculated for lightsources beyond the global light (moon/sun), so any light sources you create will not light them.
Posted on 2014-10-21 - 15:33 (UTC)
Killzone_Kid
Units that have been previously subjected to enableSimulation false; or enableSimulationGlobal false; may stay unrecognised for a long time even after simulation was re-enabled, returning objNull as cursorTarget. Force revealing units with reveal command usually solves the problem. For example:
Posted on 2015-05-23 - 16:28 (UTC)
Waffle SS.
After using enableSimulation false or enableSimulationGlobal false on an object, setPos will still update its position across the network in MP.
Posted on 2015-12-02 - 18:55 (UTC)
Pierre MGI
After using enableSimulation false or enableSimulationGlobal false on a vehicle (car, helo), don't forget to re-enable simulation on this vehicle before a player jumps into it. Otherwise, he will be stuck in it, with a black screen and no way to escape!
Posted on 2016-09-01 - 16:52 (UTC)
Demellion
Since Arma 3 1.56 the object can also be returned with cursorObject even if the simulation is not enabled