Тёмный

INDIE GAME DEVLOG - Part 4: Things are FINALLY taking shape! 

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

Игры

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

 

5 сен 2024

Поделиться:

Ссылка:

Скачать:

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

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 85   
@DIM00252
@DIM00252 Год назад
this character is so freaking beautiful, I love the way he looks down on where he's landing when he's jumping
@ouvio
@ouvio Год назад
Thank you! I'm glad you like it :)
@aqrion9969
@aqrion9969 Год назад
The character looks so pretty. The blending of 2d and 3d also looks really good.
@ouvio
@ouvio Год назад
Thank you!
@magnochuntey
@magnochuntey Год назад
your animations are gorgeous, great work
@ouvio
@ouvio Год назад
Thank you! I appreciate the kind words :)
@realdevfrog
@realdevfrog Год назад
The player animations look AWESOME, so crisp and clean!
@ouvio
@ouvio Год назад
Thank you! 😊
@ijerofei
@ijerofei 12 дней назад
I can suggest new State Tree system. More handy, modular and scalable. Take a look!
@KarnationKarnage
@KarnationKarnage Год назад
Being a month into my own game development journey, it's so neat seeing what else people can make when they try. We never know what we can create if we don't try it.
@ouvio
@ouvio Год назад
Absolutely agree with this. I have been binging devlogs from other creators ever since I started my journey, and it is so inspiring to see what people are making.
@hydrant3636
@hydrant3636 Год назад
Really looks awesome super high quality!
@ouvio
@ouvio Год назад
Thank you. Still early days, but I want make it look as polished as I can
@hydrant3636
@hydrant3636 Год назад
@@ouvio it already looks like a game with a big budget and it might be early in development but it is carried by you're awesome animation skill
@chetlucas8568
@chetlucas8568 Год назад
Yes, this is what I've been waiting for. It's enjoyable to watch the vacant plane become something, then more, then a game. Cool process to watch
@ouvio
@ouvio Год назад
Thank you brother! Appreciate your support so damn much
@Liquidkapu
@Liquidkapu Год назад
06:38 You should cast to the player character once in beginplay and save it as a reference. Then when overlapping with an actor you should check if the overlapped actor is the same as your saved player reference. Your current method attempts to cast to the player any time the actor overlaps with any other actor, and will lead to unnecessarily heavy performance costs when in close proximity with a lot of other actors.
@Liquidkapu
@Liquidkapu Год назад
And if you at some point need to optimize overlaps even further, you could take advantage of collision profiles. For example a projectile would ignore every collision channel other than "Pawn" so it wouldnt cause overlaps with the environment and especially other projectiles. Though I definetly recommend doing that only if you notice performance hits in some specific area or with some mechanic. Its not worth doing everywhere as its something that will cause issues if you dont keep it in the back of your mind or if you missclick something.
@Liquidkapu
@Liquidkapu Год назад
Oh, and good job on the game! Awesome progress.
@ouvio
@ouvio Год назад
Thank you for the awesome feedback and ideas. When you talk about the "begin play" part, you meam casting to the player from the event graph of the object and then turning that into a variable that I can use elsewhere inside the actor, correct? I've started doing that a lot more, especially with setting up a "dog treat" counter, lives and an HP bar. As for the collision profile, I had made one recently and am using it for my door boxes, definitely easy to forget about them, but I might utilize it more in the future as well.
@Liquidkapu
@Liquidkapu Год назад
@@ouvio Yeah, when the object is created, should cast to the player and save it as a reference. (You can use the "Get player pawn" node as the wildcard for the cast.) Then you can use the reference elsewhere in the actor and you dont have to cast to the player during gameplay. This reduces the overall amount of work the CPU has to do, but most importantly moves much of that work to the loading screen and away from gameplay moments; keeping the FPS high and smooth.
@MrPsycotik2002
@MrPsycotik2002 Год назад
Waw I really liked the video. I also started my indie game and it is also a sidescroller, but in 3D since I have a background in 3D modeling. Looking forward to see more of your videos! It motivates me a lot. Thx
@ouvio
@ouvio Год назад
That's awesome to hear. I'll have to check it out. It really is something that motivates me as well, seeing other's indie devlogs and starting their journey, makes it super motivating to keep going :)
@BitBeginnings
@BitBeginnings Год назад
Love the animations! Hopefully I can get there some day
@ouvio
@ouvio Год назад
I am sure trying. Been focusing completely on player controls now.
@lopeztanaka
@lopeztanaka Год назад
Incredible work!!!!!🔥🔥🔥
@ouvio
@ouvio Год назад
Thank you!
@BugsAreFeatures
@BugsAreFeatures Год назад
Hey there, not sure if anyone else has already asked but I was wondering why you don't use a fall duration or tie use y velocity for your fall animation With the method you're using now would it not slow your fall animation as you got close to the ground? You could instead use a fall duration float or your vertical velocity, and then set your fall animation speed to this number, that way the speed will increase as you fall faster or for longer, you can even clamp the number between 0 and 2 (I think you used 2 as your fast speed) so that you can't just fall for 100 seconds and get a crazy fall animation.. Please let me know if I'm being dumb lol, love your videos hope you keep it up! the main benifit of using some sort of incrementing number is that it will start low, and then increase over time, this makes sense since the longer you fall the faster your fall, the numbers go up as you go down ;) so it makes more sense to use a timer of some sort, as it looks right not if you jump from platform to platform, you instantly enter double speed falling, because of the gap between the platforms so thats one of the main reasons I would switch away from the raycast method..
@ouvio
@ouvio Год назад
To be honest, I hadn't even thought about this. Thank you so much for the suggestion. I'll definitely look into doing this over the line trace. I did the line trace partially because I've never done one before and wanted to know how it works, but now that I know, it makes a lot more sense to go with your suggestion. The gap inbetween platforms is definitely a big factor on why I don't like the way it currently works. Plus, from what I've heard line traces are adding a lot of to the computing time, making the game less performance friendly.
@roninguts0
@roninguts0 Год назад
Those animations are so juicy, just wow dude. The mechanic where you can go perpendicular to mostly flat map reminds me one of my favourite childhood games: Tomba 2, very fun game!
@ouvio
@ouvio Год назад
Thank you for the kind words. I'm excited to expand on the set of cleaned up animations I have so far. Never heard of that game. I'll have to check it out.
@CaptainPoopyBum
@CaptainPoopyBum Год назад
Super cool seeing your progress, and I even notice your videos becoming more and more polished. Keep it up!
@ouvio
@ouvio Год назад
Thank you dude! It's becoming easier to make them, the more i make.
@kantallive
@kantallive Год назад
Great character and his animations.
@ouvio
@ouvio Год назад
Thank you! I appreciate the kind words.
@MitchMaki
@MitchMaki 7 месяцев назад
Damn for a first game this is looking insane! The animation and art looks awesome too.
@ouvio
@ouvio 7 месяцев назад
Thank you!
@ArtistGamedev
@ArtistGamedev Год назад
I’m loving how the player art interacts with the cast shadows. I’m working on a 2.5D game too but using Spine with PaperZD. Might look into updating my materials to get that effect. Looking forward to future videos.
@ouvio
@ouvio Год назад
Thank you! Yeah, the cast shadows add so much. I also love how your character's material can be affected by the colour of the light.
@ZygerGFX
@ZygerGFX Год назад
This game looks so awesome. This is the first time I've seen any of your videos and I love it !
@ouvio
@ouvio Год назад
Thank you. I'm glad to hear that
@letenebrae3164
@letenebrae3164 Год назад
Your character looks awesome. Can you tell what kind of art style you approached for him?
@ouvio
@ouvio Год назад
I honestly don't know if this is an art style that exists somewhere. If you're wondering if I looked up some references to try and design him in a specific direction, I didn't. What I did do though was to design the character with animation in mind. That meant, simpler shapes. The limbs for example are just sausage / tube shapes that are easily redrawn in whatever position needed. Come to think of it, while visually the character might not look like any specific show style, the thought process behind the design itself is definitely very common for 2D TV Animation
@geekpotion
@geekpotion Год назад
Love this, amazing to see 2d and 3d work together and the work with toonboom and unreal, its stuff I wanna learn myself , and its wonderful to get inspiration like this
@wicgamesdev
@wicgamesdev Год назад
Good work, you just got +1 subscriber!
@ouvio
@ouvio Год назад
Thank you! :)
@blkb33
@blkb33 Год назад
super cool mate, just started following you. i like this style you have chosen! I've just started game dev, I'm learning the engines and programming too. look forward to seeing how you progress
@smooshed_in
@smooshed_in Год назад
You know he’s a good RU-vidr when he manually responds to every comment
@ouvio
@ouvio Год назад
I try my best 😉
@andrechris-sargent9921
@andrechris-sargent9921 Год назад
This looks so good, dude. I'm gonna try to share this around to get you some more eyes!
@ouvio
@ouvio Год назад
Thanks! That means a lot :)
@DouglasAvilaArt
@DouglasAvilaArt 11 месяцев назад
Wow nice animations, really smooth and beautiful! I was wondering, how are you exporting from Toon Boom Harmony to Unreal?
@ouvio
@ouvio 10 месяцев назад
All you need is PNG images. Harmony easily exports PNG sequences. Just drag and drop them into the content folder and you're good :)
@pup4301
@pup4301 Год назад
You should use blender for blocking out the level because you will then have the suite free edit the 3d models. Set up unreal engine to auto import gl files.
@ouvio
@ouvio Год назад
I do plan on using blender eventually, but I am also not the most familiar with it yet. Thanks for the suggestions though :)
@summeratgrans
@summeratgrans Год назад
This is amazing, the animations are stunning and the character design is delightful! Can I ask what size dimensions you created the character in, and if you adjusted any of the paper sprite/flipbook settings for your character once in unreal? I'm having an issue where my 2d character looks blurry, and I would love to know how you've been able to keep yours looking so crisp!
@ouvio
@ouvio Год назад
Hmmm blurry... does this happen when the character moves? That might be related to your project settings for anti aliasing. Fxaa is the one you want to go with, I believe. That said, I animated the character at 1920x1080, I think... or it might be 2560x1440. I'd have to check. The reasoning was that it is always better to scale down an image (a crisp image will only get crisper), instead of scaling up an image ( you can't automatically add more crispness, because even if you scale up the dpi in photoshop, the drawing ends up blurry )
@summeratgrans
@summeratgrans Год назад
@@ouvio I didn't have it set to FXAA, and that seems to help! Thank you so much. :D
@blackmonolith1832
@blackmonolith1832 Год назад
Amazing character and animations man loved it!
@ouvio
@ouvio Год назад
Thank you dude! Much appreciated.
@DaveUnreally
@DaveUnreally Год назад
Looking great! Awesome character work!
@ouvio
@ouvio Год назад
Thank you!
@MarkoPiroski
@MarkoPiroski Год назад
I just stumbled across your previous devlog couple of hours ago and then you uploaded another one! Lucky me! If you think that rotating character and camera at 90 degrees is just to snappy and jaring, try creating level layout for 45 degree rotation, maybe that will suit the game better. Overall, this game looks really promising, I'm looking forward to see more!
@ouvio
@ouvio Год назад
I'm glad you found my small devlog and got a second episode to watch right away haha. The 45 degree suggestion is a good idea, I'll have to give that one a shot. The main issue with this system, at least the way I set it up right now, is that when the character exits the volume, he can't get back in, due to the volume ending at a certain distance to allow you to get out. I got some ideas though as to how to fix that.
@CreativelyBad
@CreativelyBad Год назад
This looks like it’s gonna be an awesome game!
@ouvio
@ouvio Год назад
Thank you for the vote of confidence :)
@robob5544
@robob5544 Год назад
When I look at your game it looks really good and it gives me an idea perhaps u can turn it into one of the early Assassin's Creed games but in 2D and u can include and platforming/parkour and fighting mechanics and that dog character could be a warrior with a hoodie and have cool weapons and stuff
@ouvio
@ouvio Год назад
Thank you for your suggestion. Assassins Creed is a property owned by Ubisoft, so I would be infringing on copyrights. Aside from that fact, my game and AC are two completely different types of games, set in different worlds that do not match. My game's world and story is my own and what you are suggesting is for me to throw out everything I intend to do, in order to make a fanfic AC game. While I appreciate your suggestions, this is most definitely not going to happen, and if you are looking for an Assasins Creed game, I suggest you keep searching.
@CraZyAlex22
@CraZyAlex22 Год назад
Sometimes youtube throws you random videos. This happened to be something that I'm currently interested in. I am so glad RU-vid sent me this video! You have something great here! Can't wait to see where this goes. Love your art! Got yourself a sub, brotha! Also, what did you use to create and animate your character?
@ouvio
@ouvio Год назад
Well, I appreciate you sharing that. It's nice to know RU-vid is actually recommending my videos. Thank you for the kind words, I appreciate that and am glad that you like what I am making. Thank you for the sub :) The initial character design doodle was in Procreate on iPad. At first, I tried to animate the character in Adobe Animate, but that software is so badly optimized that I switched to Toon Boom Harmony, which let's me use textured lines without a hit to software performance.
@jcirni
@jcirni Год назад
More!
@ouvio
@ouvio Год назад
There will be :)
@LokeyYoutube
@LokeyYoutube Год назад
i love dogs :)
@chizyapochiponda1602
@chizyapochiponda1602 Год назад
I've been wondering, is it better to use Trello or Milanote for making boards? Both are really good, I've used both. But Trello is more text heavy than Milanote but has less limits too. Have you tried Milanote? I recently decided to use it for my animations. Haven't gotten a chance to really dive deep into it but I wanted to ask your opinion on it
@ouvio
@ouvio Год назад
I actually switched to Milanote as well. Dedicated a chunk of the upcoming episode to talking about it. I find Milanote works better for how I like to organize myself. Both are good tools, though. What do mean with Trello having less limits?
@chizyapochiponda1602
@chizyapochiponda1602 Год назад
@@ouvio that's awesome. I guess Milanote is just more creative friendly. Looking forward to the video
@Zac_Hamari
@Zac_Hamari Год назад
May I ask is their gonna be a fighting or battle mechanics?
@ouvio
@ouvio Год назад
To an extend. As you might notice, he has a sword and shield. I do plan on making use of them
@StaredownGames
@StaredownGames Год назад
For some reason, when the axe hit the dog, I was expecting him to fly at/smack the camera. What game is that from?
@hackeem5623
@hackeem5623 Год назад
looks great, question, what the sprite size?
@ouvio
@ouvio Год назад
I created them at 1920x1080 but sized the sprite down inside UE
@hackeem5623
@hackeem5623 Год назад
@@ouvio Wow
@hackeem5623
@hackeem5623 Год назад
@@ouvio Another question, is it possible for me to publish/ upload my games on all stores and game websites? Or once it is on a store it wouldn't be allowed on a website?
@ouvio
@ouvio Год назад
@@hackeem5623 i honestly don't know. Never looked at that myself, as this is my first game attempt
@hackeem5623
@hackeem5623 Год назад
@@ouvio Okie
Далее
I tried remaking Mega Man in Unreal Engine 5
15:13
Просмотров 19 тыс.
ПРИКОЛЫ НАД БРАТОМ #shorts
00:23
Просмотров 760 тыс.
У ГОРДЕЯ ПОЖАР в ОФИСЕ!
01:01
Просмотров 4,5 млн
INDIE GAME DEVLOG - Episode 8: A Fresh Start
6:46
Просмотров 10 тыс.
Why you should make a short game
5:49
Просмотров 26 тыс.
Moebius-style 3D Rendering | Useless Game Dev
8:12
Просмотров 830 тыс.
Making My First Open World Game | Devlog #1
7:18
Просмотров 645 тыс.
Giving Personality to Procedural Animations using Math
15:30
INDIE GAME DEVLOG: My Journey Into Games Development
8:00
Making an Animation for my 3D Pixel Art Game
7:20
Просмотров 1,4 млн
КОШКИ vs МЫШКИ В BRAWL STARS
21:56
Просмотров 213 тыс.