set3DENAttachedCursorEntity: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
m (Text replacement - "↵|version1= 2.18↵↵|branch= dev↵" to " |version1= 2.18 ")
 
(One intermediate revision by one other user not shown)
Line 3: Line 3:
|game1= arma3
|game1= arma3
|version1= 2.18
|version1= 2.18
|branch= dev


|gr1= Eden Editor
|gr1= Eden Editor
Line 44: Line 42:
|r1= [[Nothing]]
|r1= [[Nothing]]


|x1= <sqf>set3DENAttachedCursorEntity createHashMapFromArray [["type", "unit"], ["classname", "B_Survivor_F"]];</sqf>
|x1= <sqf>set3DENAttachedCursorEntity createHashMapFromArray [["type", "object"], ["classname", "B_Survivor_F"]];</sqf>


|x2= <sqf>set3DENAttachedCursorEntity createHashMapFromArray [["type", "marker"], ["classname", "mil_pickup"], ["markertype", "icon"]];</sqf>
|x2= <sqf>set3DENAttachedCursorEntity createHashMapFromArray [["type", "marker"], ["classname", "mil_pickup"], ["markertype", "icon"]];</sqf>

Latest revision as of 16:08, 8 October 2024

Hover & click on the images for description

Description

Description:
Attach an entity to the Eden Editor cursor.
Groups:
Eden Editor

Syntax

Syntax:
set3DENAttachedCursorEntity entityHashMap
Parameters:
entityHashMap: HashMap - in format [["type", entityType], otherOptions] where entityType can be one of:
type options
case-sensitive!
"object"
"marker"
  • "classname": String - see marker classes
  • "markershape": String - can be one of:
    • "icon"
    • "rectangle"
    • "ellipse"
      "polyline" is not supported.
"trigger"
  • "classname": String - object classname; from CfgNonAIVehicles with simulation="detector". Usually "EmptyDetector"
"module"
  • "classname": String - object classname;
"waypoint"
  • "classname": String - classname; from CfgWaypoints
Return Value:
Nothing

Examples

Example 1:
set3DENAttachedCursorEntity createHashMapFromArray [["type", "object"], ["classname", "B_Survivor_F"]];
Example 2:
set3DENAttachedCursorEntity createHashMapFromArray [["type", "marker"], ["classname", "mil_pickup"], ["markertype", "icon"]];

Additional Information

See also:
Eden Editor: Object typeOf

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