Give JARVIS a face!! - GUI Tutorial with Pygame

preview_player
Показать описание
In this video I will show how I created the animation I use in my virtual assistant and how you can create your very own, with a little creativity and time.

Or possibly taking a look at some of the items I use in other videos ** [ Amazon Affiliate Links ]**:
(* These links are affiliate links and I may receive a percentage if you make a purchase after clicking these links. These are a great way to assist in the growth of the channel at no additional cost. )

Рекомендации по теме
Комментарии
Автор

this helped me so much making my ai, thank you so much

realxd
Автор

Could you please tell me which video you cover the listening and stop listening functions, those are really cool, love this vids btw

TheExiledCactus
Автор

I made a slight variation to your "face" code. While TALKING, a random choice is made between the next image or the brighter one. That more closely gives the impression that Jarvis is talking. Now there is just one While Loop instead of two.

def face():
A = 390
B = 172
x = 1024
y = 768


choiceList = [0, 100]
COUNT = 1
global TALKING
while True:
if TALKING:
increment = random.choice(choiceList)
else:
increment = 0
img=str(COUNT+increment)
#handler.render ( screen, img, ( A, B ), True, ( x, y ) )

handler.render ( screen, img, ( A, B ), True )
pygame.display.update(A, B, x, y)
time.sleep(.03)
COUNT = COUNT + 1

if COUNT == 65:
COUNT = 1

BillYovino
Автор

we have chat gpt bro. put that in your script so you dont have to use all these natural language fields in your constant arrays

tochi
Автор

bro can you help: "its shows position is not defined".
i need help in this error. :)

paarthgaming
Автор

GUI crashing when i click mouse how to fix this

siradanbirkullanici
Автор

Im getting an error saying that TALKING isnt defined, im not sure why

cashalexander
Автор

Hey, my animation freezes after a few seconds, and i don't know why, can i fix it somehow? thanks

miku
Автор

I did the same code is running but the gui not showing

tusharghosh
Автор

Hey man, i really need ur help, for making a GUI for my AI system Ra-One

vijayantbatra