No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
3 Posted Topics
Re: See Ogre3D the game engine, I'm using it and it's very good. I will advise you to read this: [url]http://howtomakeagameinmyopinion.blogspot.com/[/url] | |
I made a blog about game development to help beginners like me, here it is: [URL="http://howtomakeagameinmyopinion.blogspot.com/"]How to make a game in my opinion![/URL] I hope it helps! Any suggestions? By the way sorry my bad English. | |
[CODE] private void Record_Click(object sender, EventArgs e) { string[] eventsName = getSelectedEvents(); string[] controlName = getSelectedControls(); for (int i = 0; i < controlName.Length; i++) { Control ctrl = controls[controlName[i]]; foreach (EventInfo eventCtrl in ctrlEvents) { foreach (string eventName in eventsName) { if (eventCtrl.Name == eventName) { Type tDelegate = … |
The End.