Тёмный

REGRETS Building My Dream Game: Devlog 

Byte of Michael
Подписаться 34 тыс.
Просмотров 39 тыс.
50% 1

Want to start a career in game dev? Learn more about SNHU's program: snhu.edu/marselluh
Thank you to SNHU for sponsoring this video!
s o c i a l s ☕
----------------------------------------
Discord: / discord
Instagram: / chicken_marsella
Twitch: / marselluh
Twitter: / marselluhbot
business inquiries: michael@rainysun.day
s u p p o r t 👏
----------------------------------------
Patreon: / marselluh
programmer merch: nullref.co/
Join the club: rainysun.day/
my book list (affiliate): www.amazon.com/shop/marselluh...
g e a r (affiliates) 🖥️
----------------------------------------
Keyboard: amzn.to/3PQgQOB
Mouse: amzn.to/3AICXT5
Monitors: amzn.to/3PJZkvI
Chair: amzn.to/3AJ9oAQ
Desk: amzn.to/3pFJ8AX
Mic: amzn.to/3wq8Xc1
Camera: amzn.to/3QNZKT5
gear store: www.amazon.com/shop/marselluh...
d e s c r i p t i o n 🔥
----------------------------------------
Chapters:
00:00 - intro
00:20 - recreating the entire map in my indie game
05:39 - procrastination
07:13 - conclusion
Here are the fantastic pixel artists I get most of my pixel art assets from:
finalbossblues.itch.io/
pimen.itch.io/
Check out my other devlogs:
Devlog 1: Building My Dream Game • Building My DREAM Game...
Devlog 2: Game Development is Hard • Game Development is HA...
Devlog 3: Developing my Indie RPG is Confusing • Developing My Indie RP...
Devlog 4: Gods and Spells in My Indie RPG • Gods and SPELLS in My ...
Devlog 5: Is My Indie Game Fun? • Is my 2D Indie Game FU...
I know it's been awhile since I've uploaded a devlog, but in this devlog I wanted to cover 2 main topics. First, I've essentially had to recreate the entire game world. Second, procrastination.
In game development (especially beginner game dev), it's very common to revisit and iterate on systems, we (as game developers) planned initially. In my very first devlogs, I mentioned that one of the main pillars of my indie game was replayability. And to achieve that goal, I wanted to make my indie game map procedurally generated. As a beginner game dev, it was proving difficult to implement game features on a map that was never set in stone.
So, I decided to redesign the entire game map. Initially, I started building a map that was much larger than the procedurally generated map. Again, as a beginner game dev with limited development time, I realized filling this world with compelling NPCs, quests, enemies, etc. would take an extremely long time. Therefore, I decided to shrink the overall map size to something much more manageable. I've already planned out all of the zones and themes, and I'm excited to start filling it with compelling stories.
Also, recently I've felt that I've been procrastinating on game development more than I usually do. Which is not necessarily a bad thing. In previous devlogs, I mentioned that I will only work on the game when I want to, to avoid burnout. It's not that I haven't wanted to work on the game, but I've just been caught up in other things. But I do want to release a demo for you all to try as soon as I feel confident enough.
Comment down below what you think of the new game map and any suggestions for the game or game development tips!
#devlog
#gamedevelopment
#gamedev
c r e d i t s 🎵
----------------------------------------
Composed by Erik Satie (Gymnopédies), piano cover by Myuu • Gymnopédie No. 1 (Dark...
Kissamilé - Timelapse chll.to/02725e50
Sugi.wa - Blue Moment chll.to/fb5f669c
Middle School - Chit Chat chll.to/acd91cb6
d i s c l a i m e r
----------------------------------------
I do not claim to own any or all of the pictures/footage that may be shown in this video.
All of my opinions are entirely my own and do not represent any company I work for or am affiliated with.
Any financial topics discussed are not financial advice.

Опубликовано:

 

4 июл 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 109   
@ByteOfMichael
@ByteOfMichael 2 года назад
Comment dow below what you thought of the devlog!
@eighteen2015
@eighteen2015 2 года назад
I like how when most youtubers make errors/regrets on the game, they don't tend to make videos on it but I found it really interesting how you expanded on it. Also, I love the procedural generation :p
@gamedevaki
@gamedevaki 2 года назад
This devlog is very insightful. I haven't started working on my own game map, but this definitely sounds like an issue that I will encounter in the future. I especially like the idea of scoping it down into a smaller map. Subscribed for more game devlog!
@ByteOfMichael
@ByteOfMichael 2 года назад
@ChickenWing Thanks!
@ByteOfMichael
@ByteOfMichael 2 года назад
@Gamedev Aki Thanks for the sub and welcome! When learning game dev, its really easy to plan a bunch of features, but actually implementing those features can take ages!
@VEETEEGameStudio
@VEETEEGameStudio 2 года назад
Pretty nice I love your voice
@stealthyshiroean
@stealthyshiroean 2 года назад
Smart move to cut back on things though to get that MVP out into the world. Totally get the procrastination thing, but if it's just something you do for fun when you want then it's like you said, no real skin off your back by not working on it. Glad you're enjoying the process, man. Keep it up! Looking forward to seeing more progress with the game.
@ByteOfMichael
@ByteOfMichael 2 года назад
There's always an ebb and flow! And thanks!
@DB-vt2ue
@DB-vt2ue 2 года назад
For the procedural generation, just add a magic portal that leads to dungeons/instances that are procedurally generated. :)
@ByteOfMichael
@ByteOfMichael 2 года назад
That's actually a really good idea!
@brendancurrey2358
@brendancurrey2358 2 года назад
For dungeons I recommend cellular automata, it makes wonderful caves. Best of luck
@lukek.5773
@lukek.5773 2 года назад
when i was studying procedural generation in uni my mentoring professor helped me make sense out of what i'll call "dynamic segments" if lets say you have a square that can exist in any corner. you have a default "open" version. from there you have a start script for it that gets the corner it's in and builds blocks at the outer walls. and leaves the valid entrances open. so you can have something that looks like an open box : : and close it so it looks like a tunnel [ ], i think with 2d you can do this by hiding layers of your prefab and having a script that manages that prefab. an other thing you can do in the generation is make the over all map far larger, and have a built in buffer zone between your major zones. this can be trees, cliffs, ectra. this way you hide your crimes and blend areas more easily. an other viable generation method could narrow the scope of wilderness areas based on their neighboring zones. if you have a mountain zone you can have it descend into a desert and use the mountains to blend into the other zone. you can use this + the above to have mountains lead to river valleys or deserts, have jungles lead to less dense forests ect. also the map isn't your "bread" persay. a good event manager will let all these things interact regardless of how they spawn in the world. if you don't have one it's vital for preventing spaghetti code in unity, if you do have one you should see if you can work out how to make it more dynamic! i hope this helps you if you decide to move back in that direction!!!
@ByteOfMichael
@ByteOfMichael 2 года назад
Great notes, thanks!
@delqyrus2619
@delqyrus2619 2 года назад
On the subject of procedural generation, I would recommend looking into the wave function collapse algorithm. In this case the world is procedurally generated, but the adjacent elements are determined by restrictions. For example, you can determine that a water field cannot be directly next to a grass field, but that there must be a beach field in between. This way a procedural generated world would get way more organic and you can get as complex or simple as you like.
@ByteOfMichael
@ByteOfMichael 2 года назад
Thanks for the notes!
@Dimon6731
@Dimon6731 2 года назад
I’m actually excited about this game you’re building, it’ll take time but it’s cool that you’re recording this process because I’ve developed a curiosity recently for what game development is like and here you are recording the process lol Sooo I’ll definitely be subscribing
@ByteOfMichael
@ByteOfMichael 2 года назад
Thanks and welcome!
@dibaterman
@dibaterman Год назад
It's been 6 months so this free advice may be a bit late. I'm also a new Game Dev but I'll share this brief with you: 1. Procedural isn't bad but it is overrated in most cases, I try to go hybrid; I make procedural tools and then hand craft my maps. At the start this was hard but it sped up development later. Basically I make a procedural generator, then spawn a map, store the map as a scene and edit it to make it fit the world. Finally save that map as a scene and use async loading. (I work in 3d so for 2d you may not benefit as much from the last part). 2. Singletons are your friends and be DRY. You have multiple systems you want to implement, and you should only need to implement it once. In the case of quests, making them with SO's is the best bet. In my case I make an SO that has a Quest ID, Quest Source, Quest Goal, Quest Name = Source + Goal, Description, Reward... The Goal is an enum which sets off other things, say it is a subjugation then the field for Target NPC Types Count opens. If you select 2 then you can put the Assets of the mob type you want in there and the amount of each that need to be slain. From there I have a system where these quests can either be randomly generated or assigned directly to an npc. The randomly generated part is handled by my Narrative Manager which will grab objects with the component for handling quests and well give them a quest or quests to handle. In my game it does this every in game month. I am certain the same system can be extended to weather, etc.
@ByteOfMichael
@ByteOfMichael Год назад
Thanks for the tips!
@sneakyrandomtech204
@sneakyrandomtech204 Год назад
I came across your video and you inspired me to make my own game. I love the art style of your game it’s awesome. I stayed up all night watching your videos. Keep up the progress man it’s so cool.
@Neptune_369
@Neptune_369 2 года назад
I want to have a little walk around town, so a demo release will be nice. And.. As a fellow British I appreciate the British accent at the end of the video aha.
@ByteOfMichael
@ByteOfMichael 2 года назад
haha cheers man
@Cal97g
@Cal97g 2 года назад
As a fellow British?
@aGoshDarnTravesty
@aGoshDarnTravesty 2 года назад
Rather than procedurally generating entire maps, you may consider setting aside time to create a generator that does all of the tile-placing heavy lifting for you. Manually placing corner tiles and edge tiles takes a lot of time and can really burn you out, but being able to make a simple blocky layout where different colors = specific terrain types and then handing that off to the generator would allow you to quickly prototype several layouts while still hand crafting the base.
@ByteOfMichael
@ByteOfMichael 2 года назад
Thanks for the idea!
@radikalbeats
@radikalbeats 2 года назад
You can define rules in Unity so you just use a tile and Unity automatically knows what corner tiles to use. No need to write anything custom for this.
@lvlGhostlylvl
@lvlGhostlylvl 2 года назад
Great video, if I had one suggestion it would be if you are starting to feel burn out don't stop, just reduce. Try to do 1 thing for your game everyday. If you still want to quit after doing 1 thing then stop, but don't leave your game for multiple days without touching it. The longer you're away from it the easier it is to let go and not finish. It's also hard to remember what you were working on if you don't keep a detailed list around (Which you definitely should)
@ByteOfMichael
@ByteOfMichael 2 года назад
Thanks, good points!
@yoktherig
@yoktherig 2 года назад
Hello :) little advise for procedural stuff (design/project wise). Before getting something "procedural", you should have a layout with what you want it to looks like (fun, navigation...) like if it would have been generated. Then, once you have something solid, you can try to implement the procedural to get levels like the one you did (not excactly but, close to what you're expecting :) ). I know a dev who worked on Dead by daylight, and in this game, the level are procedural / generated but, it doens't look like if it has been generated ^^ (it looks like a hand-made levels but nope) First, they build the levels that they wanted and then they implemented the procedural, which took a lot of time to get the result they were aiming. But! now it doesn't even looks like if it was procedural and, the levels are generally nice ;)
@yoktherig
@yoktherig 2 года назад
Also, one thing that can help you designing or taking decision, ask your self if the feature respect / help one of your pillar. If it doesn't, it might be out of scope ;) (just giving advise, I don't want to tell you DO THIS, there's a learning experience! :D (and your personnal opinion ;) ))
@ByteOfMichael
@ByteOfMichael 2 года назад
Thanks for the great points!
@RahzZalinto
@RahzZalinto 2 года назад
I know you didn't ask but maybe save the procedural generation for caves or dimensions or something you can jump through - to add replayability to areas that don't affect the main world so much. Save things like random events that can take place for the overworld. Just an idea ..that I'm sure I stole from somewhere lol (also I only watched about 3 minutes of the video so maybe you already decided to do that, also I don't know why I'm here, youtube algorithm I guess lol)
@ByteOfMichael
@ByteOfMichael 2 года назад
Great suggestion!
@kirklenentine
@kirklenentine 2 года назад
Why not do a mix of hand-crafted and procedural generated similar to Stardew Valley where the mines are procedural but the rest of the map is static? You could also implement procedural generation of plant life, etc. across the static map like in Stardew.
@ByteOfMichael
@ByteOfMichael 2 года назад
That's a great idea, thanks!
@BC2Monster
@BC2Monster 2 года назад
For your procedual generation of terrain you should use the Wave collapse function
@ByteOfMichael
@ByteOfMichael 2 года назад
Thanks for the suggestion!
@KryyssTV
@KryyssTV 2 года назад
I once heard someone say that the greatest challenge for an author is to create a compelling story set in a single room. Likewise I've heard similar claims by screenplay writers and directors with regards to doing a story in a single building. So if the mark of a good writer or director is based upon creating entertainment within a limited space then there's no reason to say a game with limited space is inferior to a sprawling world. In fact, one of the criticisms of bad open world's is how empty they feel. No Man's Sky was described as being as vast as an ocean but deep as a puddle for example. So for hobbiest, game developers who work alone there's no shame in focussing on small environments which can be finished within a reasonable amount of time but are slowly packed with as many details and gameplay systems as possible.
@ByteOfMichael
@ByteOfMichael 2 года назад
Great points!
@dimon8760
@dimon8760 2 года назад
Thanks! Very helpful.
@ByteOfMichael
@ByteOfMichael 2 года назад
Glad you found it useful!
@durrium
@durrium 2 года назад
Good point with the "allow yourself to procrastinate" :) looks nice btw but how about having the middle city center being smaller? :)
@ByteOfMichael
@ByteOfMichael 2 года назад
Thanks and great suggestion!
@huntiault7660
@huntiault7660 2 года назад
From the clips of you building the world it didn't like you were using master tile rulesets. That might help speed up your world building.
@ByteOfMichael
@ByteOfMichael 2 года назад
Ya I should definitely try to adopt those more!
@makegamerepeat2606
@makegamerepeat2606 2 года назад
Very inspirational, your view on burnout and development speed. I feel like many more people should know that early on :)
@ByteOfMichael
@ByteOfMichael 2 года назад
Thanks so much!
@doctorjcw5857
@doctorjcw5857 2 года назад
Procedurally generated maps is not really all that good, unless the game is survival based. When I play these kinds of games, they don't even have infinite scaling, or long stories. So the rng maps is just kinda annoying to play in. I played path of exile, and a few mobile games with it. At a certain point, it just feels like "damn, if I could do more in this game, these random maps would feel in depth, but instead it just feels like its made to make you be trapped in the game for more time than you need to be."
@ByteOfMichael
@ByteOfMichael 2 года назад
Great notes!
@Tarazed609
@Tarazed609 2 года назад
It's looks nice! Props for having those many game mechanics up and running. To me the coding part always seems like the more daunting! I really like pixel arty styles! I was wondering if you considered adding shadows and light effects? It might make things pop off a little more, make it less flat? Just a personal opinion :)
@ByteOfMichael
@ByteOfMichael 2 года назад
Thanks and good suggestion! The pixel art was primarily from FinalBossBlues (finalbossblues.itch.io/)!
@Syeno
@Syeno 2 года назад
Are you sold on the screen size? I feel like its very zoomed out. Maybe it would feel better to have a more limited camera in order to push exploration. :)
@ByteOfMichael
@ByteOfMichael 2 года назад
I initially zoomed it out from the player because being too close was actually giving me motion sickness :/ But definitely open to changing it
@arranmcpherson2823
@arranmcpherson2823 2 года назад
I'm struggling to get my grid system and sorting layers for a top down game I'm working on, I want the player to be able to walk behind and I front of walls and such. This looks really cool and I was wondering if you had tips or links that I could use for my top down game. Literally any help appreciated. Also loved the video man. Very cool.
@ByteOfMichael
@ByteOfMichael 2 года назад
Make sure the pivot points of your sprites are where they touch the ground, and make sure their sorting is set to pivot. You can also go into the Unity project settings and set the sort dimension to the Y axis, so that sprites higher on the Y axis are in the back (which is what we want for top-down 2D). Thanks and good luck!
@VoiceOfJack
@VoiceOfJack 2 года назад
“This video is about procrastination “ “Also a word from our sponsor, but more on that later” Nice 😎
@ByteOfMichael
@ByteOfMichael 2 года назад
ABP, always be procrastinating
@briancldo
@briancldo 2 года назад
Really excited to play this game one day :)
@ByteOfMichael
@ByteOfMichael 2 года назад
Hopefully a demo is not too far away!
@eboatwright_
@eboatwright_ 2 года назад
Looks great! Always sucks (but sometimes fun) when you have to redo old systems and assets
@ByteOfMichael
@ByteOfMichael 2 года назад
Thanks!
@eboatwright_
@eboatwright_ 2 года назад
@@ByteOfMichael :D
@davedev27
@davedev27 2 года назад
i love the sandwich example xD
@ByteOfMichael
@ByteOfMichael 2 года назад
haha thanks!
@foldupgames
@foldupgames 2 года назад
I think you're right on the money with the self-advice you're giving here. Avoid scope creep. Don't burn out. Manageable game size. Yes! As far as procedural generation, I've messed with that a fair bit and always love the possibilities. BUT it's always the same problem. Things look the same after a while and lack that hand-crafted touch. You seem to have good instincts and I would trust them.
@ByteOfMichael
@ByteOfMichael 2 года назад
Thanks so much!
@dillonk.2700
@dillonk.2700 2 года назад
The sandwich analogy had me laughing I'm going through the same thing rn 😅
@ByteOfMichael
@ByteOfMichael 2 года назад
haha cheers!
@crater4513
@crater4513 2 года назад
Game looks great!
@ByteOfMichael
@ByteOfMichael 2 года назад
Thanks so much!
@TeppuTeppu
@TeppuTeppu 2 года назад
Well, I am also an indie game dev, and I am also building a roguelike game. But I don't have sponsor...
@codinwar2023
@codinwar2023 2 года назад
Thank you for sharing your experience with game development, but I have a question as beginner with game development I have problem to find the right and free game assets for my first 2d rpg game so If you can share with me the solution I will appreciate it. Thank you
@ByteOfMichael
@ByteOfMichael 2 года назад
I would check out itch.io for game assets!
@Tbjbu2
@Tbjbu2 2 года назад
Cool video!
@ByteOfMichael
@ByteOfMichael 2 года назад
Appreciate it!
@pupondrun
@pupondrun 2 года назад
Take a shot everytime they say "beginner game dev" XD
@ByteOfMichael
@ByteOfMichael 2 года назад
hahah oh god
@shroomy__rxcks
@shroomy__rxcks 2 года назад
these tiles look a lot like the time fantasy asset pack for rpg maker-
@ByteOfMichael
@ByteOfMichael 2 года назад
Good eye! These spritesheets are from many of the time fantasy asset packs!
@shroomy__rxcks
@shroomy__rxcks 2 года назад
@@ByteOfMichael oh, um... great.
@misho_dev
@misho_dev 2 года назад
Did you move from game maker to godot/unity midway through development? If so why?
@ByteOfMichael
@ByteOfMichael 2 года назад
Nope, I began with Unity!
@MaximumSpice
@MaximumSpice 2 года назад
Why are you not use Rule Sets for tiles?
@ByteOfMichael
@ByteOfMichael 2 года назад
Ya I need to start using those
@MaximumSpice
@MaximumSpice 2 года назад
@@ByteOfMichael oh I thought there must be a reason LOL bro your going to fall in love with them. Spend the time. They make painting tiles so much faster.
@beinbitte
@beinbitte 2 года назад
please dont make the health bar above the player like a stick make it more like the top left health bar
@ByteOfMichael
@ByteOfMichael 2 года назад
Yep, that was just in some of the first devlogs haha
@Cookie-mj8xh
@Cookie-mj8xh 2 года назад
Love it😍
@ByteOfMichael
@ByteOfMichael 2 года назад
Thanks!
@ByGm3
@ByGm3 2 года назад
I can relate :D
@ByteOfMichael
@ByteOfMichael 2 года назад
haha cheers!
@kathyclemons939
@kathyclemons939 2 года назад
lol I went to SNHU for a semester and my professors were awful
@pedro2205pl
@pedro2205pl 2 года назад
nice vid
@ByteOfMichael
@ByteOfMichael 2 года назад
Appreciate it!
@blackheartgaming6121
@blackheartgaming6121 2 года назад
I've been heavily thinking about joining snhu for game design
@BoredBoy888
@BoredBoy888 Год назад
I have recently started my own journey to my dream RPG game development, until i found your devlogs and realized my idea is not unique and there are like 10 different youtubers working on the very same concept and all my motivation is gone now.
@contextmatters5274
@contextmatters5274 2 года назад
Pineapple
@ByteOfMichael
@ByteOfMichael 2 года назад
Watermelon
@-pluspoison
@-pluspoison 2 года назад
sHuLd hAv usID rPg maKEr
@ByteOfMichael
@ByteOfMichael 2 года назад
lol
@reaporofdragon744
@reaporofdragon744 2 года назад
damm i could retire with 100k here since my entire months salary is like 100$ XD been struggling with game dev for awhile with dementia and everything and I'm almost done with a hack and slash for mobile but I would really like to get into unity's ecs cause I would like to make a open world like Skyrim to see how much I can optimize it XD see if i can get it to work on my Samsung galaxy pocket XD
@ByteOfMichael
@ByteOfMichael 2 года назад
Good luck with the game!
@TommyLikeTom
@TommyLikeTom 2 года назад
Check out my devlog, I solved the map building issue in the first episode
@scorpionstudiosroblox
@scorpionstudiosroblox 2 года назад
Apple
@ByteOfMichael
@ByteOfMichael 2 года назад
Orange
@AaronXCVI
@AaronXCVI 2 года назад
That was an Australian accent, not British. >:( don't push it bruv
@ByteOfMichael
@ByteOfMichael 2 года назад
uh oh
@adventuresingamedevelopmen5708
@adventuresingamedevelopmen5708 2 года назад
Hey marselluh! Would you be interested in joining a discord server for small game devloggers on youtube?
Далее
This feature CHANGED my Dream 2D Game: Devlog
7:11
Просмотров 14 тыс.
This Almost Ruined My Indie Game: Devlog
8:44
Просмотров 31 тыс.
Strongest man in the world !! 😱😱
00:16
Просмотров 3,7 млн
КРУТОЙ ФОКУС С ШАРАМИ
00:35
Просмотров 174 тыс.
The Story of a Failed Game Dev
15:14
Просмотров 94 тыс.
The MILLIONAIRES of Solo Indie Game Development
8:06
This Saved Me Hours of Game Development: Devlog
7:20
The PROBLEM with Cruise Ships
17:15
Просмотров 141 тыс.
The Gamedev Landscape is CHANGING
6:34
Просмотров 21 тыс.
Playing Games in the "Wrong" Way
20:25
Просмотров 1,4 млн
What does a Game Engine actually do?
16:45
Просмотров 142 тыс.
How do non-euclidean games work? | Bitwise
14:19
Просмотров 2,4 млн