SetAngularVelocity#

ExportTransform.SetAngularVelocity(angularVelocity)#

Rigidbody の角速度[rad/秒]を設定します。
Rigidbody がアタッチされている場合のみ使用できます。

Parameters:

angularVelocity (Vector3) -- 角速度

Example#

local t = vci.assets.GetTransform("SubItem1")
function update()
    t.SetAngularVelocity(Vector3.up * math.pid) -- Rigidbody の角速度を (0, π, 0) に設定
end