Hey all,
I am currently learning sfml 1.6/2.0 (which is amazing btw). I've spent the last week or so developing a pretty cool (for my level ha) 2d tile map engine with working camera, zoom etc, and this loads a txt file to do all the rendering bla bla bla...
Anyways, I want to make an editor in Qt so that I dont need to make boring txt files all day. I created a QWidget/sf::RenderWindow extension (kind of like the qt tutorial), and moved the 'main loop' to the OnUpdate() function. This prints out the initial screen fine, but I can't get inputs to register with the window. The screen still refreshes, ( if I just have something move (without input) it will still do so), its just my original input code isn't registering. Is there any trick here that is obvious? I setFocusPolicy(Qt::StrongFocus).
I can show code if necessary, just wondering if anyone hit this same roadblock.