Why You Should Learn Python in 2022
1:21
Make TikTok Logo in Python
1:19
2 жыл бұрын
Make Cookie Auto Clicker In Python
1:02
Simulate Key Presses in Python
1:17
2 жыл бұрын
3D Animation in Python Tutorial
2:02
Python Beginner Tutorial #6 - Lists!
3:46
Squid Game Level Made In Python
1:49
Пікірлер
@jtyigftyghde68v
@jtyigftyghde68v Күн бұрын
bruhhh ground not showing
@priyankasurana8936
@priyankasurana8936 10 күн бұрын
App name pls
@Кимка_ким
@Кимка_ким 11 күн бұрын
import calendar as cal calendar.prcal(2024)
@THEDARKNESSKEEPSGROWING
@THEDARKNESSKEEPSGROWING 11 күн бұрын
Bro I swear original lua is easier than python 💀
@Pechuga024
@Pechuga024 14 күн бұрын
It doesn't work for me to put blocks and break blocks.
@SenseiinShadows
@SenseiinShadows 18 күн бұрын
pls sourcecode
@radhya8923
@radhya8923 19 күн бұрын
Yess
@ultrabsodguy
@ultrabsodguy 27 күн бұрын
Wow old mc video background sound
@Yousef_roffa269
@Yousef_roffa269 28 күн бұрын
i just started learning python today
@BS_STAR10
@BS_STAR10 Ай бұрын
Fake😂
@keatpinedakeatpineda
@keatpinedakeatpineda Ай бұрын
Guys what ursina do?
@Ritikabathaw
@Ritikabathaw Ай бұрын
Thank you bhaiya ❤❤
@VadivelMurugan-np9jo
@VadivelMurugan-np9jo Ай бұрын
Yes
@MortalVortex35
@MortalVortex35 Ай бұрын
says not responding
@kdiversoncrossover_073
@kdiversoncrossover_073 Ай бұрын
Why u using ursina for a 2d game, js use pygame, because isn't ursina mostly for 3d
@Python_es_god
@Python_es_god Ай бұрын
que formato usan los modelos 3d?
@PlainTalent
@PlainTalent Ай бұрын
Me still doing print("Hello world") but bot working 😅
@SureshKumar-l4e4i
@SureshKumar-l4e4i Ай бұрын
Har har mahadev
@Mvoob
@Mvoob Ай бұрын
what is a zippycode
@Teena-jc8xf
@Teena-jc8xf Ай бұрын
Thank you , it is superb ❤
@MorireRyan
@MorireRyan Ай бұрын
YOU DID NOT TEACH ANYTHING😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠👿
@amongusVNgaming
@amongusVNgaming 2 ай бұрын
"Work smarter not harder" is real 🗿
@MoscowMapperRus
@MoscowMapperRus 2 ай бұрын
from turtle import * speed(10) color('cyan') bg color('black') b = 200 while b > 0: left(b) forward(b *~3) b = b - 1
@Planet_Robot
@Planet_Robot 2 ай бұрын
"I'm thinking of making more python 3d game tutorials. Do you want more Ursina Engine tutorials? Let me know!" Yes please :)
@cycloneffx0292
@cycloneffx0292 2 ай бұрын
Long time no see❤😢
@Noname_vvb-w6n
@Noname_vvb-w6n 2 ай бұрын
hahahahaa
@thebe1768
@thebe1768 2 ай бұрын
i just stop from hello world lol
@AutomaticEncoder
@AutomaticEncoder 2 ай бұрын
from ursina import * from ursina.prefabs.first_person_controller import FirstPersonController import random app = Ursina() Sky() coin = 0 box = [] # Создание кубов cube1 = Entity(model='cube', color=color.black, scale=(2, 3, 1), position=(-3, 1, 0), rotation=(0, 0, 0)) box.append(cube1) cube2 = Entity(model='cube', color=color.black, scale=(2, 3, 1), position=(-7, 1, 0), rotation=(0, 0, 0)) box.append(cube2) cube3 = Entity(model='cube', color=color.black, scale=(2, 3, 1), position=(-14, 1, 0), rotation=(0, 0, 0)) box.append(cube3) cube4 = Entity(model='cube', color=color.black, scale=(2, 3, 1), position=(-18, 1, 0), rotation=(0, 0, 0)) box.append(cube4) cube5 = Entity(model='cube', color=color.black, scale=(2, 3, 1), position=(-22, 1, 0), rotation=(0, 0, 0)) box.append(cube5) cube6 = Entity(model='cube', color=color.black, scale=(2, 3, 1), position=(-26, 1, 0), rotation=(0, 0, 0)) box.append(cube6) cube7 = Entity(model='cube', color=color.black, scale=(2, 3, 1), position=(-30, 1, 0), rotation=(0, 0, 0)) box.append(cube7) def input(key): global coin if key == 'left mouse down': for boxes in box: if boxes.hovered: boxes.position_x = random.randint(0, 200) # Перемещение кубов Audio('sound/bullet.mp3') coin += 5 print(f'Монеты: {coin}') # Создание сцены plane = Entity(model='plane', scale=(200, 2, 200), texture_scale=(100, 100), collider='box', color=color.lime, texture='grass') wall1 = Entity(model='cube', texture='sprite/yachik.png', scale=(10, 3, 1), position=(20, 1, 20), rotation=(0, 0, 0)) wall2 = duplicate(wall1, z=10) wall3 = duplicate(wall1, z=15) wall3 = duplicate(wall1, z=30) hand = Entity(model='cube', parent=camera.ui, position=(0.6, -0.1, 0), scale=0.2, texture_scale=(0.1, 0.1)) player = FirstPersonController(y=2, x=2, z=2) # Запуск игры app.run() Hello!! Someone please help me when I press the left mouse button and the code doesn't execute!!! Thank you in advance!!
@beachmonke_vr
@beachmonke_vr 2 ай бұрын
if your lazy here. from turtle import * seed (10) color ('cyan') bgcolor ('black') b = 200 while b > 0: left (b) foward(b * 3) b = b - 1
@rejoicedatsomor9862
@rejoicedatsomor9862 2 ай бұрын
Yes
@otemporizador3550
@otemporizador3550 2 ай бұрын
But where do we storage the graphics?
@emmanuelibiyemi5607
@emmanuelibiyemi5607 2 ай бұрын
i fucking love you bro or woman brav you just saved me ... burh if you a male chill oh
@ErwinSm.
@ErwinSm. 2 ай бұрын
Okay
@Trollface869-m2d
@Trollface869-m2d 3 ай бұрын
.
@kevinshenshiqi8210
@kevinshenshiqi8210 3 ай бұрын
7
@dhruvsharma-pc6qu
@dhruvsharma-pc6qu 3 ай бұрын
May i get the all code please
@dhruvsharma-pc6qu
@dhruvsharma-pc6qu 3 ай бұрын
May i get the all code please
@ilikespaceengine
@ilikespaceengine 3 ай бұрын
The output is Yes,because if you did fraction,the result of 5/2 would be 2.5,and 2.5 is greater than 2,therefore the output of the input is "yes".
@Onlyfame-sh6xd
@Onlyfame-sh6xd 3 ай бұрын
Hi bro, could you help me prescribe the sound commands for this game
@wag5210
@wag5210 3 ай бұрын
ударить нодом в глаз русскому или украинскому ребенку. Говорить с украинским и российскими властяии только через порнографию
@abc-w4v
@abc-w4v 3 ай бұрын
Which software u used?
@Vid_Lumina
@Vid_Lumina 3 ай бұрын
Think about the mind of person who wrote the module
@ishujesus1553
@ishujesus1553 4 ай бұрын
Like
@Paulik76910
@Paulik76910 4 ай бұрын
When the 5th part is released, this project could become a hit
@Paulik76910
@Paulik76910 4 ай бұрын
Thank you for making such content!
@KKopustinskiy
@KKopustinskiy 4 ай бұрын
a=1 for b in range (100): print(a) a=a+1
@pycnicYT
@pycnicYT Ай бұрын
Just say print(b)
@LoganMcDermott265
@LoganMcDermott265 4 ай бұрын
Does anyone know if there is a faster way to have each frame in a file with minimal clicks rather than having to go through each frame individually and press export and export as .obj to a folder
@proglitcher1231
@proglitcher1231 4 ай бұрын
why does my python crash sometimes when I load from turtle?
@SLASH-V0LT
@SLASH-V0LT 3 ай бұрын
Idk Why But Possibly Since Turtle Is A BIIIIIGGG library
@jrmmngr
@jrmmngr 4 ай бұрын
what python app are you using?
@Glasraf
@Glasraf 4 ай бұрын
ty now i know how to add animation but if I can do that with blendr im programer but im do all alone