Hibby Kart - UPDATE - Alpha17.2.0

  Рет қаралды 5,364

Aaron Hibberd

Aaron Hibberd

Күн бұрын

Changes:
Improved Collision Meshes in the tracks
Baked lighting in the oval track
Improved particle effects for the kart's jet/exhaust
A new 3D starting light replaces the ghetto sprite image
A redesigned default Head for the player
Custom paint colors to make your kart your own
New Race Mode
Ai Karts to Race against
Music courtesy of NEFFEX • NEFFEX - One of a Kind...
Free PDF Tutorial: hibbygames.itc...
Free Car Asset: assetstore.uni...
My Affiliate Link to Unity Asset Store: assetstore.uni...
Glorious Ladybug: assetstore.uni...
Taya’s Alphabet:
Google Play play.google.co...
App Store apps.apple.com...
Steam store.steampow...
Kelsi Davies: Haunt Escape:
Google Play play.google.co...
App Store apps.apple.com...
Website www.hibbygames...
Rumble rumble.com/c/c...

Пікірлер: 32
@glimpse3334
@glimpse3334 7 жыл бұрын
Your video on how to make a cube move in Unity helped me, a 12 year old kid, realise that my dream of making a video game is not impossible. I will always support you and what you do however I can. Btw, holy crap your game looks amazing.
@AaronHibberd
@AaronHibberd 7 жыл бұрын
haha, awesome! thank you
@rockpixelstudios5392
@rockpixelstudios5392 7 жыл бұрын
Looks Really Cool.....Good Luck With The Game.
@shawndinhstephens
@shawndinhstephens 7 жыл бұрын
Keep it up hibster
@meltpack8876
@meltpack8876 6 жыл бұрын
Yo my guy such a baller he's putting bitcoin on the track
@AaronHibberd
@AaronHibberd 6 жыл бұрын
😂
@--Arthur
@--Arthur 6 жыл бұрын
You could try to map the levels with wayspoints, and have a tagged waypoint that has a branching, and a difficulty level for the off-road. Then each waypoint has a value of a road width, and each of the obstacles has a mesh. So the A.I simply has to follow the roads, and if there's an obstacle in sight; avoid it or time it. I'm sure there's a lot of fun algorithms that can be implemented for A.I difficulty and such. I haven't personally programmed A.I before, but that's probably the way I'd do it - atleast as a start.
@AlexVoxel
@AlexVoxel 6 жыл бұрын
You must release it on steam!
@ericcastro007
@ericcastro007 6 жыл бұрын
Physics of your cars are AWESOME! Do you use Sensors for your AI Cars?
@AaronHibberd
@AaronHibberd 6 жыл бұрын
Thanks! I have empty gameobjects placed around the track as waypoints for them to steer towards, when they get close to one, then they switch to the next one
@ericcastro007
@ericcastro007 6 жыл бұрын
That means sometimes the player is not using Rigid body and the native Car Unity system ? You are a brilliant programmer, because in addition to programming, you invent ways to solve problems.
@AaronHibberd
@AaronHibberd 6 жыл бұрын
haha thanks, it's using a rigidbody that I push around, but not their car system. I did use the engine sound code from their system
@thaillistproducer
@thaillistproducer 7 жыл бұрын
You are the MAN bro!! Inspiring!
@AaronHibberd
@AaronHibberd 7 жыл бұрын
thanks!
@Nihilore
@Nihilore 7 жыл бұрын
Awesome!
@jacobsmith3686
@jacobsmith3686 7 жыл бұрын
Late again!!! The games looking amazing keep it up!👌
@AaronHibberd
@AaronHibberd 7 жыл бұрын
haha, you look pretty early to me! Thanks!
@jacobsmith3686
@jacobsmith3686 7 жыл бұрын
Aaron Hibberd I like to be first to enjoy your awesome videos!
@pkeod
@pkeod 7 жыл бұрын
Need to add some bounce to the steering wheel as the suspension bounces.
@snootboi6988
@snootboi6988 6 жыл бұрын
Aren't you going to add Items? P.S. the game looks good.
@matlacking
@matlacking 6 жыл бұрын
Uh? Isn't this mario kart?
@1ManJazBan
@1ManJazBan 7 жыл бұрын
Hey Aaron, great work man, I have a huge favor to ask you. Can you please make a tutorial on how to make unity load the next level only after all the enemies have been killed. Example, after my character gets to the Boss and defeats him, the level is complete and the next level automatically loads. (Or after all enemies in the scene are defeated if there is no boss). I know ur great at these tutorials so that's why I'm asking you. Would be greatly appreciated. Thanks and keep up the good work!
@AaronHibberd
@AaronHibberd 7 жыл бұрын
Have you done one of my tutorials with a GameManager and public variables? All you would need is a public int, it would be your tally of how many enemies died. And a public function in the GameManager to call each time a badguy dies. So when they die it's like deadEnemies++; if(deadEnemies >= totalEnemies){load the next scene} The totalEnemies would be 0 by default. In the Start() of your enemy script, add 1 to the totalEnemies, so it has the correct number of how many are in the level
@1ManJazBan
@1ManJazBan 7 жыл бұрын
Aaron Hibberd okay thanks I'll get to work on it asap
@AaronHibberd
@AaronHibberd 7 жыл бұрын
I think if you watch my UI tutorials, that GameManager script, the way it can have public variables and functions called from any script, that will help you piece together what you need kzbin.info/www/bejne/hYvSpJ-VYr2Zlbc
@1ManJazBan
@1ManJazBan 7 жыл бұрын
Aaron Hibberd I'm a noob at coding & I'm trying to do as you instructed but I'm struggling to get it working. I've been searching for answers but I can't seem to find them. Would it be possible for you to write a gamemanager and an enemy script in the reply so I can see how it actually peices together? I just need an example of how it's actually done. I know your busy guy but this would help me tremendously.
@swapnamtm7752
@swapnamtm7752 4 жыл бұрын
Is it a multiplayer game
@AaronHibberd
@AaronHibberd 4 жыл бұрын
currently no it's not
@diesisteinyoutubekanal3348
@diesisteinyoutubekanal3348 7 жыл бұрын
Will it be possible to play with a wheel?
@AaronHibberd
@AaronHibberd 7 жыл бұрын
oh man, I haven't tested that. I've only been developing using an xbox controller, or keyboard. I will look into that though
Dat Sales Numbers Tho
5:38
Aaron Hibberd
Рет қаралды 4,4 М.
How I Beat Hitman 2 Without ANYONE Seeing Me(even for 1 frame)
19:17
Incredible: Teacher builds airplane to teach kids behavior! #shorts
00:32
Fabiosa Stories
Рет қаралды 11 МЛН
Help Me Celebrate! 😍🙏
00:35
Alan Chikin Chow
Рет қаралды 58 МЛН
Stop using std::vector wrong
23:14
The Cherno
Рет қаралды 74 М.
Car physics like a GTA4 - Unity prototype
7:35
Notteam
Рет қаралды 7 М.
Unlimited Free Games in Steam
15:57
The Spiffing Brit
Рет қаралды 4,4 МЛН
MOST POPULAR ROBLOX Games that DIED...
12:50
Flush
Рет қаралды 73 М.
3D Gaussian Splatting! - Computerphile
17:40
Computerphile
Рет қаралды 138 М.
How I learned Unity without following tutorials (Developing 1)
18:11
Game Maker's Toolkit
Рет қаралды 2 МЛН
Incredible: Teacher builds airplane to teach kids behavior! #shorts
00:32
Fabiosa Stories
Рет қаралды 11 МЛН