BIS fnc objectsGrabber: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "<code>([^<]*)\[\[([a-zA-Z][a-zA-Z0-9_]+)\]\]([^<]*) *<\/code>" to "<code>$1$2$3</code>") |
Lou Montana (talk | contribs) m (Text replacement - "<code>([^{]+)<\/code>" to "<sqf>$1</sqf>") |
||
Line 27: | Line 27: | ||
Then, data: | Then, data: | ||
< | <sqf>[ | ||
["B_UAV_01_F",[-5.23706,-0.183594,-0.00126648],167.39,1,0,[0.605018,-0.575293],"","",true,false], | ["B_UAV_01_F",[-5.23706,-0.183594,-0.00126648],167.39,1,0,[0.605018,-0.575293],"","",true,false], | ||
["C_Offroad_01_F",[-4.25903,4.62158,0.0630951],224.14,1,0,[0.812812,0.190543],"","",true,false] | ["C_Offroad_01_F",[-4.25903,4.62158,0.0630951],224.14,1,0,[0.812812,0.190543],"","",true,false] | ||
]</ | ]</sqf> | ||
or, if object orientation is not used: | or, if object orientation is not used: | ||
< | <sqf>[ | ||
["B_UAV_01_F",[-5.23706,-0.183594,-0.00126648],167.39,1,0,[],"","",true,false], | ["B_UAV_01_F",[-5.23706,-0.183594,-0.00126648],167.39,1,0,[],"","",true,false], | ||
["C_Offroad_01_F",[-4.25903,4.62158,0.0630951],224.14,1,0,[],"","",true,false] | ["C_Offroad_01_F",[-4.25903,4.62158,0.0630951],224.14,1,0,[],"","",true,false] | ||
]</ | ]</sqf> | ||
|s1=[position, size, objectOrientation] call [[BIS_fnc_objectsGrabber]] | |s1=[position, size, objectOrientation] call [[BIS_fnc_objectsGrabber]] | ||
Line 48: | Line 48: | ||
|r1= [[String]] | |r1= [[String]] | ||
|x1= < | |x1= <sqf><nowiki>[</nowiki>[[getPos]] [[player]], 20, [[true]]] [[call]] [[BIS_fnc_objectsGrabber]];</sqf> | ||
|seealso= [[BIS_fnc_objectsMapper]] [[BIS_fnc_getPitchBank]] [[BIS_fnc_setPitchBank]] | |seealso= [[BIS_fnc_objectsMapper]] [[BIS_fnc_getPitchBank]] [[BIS_fnc_setPitchBank]] | ||
Line 57: | Line 57: | ||
|timestamp= 20211016123337 | |timestamp= 20211016123337 | ||
|text= The format of each entry is as follows: | |text= The format of each entry is as follows: | ||
< | <sqf>0: STRING - Classname | ||
1: ARRAY - Position [delta X, delta Y, z] | 1: ARRAY - Position [delta X, delta Y, z] | ||
2: NUMBER - Azimuth | 2: NUMBER - Azimuth | ||
Line 66: | Line 66: | ||
7: STRING - Initialization commands | 7: STRING - Initialization commands | ||
8: BOOLEAN - Enable simulation | 8: BOOLEAN - Enable simulation | ||
9: BOOLEAN - Position is ASL</ | 9: BOOLEAN - Position is ASL</sqf> | ||
}} | }} |
Revision as of 21:58, 12 July 2022
Description
- Description:
- Converts a set of placed objects to an object array (as a String) for the DynO mapper.
Format is the following. First, the header:/* Grab data: Mission: TheMissionName World: Stratis Anchor position: [3781.59, 3289.67] Area size: 50 Using orientation of objects: yes/no */
Then, data:or, if object orientation is not used: - Execution:
- call
- Groups:
- Object Manipulation
Syntax
- Syntax:
- [position, size, objectOrientation] call BIS_fnc_objectsGrabber
- Parameters:
- position: Position - (Optional, default [0,0]) 2D or 3D position, center of the "grabbing" area
- size: Number - (Optional, default 50) size (radius) of the "grabbing" area
- objectOrientation: Boolean - (Optional, default false) capture object orientation or not. Format BIS_fnc_getPitchBank
- Return Value:
- String
Examples
- Example 1:
Additional Information
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 Oct 16, 2021 - 12:33 (UTC)
-
The format of each entry is as follows:
0: STRING - Classname 1: ARRAY - Position [delta X, delta Y, z] 2: NUMBER - Azimuth 3: NUMBER - Fuel 4: NUMBER - Damage 5: ARRAY - Return from BIS_fnc_getPitchBank (only if 2nd param is true) 6: STRING - vehicleVarName 7: STRING - Initialization commands 8: BOOLEAN - Enable simulation 9: BOOLEAN - Position is ASL