How I Made the Google Dino Game in PYTHON (5 MINS)

  Рет қаралды 19,481

baraltech

baraltech

Күн бұрын

Пікірлер: 18
@samandsanvideos
@samandsanvideos 2 жыл бұрын
You are a great man...I have been looking for this for MONTHS!!! 😀😀😀
@baraltech
@baraltech 2 жыл бұрын
Thank you so much! Glad I could help!
@amultitaskingperson
@amultitaskingperson 8 ай бұрын
i cudve taught you :(
@hasanchaker9574
@hasanchaker9574 3 жыл бұрын
from ursina import * app = Ursina() window.color = color.white dino = Animation('assetes\dino', collider='box', x=-5) ground1 = Entity( model='quad', texture= 'asset\ground', scale=(50,0.5,1), z=1 ) ground2 = duplicate(ground1, x=50) pair = [ground1, ground2] cactus = Entity( model='quad', texture= 'assets\cacti', x = 20, collider='box' ) cacti = [] import random as r def newCactus(): new = duplicate(cactus, x=10+r.randint(0,5)) cacti.append(new) invoke(newCactus, delay=2) newCactus() label = Text( text = f'Points: {0}', color=color.black, position=(-0.6, 0.4) ) points = 0 def update(): global points points += 1 label.text = f'Points: {points}' for ground in pair: ground.x -= 6*time.dt if ground.x < -35: ground.x += 100 for c in cacti: c.x -= 6*time.dt if dino.intersects().hit: dino.texture= 'assets\hit' application.pause() sound = Audio( 'assets\\beep', autoplay=False ) def input(key): if key == 'space': if dino.y < 0.01: sound.play() dino.animation_y( 2, duration=0.4, curve= curve.out_sine ) dino.animation_y( 0, duration=0.4, delay=0.4, curve = curve.in_sine ) camera.orthographic = True camera.fox = 10 app.run()
@manangupta3285
@manangupta3285 2 жыл бұрын
Thank you for the code.
@btsfangirl5422
@btsfangirl5422 Ай бұрын
Thank you so much
@WhatsInYourHead_
@WhatsInYourHead_ 8 ай бұрын
I added all the image files to my game folder and the screen is still black. Explanation? Also I am using an IDE called replit.
@SubStudios99
@SubStudios99 3 ай бұрын
Did you add pygame.display.flip()
@FrantišekBaran1
@FrantišekBaran1 2 жыл бұрын
Hi! How can I make jump to be smooth?
@Mask_Masked
@Mask_Masked 7 ай бұрын
I know I'm abit late however to smooth out the game and visuals add the following code to the end of your pygame screen line like so: screen = pygame.display.set_mode((1280, 720)) ↓ screen = pygame.display.set_mode((1280, 720),pygame.HWSURFACE | pygame.DOUBLEBUF | pygame.SCALED, vsync=1)
@BlackkPool3869
@BlackkPool3869 3 жыл бұрын
I also subscribed to you. What fine content! Bravo! Bravo!
@baraltech
@baraltech 3 жыл бұрын
Thank you so much!
@quantumCollapses
@quantumCollapses 2 жыл бұрын
Awesome 👍
@baraltech
@baraltech 2 жыл бұрын
Thank you!
@animals-kindoms
@animals-kindoms 3 жыл бұрын
👉💓💓👈
@noobsteve9476
@noobsteve9476 3 жыл бұрын
Ur so cool 😎
@baraltech
@baraltech 3 жыл бұрын
Subscribe for more
@noobsteve9476
@noobsteve9476 3 жыл бұрын
Subbed!!!!
Я сделал ИИ для Гугл Динозаврика :D И он играет лучше тебя!)
11:10
Хауди Хо™ - Просто о мире IT!
Рет қаралды 873 М.
Making a Game in Python with No Experience
5:57
Goodgis
Рет қаралды 1,8 МЛН
Sigma girl VS Sigma Error girl 2  #shorts #sigma
0:27
Jin and Hattie
Рет қаралды 124 МЛН
Непосредственно Каха: сумка
0:53
К-Media
Рет қаралды 12 МЛН
AI Learns How To Play The Chrome Dinosaur Game
10:34
Tyler Mommsen
Рет қаралды 236 М.
How I make bots using python (educational)
17:12
Kian Brose
Рет қаралды 573 М.
Google Dinosaur Game Custom Characters Tutorial
12:16
BillehBawb
Рет қаралды 938 М.
Python Game Development: Scrolling Map Cameras
12:16
HUCORP
Рет қаралды 4,9 М.
The Genius Way Computers Multiply Big Numbers
22:04
PurpleMind
Рет қаралды 245 М.
Automating Chrome Dino game using Python
15:15
I know python
Рет қаралды 18 М.
Python + PyTorch + Pygame Reinforcement Learning - Train an AI to Play Snake
1:38:34
Creating Minecraft in Python [with the Ursina Engine]
48:54
Clear Code
Рет қаралды 1,7 МЛН
Much bigger simulation, AIs learn Phalanx
29:13
Pezzza's Work
Рет қаралды 2,8 МЛН
How to make COOKIE CLICKER in python with PYGAME
20:22