Тёмный

Moving between Game Levels | Devlog 

Legend 64
Подписаться 40 тыс.
Просмотров 22 тыс.
50% 1

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

 

7 сен 2024

Поделиться:

Ссылка:

Скачать:

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

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 89   
@AlecAndersonZx
@AlecAndersonZx 2 года назад
You might consider adding a minimum joystick input for movement which will prevent the weirdness when you move at a very slow speed. Another thing you could look into is root motion which will allow the character's movement to line up 100% with the animation. I studied Wind Waker's movement a lot and noticed that if you are barely tilting the joystick, link will walk in steps and only actually move every time he takes a step. Little things like this can make a big difference in how the finished product feels! Anyway, it's awesome to see another upload. Can't wait to play the game once it's finished!
@mmmmmmmmmmm10
@mmmmmmmmmmm10 Год назад
Good tip, I expect he will be doing that anyway as the movement animations he used were just basic/placeholder and he mentions it in almost every video as an apology/disclaimer and he hasn't changed them since the beginning. Good tip though. As a designer in a different industry, it's a good lesson. Even if you know one part of the design is just placeholder and improved later, other people don't. So when you present something it should be polished.
@Bee_Mavrick
@Bee_Mavrick Год назад
7:35 you mean this part?
@justice2free
@justice2free 2 года назад
Nice Work! Watching your dev logs is so inspiring, especially since I'm working on my own N64 styled game. Keep it up! I love your work!
@DragonplayerDev
@DragonplayerDev 2 года назад
Inside the LevelTransition BP, after casting to your character PLEASE promote it to a variable. I can see that your BP gets incredibly spaghetti and it's only because everywhere you need the character, you create a brand new line starting at that cast node, going all the way to where it's needed. Also double clicking a line creates a re-route node, which you can pull off new lines from.
@Legend64Project
@Legend64Project 2 года назад
Good tip! Thank you
@Legend64Project
@Legend64Project 2 года назад
Actually doing that kind of broke my BP so I reverted :/
@draadhaai
@draadhaai Год назад
Good tip there. Another one to prevent spaghetti is selecting a grouped/clump of functionality and "collapse to function". Really: that will make things so much more clear.
@braydenb1581
@braydenb1581 2 года назад
Just waiting for a Kickstart announcement already
@HateSonneillon
@HateSonneillon 2 года назад
You can set those flags to "editor only" so they're removed on runtime and not included when you export. I typically use sprites for this type of thing rather than a mesh but its pretty neat what you did.
@DommoDommo
@DommoDommo 2 года назад
Game is really shaping up nicely. Great use of music on the devlog as well! Def need to make a walk animation though ahaha
@asztrik
@asztrik 2 года назад
Easily my favorite devlog channel
@e2000gaming
@e2000gaming Год назад
I can't stop binging these. Such a high level of quality you bring that emulates everything from the N64 so well. Your editing is also well paced and self aware, a much needed breath of fresh air!
@Legend64Project
@Legend64Project Год назад
Thank you :)
@menmouzumaki7951
@menmouzumaki7951 2 года назад
ngl deleting the three basic events on a fresh blueprint and then potentially adding them back in later is the Blender Default Cube of Unreal Engine.
@sebastianlo4312
@sebastianlo4312 2 года назад
Love seeing a new upload! I really love seeing your stuff! You really seem like somebody you’d wanna talk to over a beer :)
@HateSonneillon
@HateSonneillon 2 года назад
A simpler way to do that movement transition would be to use a timeline block. In the timeline just set however long you want the movement to last and connect the update pin to the move. Timelines are super useful for many many things.
@LightningBoom1991
@LightningBoom1991 2 года назад
This is awesome! Keep going!! I can’t wait to play this, I just hope a lot of work goes into the story as well. One of the few games I’m excited to play.
@nahuelpaillapi
@nahuelpaillapi 2 года назад
This is awesome, i really like to see this devlogd
@Rob-hm4jx
@Rob-hm4jx 2 года назад
Maybe falling into the box causes the player to stay still because the over all speed of the player is greater than the minimum even though it is directed downwards, if that's the case you could check the speed using just the horizontal components of the velocity and pythagoras
@Charliehotdog79
@Charliehotdog79 8 месяцев назад
This game looks great so far, really authentic to the N64! One thing I'd like to see is some hidden easter eggs throughout the finished project like maybe adding that flag somewhere would be cool. Keep it up and you'll have a beloved game in to time!
@TicketCTS
@TicketCTS Год назад
Just starting to toy with the concept of making an N64 era game using unreal engine. Its been a doozy getting to see all of the tricks and methods used back in the game. It really pushed my game design knowledge further and I couldn't be happier seeing the work you have put into this all. Thank you for all the great examples and knowledge. I really appreciate your work!
@Ghossteffect
@Ghossteffect 2 года назад
Cool video, love these kind of devlogs. One thing i would consider though is looking to improve your code a little more with some best pratices, for example check for circular dependecies and such. That can be nightmare later in the project, when you want to build it. I recommend the Circular Dependencies Detector found for free on market place.
@MadamLava094
@MadamLava094 2 года назад
So happy to have discovered this series, you have a good eye for the N64 style and I love how the game looks so far. Ill have to hop on Patreon once I fix my account.
@elilentiart8025
@elilentiart8025 2 года назад
This series is fascinating and very inspiring! I've been wanting to get into game design for a long time, and these videos are definitely nudging me closer and closer to getting started.
@pixboi
@pixboi 2 года назад
This is a super small thing, but contributes to a lot of the magic that was behind these games. I often try to remember things from the past, as a kid, many of the things I now claim nonsense, were actually magical. Some little detail on the swords hilt, some kind of magical gem that would shine on the screen would make all the difference. Some characters just looked so "cool", yet I didn't know why. I think when it comes to the assets in your game, you really have really captured some of that lightning in that bottle, good job!
@TheInfamousLegend27
@TheInfamousLegend27 2 года назад
loving the look of this game project so far! keep it up :D
@draadhaai
@draadhaai Год назад
This really brings me back to the 64 days, it looks awesome already!
@3draven
@3draven Год назад
FYI if you want the character to move forward after the level load then you need to get the actor location and add to it the player forward vector * float (the float dictates how far in front of the player the destination point is) and plug that into the move to node
@menmouzumaki7951
@menmouzumaki7951 2 года назад
Okay so for that character moving when they enter a level, you should setup a timeline that starts the player moving and then reduces the speed after like a second.
@menmouzumaki7951
@menmouzumaki7951 2 года назад
You could also carry over the speed this way by lerping them when they leave/enter the level.
@tursala
@tursala 2 года назад
Another great update! I really liked the editing on this video too.
@sirtroba
@sirtroba Год назад
I’m realizing I’m kinda addicted to following this project😅
@markaster7677
@markaster7677 Год назад
Frick man, hearing that chao garten theme almost made me cry, sonic adventure 2 was my childhood, I fondly remember torturing those poor chaos, but never managed to send them away, as that goosbye music was to much to handle for my small heart. 😂😂
@Lazypie456
@Lazypie456 2 года назад
Keep up the good work :)
@ZombieChimps
@ZombieChimps 2 года назад
Looks cool! I learned a lot, thanks
@yveltalsea
@yveltalsea 2 года назад
This is super awesome, just found you from your newest video!! Hope you get more traction on these, they're so professionally made :D
@minilabyrinth
@minilabyrinth 2 года назад
Really amazing simple tutorial on some basic game functionality
@sleeper_000
@sleeper_000 2 года назад
Very nice! Love the high production quality of your videos, keep it up! Also another tip, but maybe you already know this; you can use the GameInstance Blueprint to take variables from one level to another, as it doesn't reset like the other Blueprints do. So right now the level transition is only visual, but once you want to start taking stuff or stats from one level to another, try setting the variables in the GameInstance Blueprint. Good luck!
@nutjobvoices
@nutjobvoices 2 года назад
I'm so looking forward to this game! Keep up the good work
@buggyspeaks7349
@buggyspeaks7349 2 года назад
I’m loving the new video style! It’s giving me major javidx9 vibes
@tylerhughes192
@tylerhughes192 2 года назад
Looking Good!
@lordjohn6107
@lordjohn6107 2 года назад
Its looking really good so far, I'm not making the game but people have a already played the Zelda's and I would recommend innovating your own new ideas into this game like making a cool feature to revolve the game around, like time travel from oot.
@Pandan3D
@Pandan3D Год назад
The use of delay(0.0) loops is hurting me lol I would consider making a "Auto Walk" function in the character class, that you can turn on/off and adjust speed, for how long, etc. And driving that auto walk using Timer Events instead of delay loops or timelines. Good luck with the game, it looks really good so far
@HYDRAdude
@HYDRAdude 2 года назад
Amazing stuff
@Sandcrab1317
@Sandcrab1317 2 года назад
I remember doing some similar things back in the day working with a older version of RPG maker. With less variables of course being a 2D engine. But the feeling of one small thing breaking every time you fix something can be frustrating.
@Legend64Project
@Legend64Project 2 года назад
Yeah good times! RPG maker was my first dip of the toe into the crazy world of game development.
@wanderingqueijo
@wanderingqueijo 2 года назад
Would you be very surprised if Mr. Mix suddenly appeared in the background whilst you were working on your videos? Loving the informative videos and can't wait to see how it all turns out 😁
@Legend64Project
@Legend64Project 2 года назад
What are you talking about, I'M MR MIX!
@Aikakirjat
@Aikakirjat Год назад
This is several months old now and you probably figured it out minutes after posting the video, but just in case you didn't revisit it yet; I'm about 80% sure the jumping weirdness in the level transition comes down to the pathing. Essentially, when the character enters the trigger volume it is, as far as navigation is considered, still on top of the cliff since that was the last time it touched the navmesh. So at that moment, it paths a way to the goalpost from on top of the cliff and not where the character lands on the lower navigable terrain. There is probably a very simple solution to it, maybe the pathing can somehow be set to recalculate often? (I'm not well versed in Unreal)
@grinbrothers
@grinbrothers 2 года назад
Always fascinating and informative watching this videos of yours. Things are neatly explained, mostly easy to understand (not quite sure what a Navmesh Bounce Volume is, but the rest of the terms were easy to get) and spiced up with bits of humour like the hilarious results at 2:00. Out of curiosity, is 5:23 how a teleporter would be coded/programmed into a level of a game, minus the fade to black transition?
@SocialBubblia
@SocialBubblia 15 дней назад
Wait wait wait, you don't need a second thing. If you make the black the default for scenes, then always fade in to transparent (the regular game) that is the default. Basically instead of having two things for each fqde in and fade out thing, you just need one. Fade in from black ag the start, fade to black at the end. If you keep that consistent through all scenes you don't need to add the fadw in.
@battokizu
@battokizu 2 года назад
Theres definitely a qol type scenerio to all the design decisions that existed when you needed to load new levels, but having them as aesthetic option is more or less understanding how all these level design quirks that made games feel sepcial and not so "life like", unlike what we have now. Not that a loading screen or some flavor text (ala cod1) made the games any better, there was a conscious effort to distingious between rival games and new experiences (vs medal of honor), but that it made the games seem way more feature filled. Of course gamers today expect anyone with a brain to dump through data to find every nook and cranny that weirdly exist because of some strange need to reverse engineer games. Like playing a game is almost an aesthetic choice? Same with dev blogs about games about to exist, hearing (like a behind the scenes in movies or for games being made decades ago) that gives some humanity but not the tedium or extreme realistic approach that makes it real life. Nice game lol
@mmmmmmmmmmm10
@mmmmmmmmmmm10 Год назад
I understand you, some very interesting observations and I appreciate them. Unfortunately your English skills are lacking. It took 4 minutes reading and rereading each sentence to be able to understand you. Keep up with your English practise.
@zach.0
@zach.0 2 года назад
The only game programming I've done is with Game Maker 1 code, but I have done a little with Blender. The whole thing with all the boxes that you drag lines into and out of is so much more confusing to me than a block of code.
@Legend64Project
@Legend64Project 2 года назад
I get that. For me it’s really helped remove a barrier for entry because I can visualize what the code is doing.
@yourcommander3412
@yourcommander3412 2 года назад
Nice !
@AlfredBaudischCreations
@AlfredBaudischCreations 2 года назад
For the materials, are the characters all unlit with emissive as the base color and the environment as lit?
@PJellyfish
@PJellyfish 2 года назад
I love your dev logs! I have a question though, what’s the name of the song that starts at 6:15??
@meltymetroid253
@meltymetroid253 2 года назад
it's 'Rougeport Sewers' from Paper Mario: The Thousand Year Door :)
@mikatomik5532
@mikatomik5532 Год назад
I know I’m 6 months late to the party but I wonder if falling into the transition box was breaking because you might have been triggering the code while you were outside the navmesh 🤔
@hyperteleXii
@hyperteleXii 2 года назад
Level loading is instant - great let's put a fake loading cutscene there.
@superresistant0
@superresistant0 Год назад
It is somewhat entertaining
@KoltPenny
@KoltPenny 2 года назад
Have you considered using another engine? Your game looks great by the way, I'm going to be the first in the virtual line when it releases.
@Legend64Project
@Legend64Project 2 года назад
Thank you. Yeah, I’m thinking about swapping to Unreal Engine 5 ;)
@Farcraft2
@Farcraft2 2 года назад
This sounds fun. Does that event graph replace classic code? can you do everything with this method? It makes me want to try it
@Legend64Project
@Legend64Project 2 года назад
Yea it’s does. I’m making the entire game this way. I’ve heard there is a cost to game performance doing it all this way though.
@kae2018
@kae2018 2 года назад
a lot of the thought process in visual scripting is very much applicable to writing C++ code, so it might not be such a difficult hurdle as you think if you want to branch into that.
@Broockle
@Broockle 8 месяцев назад
Your movement might be depending on the navmesh which doesn't work in midair I believe.
@RandomAssaultPodcast
@RandomAssaultPodcast 2 года назад
It's probably too early for this question, but do you think this could work on hardware? Like through an Everdrive64? Either way I'm excited for this, but it would be rad to play this on an actual N64
@kae2018
@kae2018 2 года назад
there's absolutely no chance of getting a UE project running natively on N64 unfortunately
@RandomAssaultPodcast
@RandomAssaultPodcast 2 года назад
@@kae2018 what if I wish for it very hard?
@Combes_
@Combes_ 2 года назад
Make a JNR D51 for your game
@StrawberryNUKE
@StrawberryNUKE 2 года назад
That is not what I expected you to look like
@ArtfulRascal8
@ArtfulRascal8 2 года назад
-head spinning-
@arphaxadarphaxad1592
@arphaxadarphaxad1592 4 месяца назад
name of the song in the beginning?
@Notryanarden12
@Notryanarden12 4 месяца назад
If by any chance you see this comment, are you able to share your PC specs? I’m looking to upgrade my PC so I can work properly with unreal engine and make my dream game. your videos are immensely inspiring and informative.
@InvisaPotion
@InvisaPotion 2 года назад
Yo im tryna make a game with similar graphics but I cant find a place to get 64 bit textures, where do you get the ones for your game?
@InvisaPotion
@InvisaPotion 2 года назад
Also how do you get complex textures for like gates and stuff that isnt a flat object like a wall
@Legend64Project
@Legend64Project 2 года назад
@@InvisaPotion You have to make it yourself. Everything you've seen in the videos was made by me :)
@InvisaPotion
@InvisaPotion 2 года назад
@@Legend64Project How would you go about making textures like those? I have tried but they just look like bad drawings
@Tazerboy_10
@Tazerboy_10 2 года назад
😲
@DyxoXinoro
@DyxoXinoro 2 года назад
I am now keenly aware of how much RPG Maker has spoiled me.
@Legend64Project
@Legend64Project 2 года назад
I was thinking that the whole time I was making this.
@oldleaf3755
@oldleaf3755 2 года назад
y no more unity???????????????????????????
@Legend64Project
@Legend64Project 2 года назад
I’ve never actually used Unity before. I’ve always been an Unreal Engine fan.
@oldleaf3755
@oldleaf3755 2 года назад
@@Legend64Project oh sorry, for some reason i remembered incorrectly when i thought of your previous videos. great work so far btw, your progress is inspiring
@user-uw5qj1rp1y
@user-uw5qj1rp1y 2 года назад
if you want english to arabic translation am here
Далее
Devlog | Making an Infinite Corridor (and failing)
7:32
Castle Parlor | Devlog
8:49
Просмотров 35 тыс.
Новый хит Люси Чеботиной 😍
00:33
Spirit Lantern | Devlog
10:44
Просмотров 42 тыс.
How I added ABILITIES to my GAME
6:39
Просмотров 224
Haunted Castle | Devlog
12:41
Просмотров 68 тыс.
Creating a New Flying Manticore Enemy | Devlog
10:07
Просмотров 61 тыс.
Undead Hydra | Devlog
9:26
Просмотров 54 тыс.