Vector3Curve

顯示已棄用項目

*此內容是使用 AI(Beta 測試版)翻譯,可能含有錯誤。若要以英文檢視此頁面,請按一下這裡

代表 3D ベクトル曲線,將三個 FloatCurve 實例結合在一起。每個子實例 FloatCurve 可以通過 Vector3Curve:X()、1> Class. Glasgow:Y()1> 和

範例程式碼

Creating a Vector3Curve

--- Vector3Curve
local function createVector3Curve()
local vectorCurve = Instance.new("Vector3Curve")
local curveX = vectorCurve:X() -- creates and returns a FloatCurve animating the X channel
local curveY = vectorCurve:Y() -- creates and returns a FloatCurve animating the Y channel
-- Not setting the Z channel will leave the Z channel not animated.
-- A missing curve or a curve with no keys don't participate in the animation
local key = FloatCurveKey.new(0, 1) -- creates a key at time 0 and with value 1
curveX:InsertKey(key)
curveY:InsertKey(key)
local key2 = FloatCurveKey.new(1, 2) -- creates a key at time 1 and with value 2
curveX:InsertKey(key2)
curveY:InsertKey(key2)
return vectorCurve
end
local function testVector3Curve()
local curve = createVector3Curve()
-- sampling the curve at a given time (returns a vector3)
print(curve:GetValueAtTime(0)) -- returns 1, 1, void
print(curve:GetValueAtTime(0.5)) -- returns 1.5, 1.5, void (result of cubic interpolation with auto tangents)
curve:X():RemoveKeyAtIndex(1)
curve:X():RemoveKeyAtIndex(1)
print(curve:X().Length) -- number of keys = 0
print(curve:GetValueAtTime(0.5)) -- returns void, 1.5, void
end
testVector3Curve()

概要

方法

屬性

方法

GetValueAtTime

將三個 FloatCurves (X, Y, Z) 返回通過時間參數作為三個數字的列表。如果曲線曲線缺失或沒有找到鍵,則將曲線評估為 nil

參數

time: number

取得值的時間。


返回

在通過時間引數 argument 的三個 FloatCurves (X, Y, Z)。

返回 FloatCurve 控制 X 通道 (第一個類型的子實例名為 FloatCurve 的空 X )。如果沒有找到,則會建立空 1>Class.translate1>。


返回

返回 FloatCurve 控制 Y 通道 (第一個類型的子實例名為 FloatCurve 的空子實例名為 Y)。如果沒有找到,將建立空的 1>Class.translate1>。


返回

返回 FloatCurve 控制 Z 通道 (第一個類型的子實例名為 FloatCurve 的空子實例名為 Z)。如果找不到任何,則會建立一個空的 1>Class.translate1>。


返回

活動