本文介绍了错误:不可发音的成员"Vector2"不能像方法一样使用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我试图做Vector2(-1,0)而不是Vector2.left,但是它给出了这个错误:
I am trying to do Vector2(-1, 0) instead of Vector2.left but it gives this error:
Non-invocable member 'Vector2' cannot be used like a method
有什么想法吗?
推荐答案
Vector2.Left
等于new Vector2(-1,0)
; ,而不是Vector2(-1, 0)
:)
Vector2.Left
is equal to new Vector2(-1,0)
; , not Vector2(-1, 0)
:)
这篇关于错误:不可发音的成员"Vector2"不能像方法一样使用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!