Question on switching /enter and /exit
#3

Quote:
Originally Posted by Qeux
you can use this
Код:
IsKeyJustDown(key, newkeys, oldkeys)
{
	if((newkeys & key) && !(oldkeys & key)) return 1;
	return 0;
}
then you would be able to detect if player is pressing their KEY_ENTER so use
Код:
if(IsKeyJustDown(KEY_ENTER, newkeys, oldkeys)
well I want it to be F key so would I do KEY_F?
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)