Player Movement with Just Python (Video Tutorial - Arsenal RSL)

Hello everyone! I’ve made a video on how to program movement without logic bricks! I’ll leave the video below for those who are interested! :slight_smile:

I do upload several BGE tutorials a week, so if you want updates don’t forget to subscribe to my YouTube channel! :smiley:

My YouTube Channels:

Arsenal RSL (main tutorial channel):
https://www.youtube.com/channel/UC8f…2piEg4xa3xNHOA

Iconic games and game lists (My other random gaming channel):
https://www.youtube.com/channel/UCgN…JgkGJne7vKnL7g

My BGE Tutorial Playlist:
https://www.youtube.com/playlist?lis…bFnThIa_3-8Z68

Blender - Keyboard & Movement without Logic Bricks (Python)

https://youtu.be/9uHv5FvkTLk

Hi! You make an incredible amout of tutorial :slight_smile: . I looked at your keyboard movements tutorial and I wanted to share a little tip with you (If you don’t know it already).

keyboard.events[bge.events.UPARROWKEY] == 1 equals to keyboard.events[bge.events.UPARROWKEY] == bge.logic.KX_INPUT_JUST_ACTIVATED

2>bge.logic.KX_INPUT_ACTIVE

3>bge.logic.KX_INPUT_JUST_RELEASED

edit: you can also replace bge.events…KEY with keycodes (146…) if you know the keycodes.

Keep up the good job!