Welcome, Guest. Please login or register. Did you miss your activation email?

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Islander

Pages: [1]
1
Window / Re: Keyboard direct input isKeyPressed not working
« on: July 04, 2014, 05:44:58 pm »
Thanks for the reply,

I was going crazy about this yesterday (2:00AM).

This morning I found the problem, it dosen't come from the code but from a software. I use Synergy to share Keyboard / Mouse on multiple computer and it was messing with my code.

Erg, stupid mistake but atleast its now resolved.

2
Window / [SOLVED] Keyboard direct input isKeyPressed not working
« on: July 04, 2014, 05:20:10 am »
I'm currently playing around SFML for the first time. I initially made my player movements with Events but it was always delayed. So I tried this

                if( sf::Keyboard::isKeyPressed( sf::Keyboard::Up ) )
                {
                        player.move(0, -5);
                }

This come from the documentation, but nothing move in my game.

It seems really simple, do I forget something ?

Edit : Forgot to say, its not in a PollEvent loop

Pages: [1]
anything