Тёмный

INDIE GAME DEVLOG - Part 3: Time to Animate! 

OUVIO
Подписаться 4,9 тыс.
Просмотров 11 тыс.
50% 1

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

 

14 окт 2024

Поделиться:

Ссылка:

Скачать:

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

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 75   
@ouvio
@ouvio 2 года назад
Check out the next episode right here: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-VDCUlh6DIPw.html
@chetlucas8568
@chetlucas8568 2 года назад
Came for the content, stayed for the atmosphere. Very interesting!
@ouvio
@ouvio 2 года назад
I really appreciate hearing that. Glad you enjoy it. 😊
@Liquidkapu
@Liquidkapu 2 года назад
You can use an enumeration to help with the boolean problem. IsMoving? IsCrouching? IsRunning? etc. can all combined into a single movement state enumeration. Then just hook it up into a switch/select node. Also, instead of naming the boolean "IsRunning?" you can just call it "Running" or "bRunning". This is the standard for most unreal developers. (including epic)
@ouvio
@ouvio 2 года назад
:D Thank you! That's super helpful. I will start doing that. I also just discovered Paper ZD, so I'm redoing the movement animation within an actual animation graph this time. I can't believe how much faster and easier it is to set up and deal with.
@vincentdcn
@vincentdcn 2 года назад
I'm also developing a game with a dog as the main character. wishing you luck on your journey. subbed
@ouvio
@ouvio 2 года назад
good luck to you as well
@3bomb
@3bomb 2 года назад
Your artwork and animations are looking great.
@ouvio
@ouvio 2 года назад
Thank you!
@dominicisidore
@dominicisidore Год назад
The dog looks SOO awesome! I wish you well on fixing the bugs.😊
@ouvio
@ouvio Год назад
Thank you! :D I'm glad you like the character design
@hermanjarl
@hermanjarl 2 года назад
Very interesting! Definetly following!
@mr_indie_fan
@mr_indie_fan 2 года назад
3 videos in and the game is starting to come together, pretty cool/good for a new developer!
@mr_indie_fan
@mr_indie_fan 2 года назад
I've seen many indie devlogs here on RU-vid, and while there all interesting with great games in the works and all unique, i find a first time game from a new developer the most interesting! The only other one i can think of is punch a bunch honestly, which is shaping up to be the best fighting game ever made!
@mr_indie_fan
@mr_indie_fan 2 года назад
Heres some advice by the way: A big thing as a new developer that you want to avoid is burnout. and also: don't overwork yourself and try to avoid feature creep with your game!
@cemeterygate
@cemeterygate 2 года назад
For me it's the passion that keeps me learning and growing. I think I wouldn't finish the 15 minute game, and so I've not even attempted. Also agree with print string. "Tell me where you are failing!" ^_^
@ouvio
@ouvio 2 года назад
That's a good point. I think it's going to be much longer than 15 minutes haha. Oh man, I know right? I use print string for everything now.
@gregoris2474
@gregoris2474 2 года назад
Good choice with the Bestest Boy as a knight. Maybe this can be a stand up console to be played in the Tavern.
@ouvio
@ouvio 2 года назад
Hahaha that's a really good idea man. Also, I hope you've been well. Gonna try to stream again sometime soon.
@Floky
@Floky 2 года назад
Great stuff, chill and informative little Devlog... Also, + points for using the GLORIOUS Unreal Engine :D
@ouvio
@ouvio 2 года назад
Thanks for the kind words. Haha, there is only one true engine... and it is called Unreal. I felt UE would be much faster for me to get back into, since I used it briefly during a class in college.
@Floky
@Floky 2 года назад
@@ouvio Def a great choice 😉
@smooshed_in
@smooshed_in 2 года назад
Sir Tyrion is adorable but I think he would be cuter if he was younger.
@ouvio
@ouvio 2 года назад
While I understand what you mean, the game's character is my girlfriend's dog and he is quite an old boy.
@mohammedmatar4341
@mohammedmatar4341 2 года назад
what a hearty video for all beginners!
@MakerFaffa
@MakerFaffa 2 года назад
Very Cool, as always!
@ouvio
@ouvio 2 года назад
Thank you! :)
@Floky
@Floky 2 года назад
You truely are everywhere aren't you?
@davedev27
@davedev27 2 года назад
great devlog, interesting looking game. PLEAAAASE FINISH IT :DDD subbed after 1 min lol
@ouvio
@ouvio 2 года назад
Thank you! I really appreciate the support and kind words. I sure as hecc will :)
@GreenBlueWalkthrough
@GreenBlueWalkthrough 2 года назад
For me I have many projects going on at once some big, some small so I can jump between them at any time.
@HadesMrDark
@HadesMrDark 2 года назад
You should learn about states and state machines they will help you immensely in making and triggering certain animations.
@ouvio
@ouvio 2 года назад
Is this different from enumerations and using them to control the state of an animation?
@HadesMrDark
@HadesMrDark 2 года назад
@@ouvio yes they are different, enumeration is still just a value that you check, state machine is a whole system once implemented that would make your code a lot modular and readable and also easier to add different states later in time.
@ouvio
@ouvio 2 года назад
@@HadesMrDark Thanks for the heads up and explanation. I'll for sure have a look at it.
@Bloodlinedev
@Bloodlinedev 2 года назад
bool are a bad no no in my book (always). Use enums to model explicit state machines instead. This is a very common pattern in gamedev.
@ouvio
@ouvio 2 года назад
Alright. I'll give that a shot. Using Paper ZD and an animation graph already cut down the amount of code significantly
@krishanth5750
@krishanth5750 2 года назад
Nice devlog, and which screen capture software do you use?
@ouvio
@ouvio 2 года назад
Thanks! OBS Studio
@linearmango
@linearmango 2 года назад
I don't know the exact use cases but what you probably want is an enum instead of some of those booleans.
@ouvio
@ouvio 2 года назад
Hmm I have to look into that since I only use it for animations right now. I don't exactly know what an enumeration actually is. Gonna read up on that some more
@cafesamkok7973
@cafesamkok7973 2 года назад
You explain it so well , loved tNice tutorials tutorial.
@ouvio
@ouvio 2 года назад
Glad it was helpful!
@kamberhasan4245
@kamberhasan4245 2 года назад
Great job! How your character is casting shadows? Its 2d isn't?
@ouvio
@ouvio 2 года назад
Yes that is true, but there's a neat little checkbox that you can tick that enables cast shadow. Keep in mind that 2D objects in 3D space are similar to a piece of paper in the real world. The paper can still cast shadow and so can the 2D objects
@kamberhasan4245
@kamberhasan4245 2 года назад
@@ouvio Thanks for the answer. It works well when you are using a 2d character in 3d world. Unfortunately it's not working when you have 2d character in 2d world.
@ouvio
@ouvio 2 года назад
@@kamberhasan4245 Well, it wouldn't work in a 2D world, because the shadow isn't being projected onto anything, since everything is made of 2D planes. If you lower the directional light far enough, it should cast a shadow at whatever plane you have layered behind the character, but again, this makes more sense to be used in a 3D environment.
@SuperDutchrutter
@SuperDutchrutter 2 года назад
Are you using visual scripting for your project? I think that’s what you keep showing? Man that looks more complicated than scripting! 😂 Just found your channel looking forward to following along now on.
@ouvio
@ouvio 2 года назад
Outside of Html and CSS, I don't know how to code. So, visual scripting is the only way I can make anything at the moment. What makes you say that it looks more complicated?
@offlinemoe
@offlinemoe 2 года назад
You can also use tags instead of boolean, if the tag is existing it's true if not it not true
@DaveUnreally
@DaveUnreally 2 года назад
Genuinely curious, how do you find the performance dealing with a stylized game in ue5? I know a lot of people are hesitant to move to ue4 due to lumen and not being able to bake lights (yet).
@ouvio
@ouvio 2 года назад
I mean, I don't really have experience in any other engine. This being my first attempt at making something it's working ok overall. It does slow down when I add particle effects and lighting, but I wonder if that's to do with the type I added. Nonetheless, since I'm meaning to mostly utilize 2D animation, things such as torch fire, will probably end up being 2D animation instead of particles. It also seems to slow down somewhat when using a post processing volume
@FortbloxNET
@FortbloxNET 2 года назад
So much nice comments and no one mentioning the video goes black after around 9:40…..
@ouvio
@ouvio 2 года назад
Someone did mention it and I noticed the mistake. Shit happens and you Don't have to watch past 9:40
@Crackasa19
@Crackasa19 2 года назад
How long ago did you start with unreal engine?
@ouvio
@ouvio 2 года назад
Like 2 weeks ago. Very new to everything still.
@slvrcross
@slvrcross 2 года назад
Yo where dat Twitch animation stream at tho
@ouvio
@ouvio 2 года назад
One day haha. I mean I had one recently, making the run animation. I will make more animations in future streams. :)
@souptaels
@souptaels 2 года назад
Really cool devlog till I found out that you have an NFT shop.
@ouvio
@ouvio 2 года назад
To be honest, I am not doing much with it. Yes NFTs are bad for the environment, and I didn't know until recently how big of an issue that is, but aside from it actually not benefitting the creators of original content much. Either it's already very well established creators, celebrities or art thieves that benefit from that market.
@ouvio
@ouvio 2 года назад
@@PoloEstudios Thank you for the support. I appreciate that a lot. I understand people's hesitation with NFT shops, but you are also right that there is no shame in it. Hating or shaming people for doing something that doesn't align with ones personal beliefs or opinions is never going to heal the world nor make people come together. With all that said and just as a side comment, I haven't put much time into the shop and noticed that it seems close to impossible to actually make money off of an NFT, unless you have a well established following. The same is true for merch. Thanks again for the support :)
@JuhoSprite
@JuhoSprite 2 года назад
9:45 what happened here?
@ouvio
@ouvio 2 года назад
I didn't notice that issue when I exported the video, until yesterday. Now it's too late to fix 🤣
@X-ine
@X-ine 2 года назад
I cant even find out how to make mistakes lmao
@rocket007
@rocket007 2 года назад
yooo, why my screen go black for 1 minute
@ouvio
@ouvio 2 года назад
did you check if your monitor is plugged into the power outlet?
@rocket007
@rocket007 2 года назад
@@ouvio bruhh!!, is this playing . 9:44 till the end, check, maybe its just my computer😅
@ouvio
@ouvio 2 года назад
@@rocket007 well ... Turns out I actually exported a file that is longer than the video was supposed to be. So.... I derped out lol 🤣
@redgarlicbred6228
@redgarlicbred6228 2 года назад
"a game dev video that said the first game shouldn't be a passion project, but rather a 15 min game that you can finish within a reasonable time frame" lmao did we watch the same vid?
@ouvio
@ouvio 2 года назад
Most likely xD
@shnitzeedumple
@shnitzeedumple 2 года назад
cewl
@dqrk_0330
@dqrk_0330 2 года назад
Will try to spend £50 on a video editor to slow down the video cos I could hear the words but not understand. It was still informative, SMH
@ouvio
@ouvio 2 года назад
You do know that RU-vid has a feature to slow down videos. Save the £50 and spend them on something more valuable. We are in a recession after all.
@Punisher1992
@Punisher1992 2 года назад
paperzd plugin
Далее
Creating Creature Combat
8:15
Просмотров 365 тыс.
How many can you smash?🍫 IB : Florin
00:19
Просмотров 3,2 млн
The Trick I Used to Make Combat Fun! | Devlog
8:12
Просмотров 1,7 млн
Indie Game Devlog #01 - Creating the Main Character
15:54
The Worst Part of Gamedev
9:32
Просмотров 15 тыс.
INDIE GAME DEVLOG - Episode 8: A Fresh Start
6:46
Просмотров 10 тыс.
$0 vs $5,000 Video Game
32:37
Просмотров 254 тыс.
Adding the Main Character to my Game | Devlog
12:06
Просмотров 43 тыс.
Moebius-style 3D Rendering | Useless Game Dev
8:12
Просмотров 840 тыс.
Giving Personality to Procedural Animations using Math
15:30
The Blighted Village | Devlog
10:54
Просмотров 100 тыс.
I Made My First Game in Godot in 3 Weeks...
26:21
Просмотров 389 тыс.