Version: 2017.4
public int AddKey (float time, float value);

パラメーター

timeキーを追加する時間(カーブグラフにおける水平軸)
valueキーの値(カーブグラフにおける垂直軸)

戻り値

int 追加されたキーのインデックス、キーを追加しなかった場合は -1 を返します。

説明

カーブに新しいキーを追加します。

Smooth tangents are automatically computed for the key. Returns the index of the added key. If no key could be added because there is already another keyframe at the same time -1 will be returned.

関連項目: keys 変数 .


public int AddKey (Keyframe key);

パラメーター

keyキーにカーブを追加します。

戻り値

int 追加されたキーのインデックス、キーを追加しなかった場合は -1 を返します。

説明

カーブに新しいキーを追加します。

Returns the index of the added key. If no key could be added because there is already another keyframe at the same time -1 will be returned.

関連項目: keys 変数、Keyframe 構造体