You don't need a CS degree if all you want is to make games. Save yourself from months of pain. Not that CS isn't interesting, because it is. Just.... go back for the right reasons.
@@rafbach75 making indie games maybe, but studios usually look for a degree, as a non degree holder here I've personally seen that it's pretty hard to get your foot in the door without the degree
Tren Black: Basically my secret to using C# is just closing my eyes and pretending it's java Me: Basically my secret to creating 1 line web scrapers is just closing my eyes and pretending that the list comprehensions are just the for loops Man, your skills are remarkable, I've deeply enjoyed the fantastic amount of work you've been through, this is really amazing!
The fact that a lot of people "lose" projects. Shows so many bad habits from the start. Like no version control, local or online backups and what not. Can't argue "oh it's a small project" cause it shouldnt matter the size.
@@dujemandalinic5468 as he says in the video: he writes C# by closing his eyes and pretending it's Java. I write Java by closing my eyes and pretending it's C#
Im 24 years old and starting to learn how to code with python (the very basics) ; mainly strings with values and editing values from a different line of string (And sometimes having an error on line 300 when I only have 20 lines). Anyway, I would love some insight on what programs he used for this, I would really like to start learning deeply about 3D modeling and such while scripting and being able to do this. It is fascinating.
This was a great watch, I love seeing you attempt programming challenges, it personally inspires me to keep challenging myself with ideas when coding! Great video!
This video finally sold me on this shoddily re-creating games idea of yours. It's kind of sympathetic that you don't take yourself too seriously doing this. Maybe this should reflect in the video title, like "I hacked together Wii Sports in 24 Hours" (just for those YT algorithm gainz). Really enjoyed watching after the initial inhibitions! Keep it up
Very small thing, but at 6:59 you say you have an int-variable that keeps track of who touched the ball last. Wouldn't it make more sense to use a boolean for that? It's basically made for that and while completly unrealistic it can't go out of range like an int
There's a few reasons I went an int instead of a bool. Firstly, it is more readable to assign a number to a player rather than a true or false statement. It would be kinda weird to say "true" is player and "false" is enemy. What if I added 3 players? Then I would need to switch to an int anyway. This also doubled as a index for player in the player array. You can't use a bool as an array index. Secondly, I used an int for the dir being 1 or -1 so that I could multiply it with the direction on my Z axis. This greatly reduced the amount of code I needed to write since I only needed to declare one target position and could just multiply the z force with dir.
I'd totally recommend getting a Wiimote for unity. A Wiimote can connect directly to unity with a plugin removing the horrendous input lag you'd get from a phone, it also is more documented and has ir pointer functionality you can use like a mouse or as a zapper gun.
Unity has stability issues, I posted many bugs report to Unity forum and I got almost zero response on Engine functionality stability reports. So later on this year in June, my final major project before Final exhibition Prototype product to be submitted: I was working for over 2 months. Then when deadline 6 hours before submission deadline, a Fatal Error occured on Unity and I lost the entire project folder.
Lol, I love the tags. "Michael Reeves Mark Rober Dani Dani2 William Osman Sam Hogan Simone Giertz electroboom unnecessary inventions Randall Devon Crawford Jonas Tyroller ThinMatrix The Cherno DIY Perks Vlog Creations NDA HACK Eben Kouao Zyger Allen Pan - Sufficiently Advanced Will Kwan mitxela Brackeys Fat Dino Code Bullet devlog python computer science software engineer karlson coding coder making a game how to make games unreal engine unity unity3d game development"
LOL, your tags are funny: Michael Reeves,Mark Rober,Dani,Dani2,William Osman,Sam Hogan,Simone Giertz,electroboom,unnecessary inventions,Randall,Devon Crawford,Jonas Tyroller,ThinMatrix,The Cherno,DIY Perks,Vlog Creations,NDA HACK,Eben Kouao,Zyger,Allen Pan - Sufficiently Advanced,Will Kwan,mitxela,Brackeys,Fat Dino,Code Bullet,devlog,python,computer science,software engineer,karlson,coding,coder,making a game,how to make games,unreal engine,unity,unity3d,game development,
Nintendo vs lil coder boi with a laptop. WHO WON???? Smash like and subscribe if its me!!!
Gotta say, not you. But you make me wanna complete my CS degree, have a like.
I too wouldve switched my major to gender studies 😂
You don't need a CS degree if all you want is to make games. Save yourself from months of pain.
Not that CS isn't interesting, because it is. Just.... go back for the right reasons.
@@rafbach75 making indie games maybe, but studios usually look for a degree, as a non degree holder here I've personally seen that it's pretty hard to get your foot in the door without the degree
@@FatherPhi You are right. I guess it depends on the industry. Online retail usually doesn't demand one.
wii tennis more like bean tennis
first... to reply to ur comment!!
Milk those bean jokes Dani
yep i see no unity particle system
YES!!! DANI IS HERE!!!
Dani I am currently drinking a lot of milk!!!
am I in this?
you’re also in actual nintendo wii tennis
Yeah - check out 4:23 - and welcome to being UA-cam-famous!
Sounds like a new challengeeee
Ben looking kinda toasty ngl
OMG Why are you here hello
why everyone so allergic to version control
Yeah I dont get why people dont automatically use it. A simple git init would of save him time no?
how to into version control sur visual sutio 2019???mm
It depends if youve had a fulltime dev job or not. Once you work a full time dev job and you use git a decent amount git becomes amust
I store everything in private github repos, best decision of my life
coders who've never worked in a professional setting don't use vc
That Devon Crawford comment 😅
shit hurts
RKO from outta nowhere
That killed me hahaha
BRO i started laughing but then was like damn f
Actually playing any tennis game, I feel like it was coded in one day...
U ain’t wrong tho. Ao tennis is getting better tho like I actually really enjoy ao tennis 2
YO MY TWO HOBBIES TENNIS AND CODING COMBINE WHAT ARE THE CHANCES
When the Nintendo dev procrastinates until the day before release.
Lmao Monk Matt’s Newton’s 1st Law
too good
too woke
“Switched my major to GenDEr StUdiEs” 😂😂
Tren Black: Basically my secret to using C# is just closing my eyes and pretending it's java
Me: Basically my secret to creating 1 line web scrapers is just closing my eyes and pretending that the list comprehensions are just the for loops
Man, your skills are remarkable, I've deeply enjoyed the fantastic amount of work you've been through, this is really amazing!
The fact that a lot of people "lose" projects. Shows so many bad habits from the start. Like no version control, local or online backups and what not. Can't argue "oh it's a small project" cause it shouldnt matter the size.
@Pun Jab I what do you mean by that? You can make your repo private :D
Best series on UA-cam... that Ben Awad joke tho 😂😂😂
“Don’t care didn’t ask, plus I bench more than you” 😂
Your secret to writing C# is exactly the way I wrote Java code
Whats that secret
@@dujemandalinic5468 as he says in the video: he writes C# by closing his eyes and pretending it's Java. I write Java by closing my eyes and pretending it's C#
His method is exactly how I started writing any language other than Java lmao
@@RewindMods Object oriented programming languages are all pretty much the same with slightly different syntaxes
@@deondupreez4713 ah ok thx for reply
This is seriously some of the best content on any tech channels out there period .
You never saw Dani then
Totally!
This one and Programming with Michael are by far the best on youtube
@@THEKiNG-fh9zl dox
0:17 "still had less bug than Rito tho xd" SO TRUE LMAO !
"Dramatic coding montage"
**Literally types 1 word**
Next video: I wrote a Game Engine in 24 hrs
Dani: is better at unity and releases better content.
Tren black : clout chaser
Coldstrike 34: is a literal nobody
interviewer : "so what are your skills?"
me : "I made Wii Tennis in 24 hours 😎"
I'm pretty sure that can actually get your hired, maYbe not as a Dev, but can help
haha "pulled a devon crawford" "aka newton's 1st law" haha jokes
"That shit pulled a Devon Crawford" Black, Tren - In the Loving Memory of Devon Crawford
3:02 "But that shit pulled a Devon Crawford". You fucking killed me with that one. It cought me offguard xDDDDDDDDD
"the two biggest clout chasers in game dev" -Tren Black 2020
Dude google searched "No experience jobs"
That feeling that you yourself have created a game and achieved something, while you literally saw someone else make the game, is weird!
This is amazing! Looking forward to seeing your channel grow!
I choked at Monk Matt reference xD
when u said that that shit pulled a devon crawford i lost it
@4:32 LMFAO , @Ben awad needs to see this. Tren your content is insane man !
Im 24 years old and starting to learn how to code with python (the very basics) ; mainly strings with values and editing values from a different line of string (And sometimes having an error on line 300 when I only have 20 lines). Anyway, I would love some insight on what programs he used for this, I would really like to start learning deeply about 3D modeling and such while scripting and being able to do this. It is fascinating.
I believe he used C#
Unity 3d
so, how is it going?
Yeah your way beyond the avg CS student level
"ALL I FUCKING SAW WAS BED AWAD" - I FELL OFF MY CHAIR LAUGHING LOOL
The Devon Crawford joke was hilarious 😂😂😂
4:30 All he and every viewer saw was Ben Awad!!! LOL!!
This was a great watch, I love seeing you attempt programming challenges, it personally inspires me to keep challenging myself with ideas when coding! Great video!
Tren... Please keep up the wonderful content and making fun projects like these!
I really like this style of content. I've actually thought about making some simple vr games to get into development. Can't wait for more content bro.
Enjoying the videos mate. Great work !!
your videos are way better than i thought expected lol
This video finally sold me on this shoddily re-creating games idea of yours. It's kind of sympathetic that you don't take yourself too seriously doing this. Maybe this should reflect in the video title, like "I hacked together Wii Sports in 24 Hours" (just for those YT algorithm gainz). Really enjoyed watching after the initial inhibitions! Keep it up
“That shit pulled like Devon Crawford”
“that shit pulled a devon crawford” genius
Fantastic video mate, great work!
That Matt Tran reference tho 😂😂
LMFAOOOO
Mom, can we have Codebullet?
No, we have Codebullet at home.
Codebullet at home:
"that shit pulled a Devon Crawford" lol
Holy shart I LOLED hard when you said "it pulled a Devin Crawford". Hahaha. But seriously, is that dude ok?
Was literally about to comment that
"That shit pulled a deven Crawford" hahahha where is he tho
watching you inspire me to learn programming language more :DD thanks tren!
"that shit pulled a devon crawford" im dead
"that shit pulled a devon crawford"
1:34 That roast lol
Great video and amazing editing skills you'll get far, see you at the top man, keep up the good work
"I'm bengali...we play cricket and badminton"
"that shit pulled a Devon Crawford" LMAO
How did you learn game development?
Very small thing, but at 6:59 you say you have an int-variable that keeps track of who touched the ball last. Wouldn't it make more sense to use a boolean for that? It's basically made for that and while completly unrealistic it can't go out of range like an int
There's a few reasons I went an int instead of a bool. Firstly, it is more readable to assign a number to a player rather than a true or false statement. It would be kinda weird to say "true" is player and "false" is enemy. What if I added 3 players? Then I would need to switch to an int anyway. This also doubled as a index for player in the player array. You can't use a bool as an array index. Secondly, I used an int for the dir being 1 or -1 so that I could multiply it with the direction on my Z axis. This greatly reduced the amount of code I needed to write since I only needed to declare one target position and could just multiply the z force with dir.
@@TrenBlack make some videos :(
You are actually very funny even though you might not really realise it,all you jokes crack me up bro
"We play cricket and badminton." (ME) me too.
everybody sleeping on that rome montage 🔥
"nah that shit pulled a Devon Crawford" I died listening to that 😂😂
You forgot the Ben Awad characters so you made tennis, not Wii tennis
"I can't be fucked..." ahh the life of a game developer
Can you please make a video about how you got started with programming. I love your videos btw!
Where did you learn how to code ?
Just interested
Great content btw love the vids
Next: I made GTA 5 in 3 hours
It took me that long to download it and I deleted it after 3 mins
It's cool ! I wonder how did you use your phone to collect the data and connect with the PC client? Could you please help me :)
How did I know there was going to be a Monk Matt reference as soon as you said F = ma LOL
Closing my eyes and pretending it's Java lmao
Don't you have any project shares that you worked with Unity? And is the score function implemented?
I was planning to recreate Wii Sports and Wii Sports Resorts entirely for the PC with Wiimote controller support.
imagine if I added vr to swordplay
I'd totally recommend getting a Wiimote for unity. A Wiimote can connect directly to unity with a plugin removing the horrendous input lag you'd get from a phone, it also is more documented and has ir pointer functionality you can use like a mouse or as a zapper gun.
"secret to using c# -- close my eyes and pertend it's java"
so true!
"I'm Bengali" subscribed
love it dude, amazing work
3:58 That roast is so bad lol
yeah I know. I get roasted for telling the truth lmao
1:35 I see what u did there LOL
Good content my guy!
Yo how’d you get your phone to control your PC? that seems hella dope
Yes. That was sick.
if you dont want your objects to move in certain directions constrain them
All my unity project nowadays synced to gitlab once I created haha, so it very safe from accidental deleting the project locally
PixelatedCoder Github dont have enough storage for large unity project, unless you paid for extra storage haha, im poor
PixelatedCoder haha alright I didnt get it at first sight
Unity has stability issues, I posted many bugs report to Unity forum and I got almost zero response on Engine functionality stability reports.
So later on this year in June, my final major project before Final exhibition Prototype product to be submitted: I was working for over 2 months. Then when deadline 6 hours before submission deadline, a Fatal Error occured on Unity and I lost the entire project folder.
Was that aka Newton's first law with a monk a reference to...💀😂
Lol, I love the tags.
"Michael Reeves Mark Rober Dani Dani2 William Osman Sam Hogan Simone Giertz electroboom unnecessary inventions Randall Devon Crawford Jonas Tyroller ThinMatrix The Cherno DIY Perks Vlog Creations NDA HACK Eben Kouao Zyger Allen Pan - Sufficiently Advanced Will Kwan mitxela Brackeys Fat Dino Code Bullet devlog python computer science software engineer karlson coding coder making a game how to make games unreal engine unity unity3d game development"
You should definitely teach how to code, I couldn’t even make the bean move in 24 hours (jokes)
Rey Arias thank you for putting (jokes) at the end. I almost thought you were being serious
XFire Heh yeah, I knew some people wouldn’t catch my joke...
Rey Arias makes sense. People on UA-cam are pretty sensitive
That joke about devin Crawford 😳
The tennis game looks sick! Something is still off with the ball but overall a great achievement! :)
Tren Black's Wii Tennis made in 24 hours video made in half a month
Making the game - 24 Hours. Editing the video - 10 fucking days lmao
I felt the pain of losing files. Before using git I used to fuck up so many projects.
LOL, your tags are funny:
Michael Reeves,Mark Rober,Dani,Dani2,William Osman,Sam Hogan,Simone Giertz,electroboom,unnecessary inventions,Randall,Devon Crawford,Jonas Tyroller,ThinMatrix,The Cherno,DIY Perks,Vlog Creations,NDA HACK,Eben Kouao,Zyger,Allen Pan - Sufficiently Advanced,Will Kwan,mitxela,Brackeys,Fat Dino,Code Bullet,devlog,python,computer science,software engineer,karlson,coding,coder,making a game,how to make games,unreal engine,unity,unity3d,game development,
I still love your content tho! It's next level!
Good music taste brudda, after the storm is a great song
Bean tennis🙄 I thought they were peas😂🤔. Hey I think am am??? 🐤
“Pulled a Devon Crawford” 😭😭😭
Oh my god 😂😂 the Devon Crawford joke
I’m honestly just impressed by your dedication. Sub earned
How do u control the players from ur phone can u plz tell what tools u used
hd remakes be like...
Same thing I said. 😂 C# is pretty much Java but Pascal case instead of Camel case.
I just realized : *HOW THE FRICK ARE THEY PLAYING TENNIS ON GRASS*
but that's how most tennis is played???
ever watched wimbledon
@@insomniplier7063 look up "lawn tennis"
dude you serious??? everheard of wimbledon