mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
replace private with private keyword in first half of common
This commit is contained in:
@ -14,10 +14,10 @@
|
||||
*/
|
||||
#include "script_component.hpp"
|
||||
|
||||
private ["_v1", "_v2", "_v3"];
|
||||
[_this] params [["_vector", [0,0,1], [[]], 3]];
|
||||
|
||||
_v1 = vectorNormalized _this;
|
||||
_v2 = vectorNormalized (_v1 vectorCrossProduct [0,0,1]);
|
||||
_v3 = _v2 vectorCrossProduct _v1;
|
||||
private _v1 = vectorNormalized _this;
|
||||
private _v2 = vectorNormalized (_v1 vectorCrossProduct [0,0,1]);
|
||||
private _v3 = _v2 vectorCrossProduct _v1;
|
||||
|
||||
[_v1,_v2,_v3]
|
||||
[_v1, _v2, _v3]
|
||||
|
Reference in New Issue
Block a user