我們如何添加Vector3
作爲方法的默認參數?例如:Unity3d c# - Vector3作爲默認參數
Void SpawnCube(Vector3 p = new Vector3(0,0,0)){...}
我只是想行約我得到了一個錯誤:
Expression being assigned to optional parameter `p' must be a constant or default value
我想自定義一個函數來產卵一些game objects
,如果我沒有提供transform.position
,它會去到(0,0,0)
。
any any alternative? – sooon