Search found 5 matches
- Thu Mar 04, 2010 12:40 am
- Forum: Programming Discussion
- Topic: SDL C++ Problem
- Replies: 4
- Views: 511
Re: SDL C++ Problem
Thanks a bunch, it worked fine. MUCH MUCH MUCH appreciated!
- Wed Mar 03, 2010 1:49 pm
- Forum: Programming Discussion
- Topic: SDL C++ Problem
- Replies: 4
- Views: 511
Re: SDL C++ Problem
Aye sorry, forgot to remove that was just testing around with something earlier.
- Wed Mar 03, 2010 9:48 am
- Forum: Programming Discussion
- Topic: SDL C++ Problem
- Replies: 4
- Views: 511
SDL C++ Problem
Aye, well after little experience with SDL I've encountered a small problem. Basically, I have a drop-down menu and when you click on the menu the drop-down list will appear. However, when you try to click away from the drop down menu to close it, the drop down menu should disappear. It does change ...
- Sun Feb 14, 2010 4:11 am
- Forum: Programming Discussion
- Topic: SDL Animation
- Replies: 5
- Views: 719
Re: SDL Animation
Sorry only checked back to this topic just now. I've read all the comments, and made a timer for the animation however it dosen't seem to be working. Any ideas? void Characterz::Show() { if(xVel < 0) { status = CHARACTER_LEFT; frame++; } else if(xVel > 0) { status = CHARACTER_RIGHT; frame++; } else ...
- Sat Feb 06, 2010 12:44 am
- Forum: Programming Discussion
- Topic: SDL Animation
- Replies: 5
- Views: 719
SDL Animation
Well I'm still new to SDL and working on a first game with a friend. However, what would be an efficient way of adding an Animation timer for the Character sprites? At the moment the animation is running way too fast and I've got a few theorys on how to slow it down, but no actual code snippets. (Us...