current3DENOperation: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (1.56)
m (format)
Line 20: Line 20:
  |= RETURNVALUE  
  |= RETURNVALUE  


|x1= <code>if (current3DENOperation == "Move") then {[[hint]] "Moving";};</code>|= EXAMPLE1  
|x1= <code>[[if]] ([[current3DENOperation]] == "Move") [[then]] {[[hint]] "Moving";};</code>|= EXAMPLE1  
____________________________________________________________________________________________
____________________________________________________________________________________________



Revision as of 14:21, 18 September 2016

Hover & click on the images for description

Description

Description:
Returns the currently performed editing operation in Eden Editor.
Groups:
Uncategorised

Syntax

Syntax:
current3DENOperation
Return Value:
String - operation name. Can be one of following:
  • "" (no operation)
  • "Move"
  • "Rotate"
  • "GroupTo"
  • "Connect"
  • "Create"

Examples

Example 1:
if (current3DENOperation == "Move") then {hint "Moving";};

Additional Information

See also:
See also needed

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

Notes


Bottom Section