I love your tutorials! you should do more, it'd be really helpful for those intro to computing mods where assignments given are to create games based on Kivy (which is what I have)! Thanks so much, really looking forward to more of such similar content!
@Abdullah-mg5zl4 жыл бұрын
Thank you. I might consider doing a few more kivy game videos, maybe showing a slightly more complex game!
@amrishsandhu3214 жыл бұрын
Abdullah Aghazadah on the last vid, tryna understand kivy better so i can create a maze/pacman like game for my assignment!
@Abdullah-mg5zl4 жыл бұрын
@@amrishsandhu321 That should be fun. You may have to learn some path finding algorithm (Dijkstra SPT or A* if you want it to be efficient) for a maze or pac man game. I have a C++ pacman implementation here, if that helps: kzbin.info/www/bejne/iZrZhKxpgJmFqas
@amrishsandhu3214 жыл бұрын
Abdullah Aghazadah hey is there any way i could contact you? would like to ask for some help/advice on kivy!
@Abdullah-mg5zl4 жыл бұрын
I don't like to give out my contact info, but feel free to ask your question in the comments and I'll do my best to answer!
@blackbeasthg3 жыл бұрын
thanks sir this video help me
@Abdullah-mg5zl3 жыл бұрын
No problem man, hope you have an awesome day!
@reddaii2 жыл бұрын
hey, im creating a game and i have my enemies in my python file but the main character (square) is in the kv file how do i reference an object in a kv file to the main py file, im trying to use "my_player = self.root.ids.my_player" but i keep getting an error "'MainCanvas' object has no attribute 'my_player'"