中文
Appearance
Vector2.Set(index, value)
Vector2
根据给定的索引值,设置当前向量对象中对应索引位置的分量值。
number
void
let lhs = new Vector2(1, 2); lhs.Set(0, 1); lhs.Set(1, 2);