enableSimulationGlobal: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "(\| * )+\}\}" to "}}")
m (Some wiki formatting)
 
(38 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Command
{{RV|type=command


| arma3
|game1= arma3
 
|version1= 1.12
|1.12


|arg= global
|arg= global
Line 9: Line 8:
|eff= global
|eff= global


|serverExec= server |Exec=
|serverExec= server


|gr1= Object Manipulation
|gr1= Object Manipulation


| MP command. Enable or disable simulation for given entity, globally. Call this only from the server. Has the same effect as [[enableSimulation]] when used in SP.
|descr= Enable or disable simulation for given entity, globally. Has the same effect as [[enableSimulation]] when used in singleplayer.


| entity [[enableSimulationGlobal]] enable
|mp= {{Feature|informative|Since {{GVI|arma3|2.06}} the command can also be executed client-side, with a [[Multiplayer_Scripting#Locality|local]] argument.}}
 
|s1= entity [[enableSimulationGlobal]] enable


|p1= entity: [[Object]]
|p1= entity: [[Object]]
Line 21: Line 22:
|p2= enable: [[Boolean]]
|p2= enable: [[Boolean]]


| [[Nothing]]
|r1= [[Nothing]]


|x1= <sqf>_myObject enableSimulationGlobal false;</sqf>


|x1= <code>_myObject [[enableSimulationGlobal]] false;</code>
|x2= <sqf>[_object, false] remoteExec ["enableSimulationGlobal", 2];</sqf>


|x2= <code>[_object, [[false]]] [[remoteExec]] ["enableSimulationGlobal", 2];</code>
|seealso= [[enableSimulation]] [[simulationEnabled]] [[enableDynamicSimulationSystem]] [[dynamicSimulationSystemEnabled]] [[enableDynamicSimulation]] [[dynamicSimulationEnabled]] [[setDynamicSimulationDistance]] [[dynamicSimulationDistance]] [[setDynamicSimulationDistanceCoef]] [[dynamicSimulationDistanceCoef]] [[triggerDynamicSimulation]] [[canTriggerDynamicSimulation]]
 
}}
| [[enableSimulation]], [[simulationEnabled]], [[enableDynamicSimulationSystem]], [[dynamicSimulationSystemEnabled]], [[enableDynamicSimulation]], [[dynamicSimulationEnabled]], [[setDynamicSimulationDistance]], [[dynamicSimulationDistance]], [[setDynamicSimulationDistanceCoef]], [[dynamicSimulationDistanceCoef]], [[triggerDynamicSimulation]], [[canTriggerDynamicSimulation]]


{{Note
|user= Killzone_Kid
|timestamp= 20141021153300
|text= Units that have been previously subjected to <sqf inline>enableSimulation false</sqf> or <sqf inline>enableSimulationGlobal false</sqf> 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:
<sqf>player reveal previouslySimDisabledUnit;</sqf>
}}
}}
{{GameCategory|arma3|Scripting Commands}}
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
<!-- CONTINUE Notes -->
<dl class="command_description">
<dd class="notedate">Posted on October 21, 2014 - 15:33 (UTC)</dd>
<dt class="note">[[User:Killzone Kid|Killzone Kid]]</dt>
<dd class="note">
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: <code>{[[player]] [[reveal]] _x} [[forEach]] [[allUnits]];</code>
</dd>
</dl>
<!-- DISCONTINUE Notes -->

Latest revision as of 18:01, 25 July 2022

Hover & click on the images for description

Description

Description:
Enable or disable simulation for given entity, globally. Has the same effect as enableSimulation when used in singleplayer.
Multiplayer:
Since Arma 3 logo black.png2.06 the command can also be executed client-side, with a local argument.
Groups:
Object Manipulation

Syntax

Syntax:
entity enableSimulationGlobal enable
Parameters:
entity: Object
enable: Boolean
Return Value:
Nothing

Examples

Example 1:
_myObject enableSimulationGlobal false;
Example 2:
[_object, false] remoteExec ["enableSimulationGlobal", 2];

Additional Information

See also:
enableSimulation 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
Killzone_Kid - c
Posted on Oct 21, 2014 - 15:33 (UTC)
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:
player reveal previouslySimDisabledUnit;