I'm trying to make an XNA game using Farseer Physics, and it's complaining that XNA and Farseer both have a class called Vector2. How would I make it only use one of them?
|
feedback
|
|
You shoud specify fully qualified namepsace name, or by making story shorter use somethign like this:
and in code use just
| |||
|
feedback
|
|
I don't think Farseer has a class called Vector2, at least I haven't faced this problem nor seen Vector2 class in it. Quick Google search gave me this link, which is probably related to your problem. Basicly Farseer is excpecting another version of XNA framework. Are you using XNA 4.0 and the latest version of Farseer? You could also try latest source version from here. | |||||||||
feedback
|