武装突袭 Wiki
Advertisement
Introduced with Arma 3 version 1.22
  

點擊圖片可看到更多訊息

開始使用於

遊戲:
Arma 3
版本:
1.22

描述

描述:
Multiplies 3D vector by a scalar.

基本句法

句法:
vector vectorMultiply scalar
參數:
vector: Array
scalar: Number
返回值:
Array

範例

範例1:
_newVector = [1,2,3] vectorMultiply 3; //[3,6,9]

額外資訊

多人遊戲:
-
也可以看看:
vectorAddvectorDiffvectorCrossProductvectorDotProductvectorCosvectorMagnitudevectorMagnitudeSqrvectorDistancevectorDistanceSqrvectorDirvectorUpsetVectorDirsetVectorUpsetVectorDirAndUpvectorNormalizedvectorFromTo

注意事項

此處撰寫句法皆為可行用法. 可到官網[1]專頁回報錯誤. 你可以使用討論頁面或是論壇來進行討論.
新增注意事項 | 如何新增?

Notes

Posted on 28 Jun, 2014
ffur2007slx2_5
(ArmA3 1.22)Algorithm: Vector = [x,y,z]; scalar = a; Result = [(x * a),(y * a),(z * a)]; It is recommended to use vectorMultiply instead of BIS_fnc_vectorMultiply. This is a very useful function, as it can be used with the velocity command to move an object from one position to another. (ie <vector1> to <vector2>) - ensure both positions are found using getPosASL. _obj setVelocity (((getPosASL _target) vectorDiff (getPosASL _obj)) vectorMultiply 2);

Bottom Section

Advertisement