GetVector3

GetVector3(string, Vector3)

public Vector3 GetVector3(string name, Vector3 defaultValue) ;

説明

Vector3型の値を取得する。

パラメーター

パラメーター名 説明
name 名前。
defaultValue デフォルトの値。パラメータがない場合に返される。

戻り値

パラメータの値。パラメータがない場合はdefaultValueを返す。

GetVector3(string)

public Vector3 GetVector3(string name) ;

説明

Vector3型の値を取得する。

パラメーター

パラメーター名 説明
name 名前。

戻り値

パラメータの値。パラメータがない場合はVector3.zeroを返す。

GetVector3(int, Vector3)

public Vector3 GetVector3(int id, Vector3 defaultValue) ;

説明

Vector3型の値を取得する。

パラメーター

パラメーター名 説明
id ID。
defaultValue デフォルトの値。パラメータがない場合に返される。

戻り値

パラメータの値。パラメータがない場合はdefaultValueを返す。

GetVector3(int)

public Vector3 GetVector3(int id) ;

説明

Vector3型の値を取得する。

パラメーター

パラメーター名 説明
id ID。

戻り値

パラメータの値。パラメータがない場合はVector3.zeroを返す。

GetVector3(string, out Vector3)

Obsolete public bool GetVector3(string name, out Vector3 value) ;

説明

Vector3型の値を取得する。

パラメーター

パラメーター名 説明
name 名前。
value 取得する値。

戻り値

指定した名前のパラメータがあった場合にtrue。

GetVector3(int, out Vector3)

Obsolete public bool GetVector3(int id, out Vector3 value) ;

説明

Vector3型の値を取得する。

パラメーター

パラメーター名 説明
id ID。
value 取得する値。

戻り値

指定した名前のパラメータがあった場合にtrue。