使うつもりでした
GetInput()
このコードでは、代わりに別のものを使用する必要があります。pollEventは私にこれらのエラーを与えます:
error C2664: 'sf::Window::pollEvent' : cannot convert parameter 1 from 'int' to 'sf::Event &'
error C2664: 'sf::Window::pollEvent' : cannot convert parameter 1 from 'int' to 'sf::Event &'
コードは次のとおりです。
int x = camera->GetPosition().x + window->pollEvent(sf::Mouse::getPosition().x);
int y = camera->GetPosition().y + window->pollEvent(sf::Mouse::getPosition().y);
ありがとう!