GetVector3

public Vector3 GetVector3(string name, Vector3 defaultValue) ;

Get the value of the Vector3 type.

Parameter Name Description
name Name.
defaultValue Default value. It is returned when there is no parameter.

The value of the parameter. If there is no parameter, it returns defaultValue.

public Vector3 GetVector3(string name) ;

Get the value of the Vector3 type.

Parameter Name Description
name Name.

The value of the parameter. If there is no parameter, it returns Vector3.zero.

public Vector3 GetVector3(int id, Vector3 defaultValue) ;

Get the value of the Vector3 type.

Parameter Name Description
id ID.
defaultValue Default value. It is returned when there is no parameter.

The value of the parameter. If there is no parameter, it returns defaultValue.

public Vector3 GetVector3(int id) ;

Get the value of the Vector3 type.

Parameter Name Description
id ID.

The value of the parameter. If there is no parameter, it returns Vector3.zero.

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

Get the value of the Vector3 type.

Parameter Name Description
name Name.
value The value you get.

The true when there parameters of the specified name.

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

Get the value of the Vector3 type.

Parameter Name Description
id ID.
value The value you get.

The true when there parameters of the specified name.