youtube thinks im learning to code and giving me software engineer ads but in reality im watching these at almost midnight because my brain sees funny colors so I click.
@nicovoss55192 жыл бұрын
Your video (and code :D) quality is amazing. Just stumbled across the Render Engine one and been stuck on your vids on using python for graphics for a while now. Keep up the great work!
@davidt012 жыл бұрын
Nice to have a video that's more than just installing a library
@mdykuki162 жыл бұрын
your videos are underrated.
@ajaybarkade59022 жыл бұрын
Quality Content instant Subscribe!! 😃
@4k-os2 жыл бұрын
Very nice, succinct tutorial! Straight to the point just how I like it. Some of this was recap for me, but this was the first I've heard of numba. Thank you!
@timurgayberi93345 ай бұрын
Thank you! i wish i knew about your channel before .
@rclhi2 жыл бұрын
High quality video ! keep going dude
@bonkaiblue79069 ай бұрын
You know how Length & Height are included in the coding language, Why isn't Depth or width? You know what I mean like 3D has been around long enough so when do we get a built in Depth tag, code, you know? Decidea a Standard or common form to use & add it in, Then we can Set The Length, Width, & Height by whatever measurement like pixels.
@jankucera85052 жыл бұрын
my keys are not getting registered, it goes straight into video rendering (which I cannot play), python 3.10 and 3.8
@azaias Жыл бұрын
Thanks for this! I'm curious, how long have you been working with computer graphics for? And do you use other languages?
@eternal_learner9943 Жыл бұрын
First, sir, you are great. Subscribed. Second, I seem to be having trouble rendering the pixelated video to mp4. The file appears, but it doesn't play. Any advice?
@olgach39892 жыл бұрын
👍👍👍
@rodakdev2 жыл бұрын
so inspiring!!
@venoxedits96912 жыл бұрын
Why so low views? This video is great+
@Channel__T2 жыл бұрын
When I try to run any of the source code, pygame closes out instantly. Has anyone else had this issue?
@BW_H-n2y9 ай бұрын
yes me too but i dont now how to fix it :(
@bluemorty96166 ай бұрын
If you’re getting a “range error” try using only symbols instead of letters in the “self.ASCII_CHARS” section. In here he uses symbols and letter but for me it only worked using symbols.
@Luke-gy4yw5 ай бұрын
Its propably an issue with the main loop, it should look something like this: while True: for event in pg.event.get(): if event.type == pg.QUIT: pg.quit() code that updates logic code that renders on the screen pg.display.flip() --> (or display.upate() if you dont want to update the whole screen) clock.tick() I know I'm late but i figured a late help is better than no help.
@Luke-gy4yw5 ай бұрын
I forgot to add the quit() function below pg.quit(), without only part of the program will be stopped which may cause errors.