Thumbs up for spontaneous Unity tutorials made at 6:30am?? That took me more takes than I care to admit... Also, I realize I didn't really chat about the story for Dauphin in this video - that'll come in devlog #2! Thanks for watching!
@michaelsantamaria83064 жыл бұрын
DevDuck got a question are u a dad? You seem like u would be a cool dad
@PraYogiz4 жыл бұрын
Maybe need godot tutorial 😁
@samhblackmore4 жыл бұрын
It's amazing to see how much you can get done in the mornings! Just curious, what does your commute look like @DevDuck?
@Collidedatoms4 жыл бұрын
Dauphin... like Dauphin County PA?
@mirazzle4 жыл бұрын
Hello, would you please share the "knockback" method? Thanks
@Danidev4 жыл бұрын
Looks great man, you're getting really good at that pixel art!
@owendorsey58664 жыл бұрын
Dani you’re everywhere lol
@deadaccount-t6n4 жыл бұрын
@@Kibinai_ I wanted to write the same thing!
@tamuwu4 жыл бұрын
This pixel art makes me go YES!
@Probigask4 жыл бұрын
Dani Dani Dounddd you agian hehe...
@aech45094 жыл бұрын
DaNi!!!
@riley36754 жыл бұрын
He makes development seem so peaceful.
@-Name-here-4 жыл бұрын
It kinda is lol unless your doing a game jam...
@marshmallow_fellow4 жыл бұрын
What we don't see is him slam his head on the desk when he notices he forgot something when writing the code
@berylliosis52504 жыл бұрын
"You mean C++ passes all variables by value unless you explicitly mark it? ... I'm gonna go rethink my life now."
@forksandpopsticles91834 жыл бұрын
Yeah i feel like he left out 27 hours of angry googling
@Rhodair4 жыл бұрын
Sometimes I get in these peaceful states when I don't have the fog of financial insecurity plaguing the back of my mind
@austinmcconnell4 жыл бұрын
Best of luck! I'll be watching this with great interest. :)
@TailsWarrior384 жыл бұрын
@Terry 20 DAMN IT
@felixc5434 жыл бұрын
Why does the smiley face make this so ominous...
@ElectroGamesYT4 жыл бұрын
Heyy :D
@cadentannery46264 жыл бұрын
Fellow springdieldian
@pancakesxyz4 жыл бұрын
Don't forgot to double check that parachute ma boi!
@kalolord4 жыл бұрын
1:46 I was honestly expecting a Raid:Shadow Legends ad here, my ad skip reflexes kicked in immediately.
@flutterfly4204 жыл бұрын
R A I D S H A D O W L E G E N D S
@nonamea91774 жыл бұрын
lol me too
@ifusubtomepewdiepiewillgiv15694 жыл бұрын
Dániel Kalocsai LOLOLOL
@davidrudpedersen56224 жыл бұрын
hahahaha... true
@_LorenzoCosta_4 жыл бұрын
@@tthung8668 because many, many KZbinrs sponsor raid shadow legends and it became a meme
@idsappples4 жыл бұрын
Pixel art tip: use Pedro medoiras tutorials online, he was the artist behind celeste tower fall and more games, he has extensive tutorials that are incredibly helpful
@ruphuslangkopf71514 жыл бұрын
Thanks
@LazyRare4 жыл бұрын
Ruphus Langkopf youre welcome
@synthia40204 жыл бұрын
Bill vicars? 😂
@xXDragonTribalXx4 жыл бұрын
I mean, those are the best dang gif tutorials I've ever seen and his knowledge really shines through those. Really good to get all those fundamentals but it didn't help me in developing my wanted style at all.
@BigMastah794 жыл бұрын
xXDragonTribalXx I’ve played Towerfall and Celeste, and the Pixel work is incredible. He’s Definetly good 😳
@trymemre24354 жыл бұрын
This is so chill to watch while doing my own stuff
@mokigames18184 жыл бұрын
I'm also plannin to start my first commercial game and post regular dev logs. I also have a full time job so your videos keep me motivated! Thank you!
@meyouweaboo15514 жыл бұрын
Just don't take six years to release a beta of your first update
@CharacterDesignForge4 жыл бұрын
Looking awesome so far! Let me know if you need any help with the character design of the Player Character, NPCs or enemies at all. Looking forward to seeing your progress!
@peppermint13me4 жыл бұрын
DevDuck: "I think I'm gonna be sticking with unity for dauphin" Also DevDuck: Converting 6 Months of Progress from Unity to Godot
@UnofficialTranslator3 жыл бұрын
Exactly what I tought
@epocson4 жыл бұрын
These videos are so dope. I know documenting the process is a whole other level of time and effort, so thank you for doing it to help your audience learn and grow from your experiences.
@composercode4 жыл бұрын
I’m not a developer (I write music for games), but this is so inspiring and well-made it actually makes me want to go build something. So stoked to follow along and see where this project takes you!!
@skyattraction76959 ай бұрын
Me: "I should reduce the amount of youtube videos I watch" Also me: opening 50+ videos long devlog playlist by DevDuck
@nadavkeren39984 жыл бұрын
Your tip at the end of the video is actually VERY important general rule: never put hard-coded values in a code, just get everything into one place. All constants should be written as static readonly variables, and then referenced when needed.
@goest14834 жыл бұрын
YES! And alternatively you can have readonly ints that are hashes of strings. Ex: "public readonly int walk = Animator.StringToHash("Walk");" I've read that comparing ints it a bit faster than comparing strings(but I don't think its by much to gain noticeable performance)
@nadavkeren39984 жыл бұрын
@@goest1483 actually, comparing ints is much faster than comparing strings - when comparing ints you need only 1 operation to compare, but each character in a string needs to be compared, therefore, you need as many operations as the length of the shorter string! The easiest way would be to use an enum for that.
@berylliosis52504 жыл бұрын
In some cases though, static readonlying values can actually cost clarity without bringing flexibility. Something like a value that must be zero for some code to work at all, or a required hardcoded null. The use cases of actual hardcoded contents are fairly clear cut and less common than a beginner programmer would assume, but they're also useful enough that I wouldn't say "never"
@ShinyKelp4 жыл бұрын
@@goest1483 What I do is I simply use constant integers instead of hashes. Say I want to keep track of the player character's state for what actions are possible, what animation to display, etc. I just have an integer variable called "state" in the player class, as well as a constant integer for each possible state. For example: public const int IDLE = 1; public const int WALKING = 2; Whenever I read or modify the state variable, I only reference these constants by name, and never pay attention to their actual values: if(playerInstance.state == Player.WALKING) ... playerInstance.state = Player.IDLE; It's just as clear as comparing strings, but more efficient.
@Kugelschrei4 жыл бұрын
All constants should be constants...
@erzloh4 жыл бұрын
Hey DevDuck, I really like the way you share your work, it really inspires me to work on games too! I'm looking forward to watching your next devlogs, keep up the good work!
@Minto83844 жыл бұрын
I was feeling very anxious late at night and watching this made me really calm
@florianrager96314 жыл бұрын
Instead of using a static class with constants you should make the PlayerAnimations class an enum instead. This way you do not have to repeat yourself and renaming states becomes easier down the line.
@DevDuck4 жыл бұрын
I would've liked to, but does C# support string enums?
@ibra.h4 жыл бұрын
@@DevDuck Enum can have value of any valid numeric type but a string enum isnt supported in C# (well you could use .ToString() on enum values but i do not recommend it.
@florianrager96314 жыл бұрын
Is the variable actually required to be a string? Sorry if the question might be stupid, I'm not that familiar with unity.
@tlocto4 жыл бұрын
@@florianrager9631 Well I mean it's possible to make it other types of data, but at that point it's better to just use the static variables.
@BruceOnder4 жыл бұрын
@@DevDuck doesn't need to be a string. Just pass the name of the value around.
@skywalkern1ro3764 жыл бұрын
Chase your dreams bro,I am glad you are starting to make your dream game that you wanted.Good luck I know you can do it m8! : P
@jasiek5114 жыл бұрын
I've started my Game Dev journey some time ago and this week I reached a mental block and was really unmotivated and this video helped me a lot! I'm looking forward to next dev log videos because I love to learn from others.
@skylarcanode-rhodes97714 жыл бұрын
From developer to developer, good luck on your project! I've just subbed and I'm looking forward to keeping up with this project!
@DanielLochner4 жыл бұрын
I followed you all the way through Blink, and am now excited to do the same and see where you take this much larger project! You’re one of my big inspirations! Keep up the awesome work!!! 😁
@imjody4 жыл бұрын
This is awesome, man. I got SUPER excited when you said you were gunna give this a shot using Godot, because I plan on giving Godot a shot as well.... But then you went Unity. :( lol... Either way, very inspiring.
@gabrielshiu4 жыл бұрын
Same! Godot is so easy to use and it is great for 2D games. Unity is all good though.
@DevDuck4 жыл бұрын
Well I did my best to give it a shot! And I'm certainly not opposed to making games with Godot in the future, I think it's just not the right choice for this particular project. Maybe I should make a video that goes more in-depth with how I created that prototype with Godot.
@imjody4 жыл бұрын
@@DevDuck you do whatever you wish! I love your content, you make it very enjoyable to watch. If you did happen to make a video about Godot moving forward, I'd be super happy about that. I've only ever made a game using 'Game Salad' about 7 years ago, so I have ZERO experience with Godot, Unity or any others. I will be using Godot & Blender because both of them are free. Thanks again; I really appreciate you! 😊
@gabrielshiu4 жыл бұрын
@@DevDuck Totally agree with you man. Keep up the hard work! You got it! You're a big inspiration for me!
@nicent4 жыл бұрын
@@DevDuck make game on unreal engine 4))))hahah))
@audittlivereaction19644 жыл бұрын
i have never made games before but i'm starting soon, i already have a game idea i'll start when I improve over the course of many years, i'd probably say that is my dream game and seeing this video makes me happy. looking forward to seeing this game evolve
@MaoDev4 жыл бұрын
Why start soon when you can start now?
@audittlivereaction19644 жыл бұрын
@@MaoDev my PC can't run unity, I'm waiting for parts to arrive so i can build a better one
@MaoDev4 жыл бұрын
@@audittlivereaction1964 oh, makes sense. Although unity is not the only engine out there, you know? I presonally have a trashy pc too and I can't run Unity, that's why at the moment I'm using Godot (it's a great engine btw). There are people who make games on chromebooks with tools like playcanvas.com/ so really, it's not the pc that's at fault here. You could as well just start now with whatever engine you can and switch to unity when you get a better pc.
@myanrueller914 жыл бұрын
"Start Small". I started Programming with C++, I'm comfortable with Java and C# too. I've been doing algorithm and general design work for 5 years as a hobby and have recently got a couple of job offers in general software. I've picked up Unreal Engine game development as a hobby. And this advice rings true even for people who know Programming well. While the skill sets will be similar from general programming to game design, there is so much that is specific to game design. And like you mention, it's important to get comfortable in an engine. I have done jam projects in Unity, Unreal, Game Maker, Cryengine, and Godot, 2D and 3D where appropriate. Unreal just clicks with me personally. I'm getting comfortable with the Engine before driving into my first big idea project, a working title being "Passengers meets Event Horizon".
@dpage4464 жыл бұрын
So this just popped up in my recommendations and I'm very intrigued!I'll definitely be following Dauphin to see where it goes in the future.
@NathanCorleone4 жыл бұрын
Good luck man!
@brostrod4 жыл бұрын
This kinda helps me understand coding and how games are coded
@DrakesdenChannel4 жыл бұрын
I'm working on my own project and this video inspired me to work on it more. I just implemented a weapon-on-back system in some half and hour. Thanks, man!
@santazombieslayer21664 жыл бұрын
This game is gonna finish before Yandere simulator gets released LOLLLLLLLLL
@ianoliver124 жыл бұрын
the second big bang is gonna happen before yandere sim gets released
@mightypurplelicious16254 жыл бұрын
In the years 2098 yandere dev has officially passed away.. yet he hasn’t finished the demo yet...
@xXDragonTribalXx4 жыл бұрын
@@mightypurplelicious1625 I think the guy turned into a bit of a cocky snob anyways.
@c0smo7094 жыл бұрын
* laughs in 20k lines of code per entity and 30 else ifs for weapon system, everything 60 times/ second *
@Nachachus4 жыл бұрын
@@xXDragonTribalXx Turned into? Bruh he always was one
@shadysheep77384 жыл бұрын
I had a huge game idea and I have a friend who knows a little programming. This video inspired me to keep trying to make my game a reality. Thanks!
@k27ism4 жыл бұрын
Im not a programmer or anything. I study law. But i want to tell you in case no one reminded you, to keep at it bro. Slowly but surely.
@ashs88324 жыл бұрын
The separate class for animation variable is a good idea. At my old job, I developed a tool for the animation team which would go through all the states and generate a static Class with read only variables for each. It made life so much easier, and a menuitem and an editor window made it accessible
@CodemasterJamal4 жыл бұрын
I like all the Eco-friendly games.
@kittycatopal4 жыл бұрын
Yeah, somethings so nice about all of them.
@nymtvn94384 жыл бұрын
I'm happy that this video got recommended to me
@foofoohead54 жыл бұрын
You're vids inspire me. Thank you😁
@pigdev4 жыл бұрын
I've been following you since Blink devlog #1, love the atmosphere of your videos. Keep up the good work, I know how scary and heavy on the shoulders it can be to start our dream games, but just go for it eventually you will have it done!
@enejongames18004 жыл бұрын
Looks great. Really happy seeing you go for more ambitious projects! Stay positive and motivated
@xpfe5zrm4 жыл бұрын
I know you were talking a lot about Godot Vs. Unity, and you wanted to move along with development (you mentioned that this video was already 5 minutes long), but I like it when you discuss those things. I find it useful that you discuss all your options, the tradeoffs for each option, and how you justified an option on your list. Thank you for the informative videos, and I hope Dauphin goes well for you!
@MomirsLabTech4 жыл бұрын
Man your channel is blowing up! 40k to 53k in like a week?? I'm excited to follow this journey 😄
@sceptavius264 жыл бұрын
You have inspired me to really get into game programming! I’m thinking of ideas for games but it looks like a lot of fun
@sirjerkey93474 жыл бұрын
This is what inspires me to make games. There have been so many occasions where I'm looking for a certain type of game but can't find it, or I just have an idea for a game and think it would be really fun for me, so I can just make the game.
@linclogames4 жыл бұрын
Scope is so important. Need to keep it tight, manageable.
@snibbubzik35664 жыл бұрын
Love the impromptu tutorials. They point out things I might not think to look up or wouldn't know where to search for. Look forward to seeing the journey!
@GameDevVision4 жыл бұрын
Hey DevDuck, congratz on 40k! Just wanted to give u some tips about your new projects from my experience : 1) Use the A* search algorithm for the enemies, I found this method to work extremely well on Unity top-down games. 2) You easily order the layers (so the player won't go over the trees) when you go to edit - > project settings -> graphics, set transparency sort mode to "custom axis", and change the parameters below to 0,1,0 3) You can use colliders / shaders to change the opacity of the trees (so the player is visible behind the trees) 4) UI can be really silly for different screen resolution, use a pixel-perfect camera and make sure the UI works on different resolutions. Good luck! :)
@bigfin202 ай бұрын
"if I do end up finishing it it's probably going to take me years" well, he was right about that part
@kingzeeb3194 жыл бұрын
You have to accept that you're never ready. Just gotta try and see how it goes.
@dallincandland4 жыл бұрын
I'm not into game dev myself really but my brother really wants to. We both enjoy watching your videos. You definitely deserve the support you're getting. Thanks for sharing your life with us. :)
@marl3x4 жыл бұрын
Love the code, looks a lot cleaner that most I see on devlogs.
@kevinanderson63674 жыл бұрын
I totally agree with starting small. That goes for anything. It's the small things that improve our skills, not the "big" overwhelming things that we never do.
@jonakoli43394 жыл бұрын
I’m rly happy this video showed up in my recommended! I’ll definitely follow u, great video! ;)
@leumasme4 жыл бұрын
Very nice! Your fast growth is very deserved.
@MythicLegionDev4 жыл бұрын
Great video! I think everyone starts game dev with a dream project that is just too big for them to tackle as a beginner. That's certainly my case! I'm excited to see your next step in making Dauphin. Best of luck!
@His-Games4 жыл бұрын
somehow he has a way of making explaining stuff I already know make me feel smart instead of annoyed that i'm being talked to about stuff I already know
@asherniles17074 жыл бұрын
This game is gonna be great, don't give up. I was gonna edit to say thanks for the likes, but then i thought nah!
@krimson83174 жыл бұрын
I've recently been working with Unity and it's things like this that continues to inspire me
@malanao4 жыл бұрын
something is telling me that I’m going to be a veteran for this series
@yesitsyas47134 жыл бұрын
I always watch this vlog whenever i feel frustrated with my projects. its just so peaceful.
@ZediahChannel4 жыл бұрын
Hello great Video! and good luck in your project! P.D: Instead of using a static class for PlayerAnimations c# has ENUMS , I think enums will fit better to your code. :) !
@proxy10354 жыл бұрын
random tip i have to mention after seeing 6:01 you can disable the ugly win10 searchbar! rightclick taskbar -> cortana -> first otion that completely gets rid of it, which also makes a bit of space and moves icons closer to the start icon. you can still search like normal by just opening the start menu and typing directly into that, same exact functionality but without the ugly bar.
@ItzDvl4 жыл бұрын
Had no idea there was a revamped Input system available in 2019.3, definitely going to check it out.
@carterearles95283 жыл бұрын
YES! THANK YOU! I’ve been searching all over everything to find how to use the new input system. This was actually helpful and it wasn’t even a tutorial! Thanks you!
@gormauslander4 жыл бұрын
1:30 Yo where did you get that desktop background? I saw something almost exactly like that in a dream years ago
@chewy31414 жыл бұрын
Hmm I wasn't able to get it exactly, but from what I can tell this is the Kame house from DBZ. Heres a link to the closest one I could find: polycount.com/discussion/215435/kame-house
@cccrit4 жыл бұрын
It’s from spirited away
@gormauslander4 жыл бұрын
@@cccrit you're right, I went back to watch it after reading your comment and found the spot, thanks!
@chewy31414 жыл бұрын
@Talon Playz I think it's an art recreation and not from the movie itself mayb
@cccrit4 жыл бұрын
Talon Playz it’s a quick background during the train scene
@marshmallow_fellow4 жыл бұрын
Looking forward to watching this progress! Just remember to get out of the house or just call someone to talk to while you work when you start feeling burnt out. Also don't forget that you can hire people to make an individual asset if need be for fairly cheap, even concept art if you're stuck on how something should look.
@sup75304 жыл бұрын
Hey, thanks for the help. I am 13 and is trying to work on a game when I'm older. It is also my dream game, and you really inspired me to put hard work on it when I'm ready. I don't really know what to say now, goodbye! 👊👊🏻👊🏼👊🏽👊🏾👊🏿
@hugotodd39922 жыл бұрын
Making games yet?
@sup75302 жыл бұрын
@@hugotodd3992 I've chosen to learn it when I'm older because right now I'm really busy
@hugotodd39922 жыл бұрын
@@sup7530 Good choice!
@aakashbalaji83204 жыл бұрын
Props to you for starting this! My friend and I recently tried to develop a game, but didn't get farther than the ideation phase because we were trying to think about too much. The best thing you can do is start and keep it small!
@manavlalwani77934 жыл бұрын
I love how dani's comment got more likes and replies than devduck himself
@Siptom3694 жыл бұрын
This was really cool, watching you actually make the game basically from scratch. Hope you succeed in making this a full fledged game soon so I can start playing this
@awandergamedeveloper76834 жыл бұрын
Exciting video! I'm also starting on a new game ^^
@LOgANMaN17174 жыл бұрын
This looks very nice! Makes me nostalgic for the days when I made games with just an idea in my head and a desire to create something I was proud of. I had no idea how ambitious I was being with one of my first big projects, but after about 2.5 years - way longer than I had ever planned. I finally released it. It wasn't perfect but it was a joy to make. Good luck with your project man. I look forward to seeing it when its finished!
@zahhym4 жыл бұрын
What is it called? I just wanna know
@PROJECTJoza1004 жыл бұрын
I dont know why i got recommended this, but i am subscribing and will follow.
@wonderpouchstudios4 жыл бұрын
Game looks dope dude! its been fun to watch you progress in your game dev career! good luck moving forward with Dauphin!
@zackydev4 жыл бұрын
I think I should also be less lazy and work like you.
@steventeglman4 жыл бұрын
Right? I can't imagine just saying to myself "Oh yeah, 5:45AM? Plenty of time to start on working on my dream game BEFORE I go to work at my actual job"
@doriantermini4 жыл бұрын
This inspires me to get back to work on my survival game that I'm making. Thanks man!
@phantomspecter62234 жыл бұрын
This is still going to get finished faster even with the added difficulty of making edited vlogs, than another very popular game development that will not be named.
@seth_probably4 жыл бұрын
Yeah a very specific simulator
@Minitomate4 жыл бұрын
Man you are doing an awesome job, more detailed tutorials like these will be awesome. Keep up hard with your work!
@Filmblanc4 жыл бұрын
I was really hoping you'd put your main character on a different layer so he would be behind all the trees and bushes but I'm sure you'll get to that next time
@volstn1volstn1304 жыл бұрын
Your videos are insanely motivating and calming at the same time!
@fumokaze4 жыл бұрын
just gonna drop this comment here so when his game gets famous years later I can prove I'm not swimming on the mainstream wave
@shane92454 жыл бұрын
Bakusan gonna drop this reply to show the same
@TheFriendless14 жыл бұрын
@@mrgameface1912 3rds
@eelootisntavailable4 жыл бұрын
Same
@rafaelgpontes4 жыл бұрын
I've been studying Godot for sometime now and I love it. I'd think twice before switching to another engine now too. You should stick to the tool you're most comfortable and productive. Having fun is what matters most!
@andrewwoan4 жыл бұрын
DON'T FORGET ME WHEN YOU'RE FAMOUS!
@leonlj9954 жыл бұрын
He doesn't even know you to forget you
@eyeman01544 жыл бұрын
He does
@genericturtle92024 жыл бұрын
Storkoid who is he?
@eyeman01544 жыл бұрын
@@genericturtle9202 The ancient one
@eyeman01544 жыл бұрын
@@genericturtle9202 Whomst we are devoted to as he rouse from his 1000year slumber
@Mestrix4 жыл бұрын
Really excited for this series!
@Farreach4 жыл бұрын
in my A.I class we have a assignment where we need to use breath depth search and A* to solve NPuzzle ..what path finding algorithm do you use for your npc's
@frosts1lent194 жыл бұрын
Hope your new game becomes successful! Best of luck
@universalsuromegloultra20724 жыл бұрын
Me:putting together a group to make a game This video: start small Me:I am starting with the sprites and I don't have tile sprites yet but I'm getting there
@woochtheorangecat54974 жыл бұрын
I want to be a game dev so badly. And watching you just adds fuel to that fire of passion.
@ebenezer90724 жыл бұрын
Hello there! Great job, keep going and don't stop its great And don't worry about Likes and subscribers Or even comment that will get you down it is Part of the journey, just climb the mountain after the game comes On STEAM you will know how High you have moved, and never give up, it's your Dream not anyone else so do not let anyone tell Y O U But don't forget to take suggestions tho cause They are the once who will be playing it right? Alright then take care and see ya around the net.
@ACatWithACrown4 жыл бұрын
Hey man, what an exciting journey that is about to unfold! Your tutorial on the new input system was SO straight forward, Brackey's tut on it was like...bleh....so thanks for that! I've been meaning to check it out!
@Addercus4 жыл бұрын
It looks like there is collisions on the trees and the bushes; it makes sense on the trees but the bushes you should be able to pass through easily. Maybe even have a little bush animation when the player walks through it. But hey I might just be biased and nitpicking.
@LVL58Designs4 жыл бұрын
It's great to see another up and coming dev posting their work. I haven't gotten to the point where I can post my work, nor do I have much experience editing videos. So I may just ask someone to review it as I build it haha.
@teukka6234 жыл бұрын
This is my dream job at the moment. I am 17 years old and i have no idea what i am gonna do after i graduate i would like to go to some kind of video game producing school but i am scared cause i got no experience in making games
@yamato.takeru.no.mikoto4 жыл бұрын
I'm also 17 and in pretty much the same situation. but I'll probably go study music theory at university after all, since I've got more experience in that field. but I'm gonna learn how to program on the side so I can make games at some
@connorcmusician4 жыл бұрын
Dude this looks so cool. I've always wanted to compose a score for a video game, I wonder if there's any possibility of that... :0
@Haleshot4 жыл бұрын
Wow your vids are Great! i just developed a game kinda like Flappy Bird for my project(I am a student) in python. I also linked it with a restaurant billing system. What advice would you give for a person who aspires to become a mobile or game DEV? Keep up the great Work!
@DevDuck4 жыл бұрын
Start small, seek feedback, and try to finish projects. Congrats on your game!
@Haleshot4 жыл бұрын
@DevDuck Thank you so much for replying!
@chip25084 жыл бұрын
Also, don't let criticism demotivate you. Instead, use it as a guideline on how to improve.
@Douglas12ds544 жыл бұрын
Why would you link a flappy bird game with a restaurant billing system? It's like "get 3% off for each 10 points you score?". Not trying to criticize, I'm just curious
@Haleshot4 жыл бұрын
@@chip2508 thanks! Definitely will keep that in mind!
@HermanRas4 жыл бұрын
My very first Vid I watched on you channel ,I have been googling the "how to code a game" myself ... absolutely LOVE the tips and tricks during the Vid ! cant wait for the followup !
@chrisellis11634 жыл бұрын
What do you use for your rgb back light controller? Looks like it’s pulling data from the output
@therealthe72144 жыл бұрын
I feel so motivated and happy. Thx for starting a new game.
@olotolow4 жыл бұрын
I just started to make a game but i sticked with unity because godot doesnt rly support multiplayer features.
@benedev94734 жыл бұрын
Cool video! Sounds like an exciting journey you have ahead of yourself. I don't know how seasoned you are in game programming, but in any case I suggest having a look into software engineering for this project. Since it is quite ambitious, you will have to live with your code and its architecture for a long time. So even though you can refactor it, it is good to start off as clean as you can. So you might want to move logic from your quickly growing PlayerController into components. This allows you to reuse the code far more easily and follows the clean code principle of modular code, which has plenty more benefits. Just thought I'd promote this topic here, cheers.
@fine44414 жыл бұрын
what is the pixel editor that he's using at 4:20
@carlosdalomba84554 жыл бұрын
It's called Aseprite -- I started using it in the past month and really like it so far too! :) I bought it for $15.
@8-bitgamezgaming4744 жыл бұрын
What’s with the time stamp
@k27ism4 жыл бұрын
@@8-bitgamezgaming474 sm9ke w33d bro
@8-bitgamezgaming4744 жыл бұрын
Dwayne k27ism oh ok
@SuinegNet4 жыл бұрын
Hey, excellent video! Really digging your desk setup too. Will be watching more of these, thanks and keep up the good work!
@nerdmassa90864 жыл бұрын
The very fact you know it's gonna take years is a huge green flag, you're probably ready to undertake the task.
@zukertsgaming80914 жыл бұрын
My dream game is of a Tower defence where you can customize everything like if you wanted to make a new tower it would cost more coins in the game to use sliders that would increase attack speed, range, damage, etc. But you can only have 8 different towers in the level. I wish I had the ability to make this because it sounds like a lot of fun to play
@-awezomexd-4 жыл бұрын
Zukerts Gaming I’ve had an idea like that too :o I wanna see that now