First Gameplay Mechanics | Godot 3D Devlog #5

Поділитися
Вставка
  • Опубліковано 6 вер 2024

КОМЕНТАРІ • 32

  • @BigToeDev
    @BigToeDev 4 роки тому +4

    Nice devlog man! Keep up the great work, I really like the environment of your game :)

  • @ginoleeswan1454
    @ginoleeswan1454 4 роки тому +2

    Great video! Yes please do a tutorial on foot IK 🙏 not many on UA-cam and you pulled it off very well🔥

  • @zombycookie1512
    @zombycookie1512 4 роки тому +1

    The jump is kinda weird but i do like it

    • @wojtek_pe
      @wojtek_pe  4 роки тому +1

      Haha, thanks. I will work on it, I already have few ideas to improve it.

  • @smutnywalen
    @smutnywalen 4 роки тому

    I love the style of the ruins and the overall style of your game. Seeing the progress that you've made really is lifting up

  • @sanyi9667
    @sanyi9667 3 роки тому

    you're always a few steps ahead of me. I have already implemented lod system, day and night cycle, god rays and I've been trying to touch a little on the ik but I only failed in the process. What I've managed to do until now fades in comparison with what have you already accomplished.

  • @RTSFan1337
    @RTSFan1337 4 роки тому +1

    Amazing how fast you progress. I'ld love a tutorial on how you solved the IK for the terrain floor.
    For the game, I think you should design the world in a manner that jumping really makes sense. Jumping on the 20cm high bridge block at 5:55 seems a bit weird because he jumps like 1,5m for that.
    I know its more stuff to implement/animate but balancing on a wooden beam or something in that direction would sell that part better.

    • @wojtek_pe
      @wojtek_pe  4 роки тому

      Hi and thank you for suggestion. You're totally right about jumping on the 20cm bridge block :) And I have already planned a little bit different solution for this problem. Basically I will place a raycast in front of character. Then I will check if an obstacle in front of it is in some altitude range (for example 20-50cm). If it is, then I would play some climbing animation instead of jump. Also I have some idea to tackle situations on the surface edges, like playing animation of losing balance.

  • @galo1486
    @galo1486 4 роки тому

    this is looking NICE

  • @Skeffles
    @Skeffles 4 роки тому

    This progress looks awesome. Could you add wall grabs to help the player climb up the temple?
    Also I found it hilarious when you first showed the IK system on terrain without animation. It was like the character was skating.

    • @wojtek_pe
      @wojtek_pe  3 роки тому +1

      Hi! Yes I was thinking about adding wall grabs, but firstly I need to solve few issues with basic player movement. I will look into that after I finish my character model.

  • @helloworld5219
    @helloworld5219 4 роки тому

    I was waiting this devlog

    • @wojtek_pe
      @wojtek_pe  4 роки тому

      I wanted to share it yesterday but I had a problem with the internet access. I hope it was worth the wait :)

    • @helloworld5219
      @helloworld5219 4 роки тому +1

      @@wojtek_pe Yes I was interested about gameplay mechanics

    • @helloworld5219
      @helloworld5219 4 роки тому +1

      @@wojtek_pe good job

  • @nowherebrain
    @nowherebrain 4 роки тому

    I'm working on inventory, save, dialogue and combat mechanics first this go around...if the combat is boring..no point in even continuing...but inventory and save can be plug and play.

    • @wojtek_pe
      @wojtek_pe  4 роки тому

      That's great to hear. To be honest I do not plan to add a lot of combat to my game. Maybe some little mobs to increase your stats in between major ruins and other places. I want to end this project someday so yeah, can't add everything :) At least not at scale I want it to be. But definitely save and dialogs would be an important thing also for me in the future. But first I need to add some UI. I really loved your UI/menu in Tiny RPG. Especially skill points menu. That looked awesome. Was that all implemented using standard Godot UI containers ?

    • @nowherebrain
      @nowherebrain 4 роки тому

      @@wojtek_pe I coded all of it using just texture rects, 2d colliders and a raycast....it was my first go at godot and was primarily designed for me to learn, also I was unaware of all the other options..so I started a new project(real project) now that I am more comfortable with the engine. Nice to see someone as well versed as you knows about my "tiny" project...means a lot.

  • @Duckamoly
    @Duckamoly 4 роки тому

    Nice one!

  • @bobbyneal2498
    @bobbyneal2498 3 роки тому +1

    Hey I plan on doing some demos. Right now, I'm searching the internet for foot ik but no luck. Then I ran into this one and it has what I'm looking for. Any idea on how I can implement this?

    • @wojtek_pe
      @wojtek_pe  3 роки тому

      Hey, look at my channel. I made a tutorial not so long ago :)

    • @bobbyneal2498
      @bobbyneal2498 3 роки тому

      @@wojtek_pe ok thx

  • @alexanderkiryanov7190
    @alexanderkiryanov7190 4 роки тому

    The character. Yeah. A very interesting topic for me. Tell me please! Very often in games I see little things that upset me. This is due to the character's gait. It is ideal and it feels like the floor is slipping. It is especially noticeable when the tempo changes. I discussed this with my friend programmer, he says this is a very difficult thing to implement. Are you going to sync your feet to the ground? Feet slip a little now.
    Go on, very good for one person!

    • @wojtek_pe
      @wojtek_pe  4 роки тому

      Hi, it's difficult for few reasons. The way I implemented movement is the simple approach. So basically I have 3 animations: idle, walk and run. And I have a 1D space blending. That means that in engine is blending with different weight those animations based on character velocity. It's hard to sync those footsteps with actual velocity because it's based on linear animation blending. Maybe it should be blended with values that takes into an account real acceleration of player but it also sound difficult to sync. The best way to solve this problem right now is in my opinion to increase acceleration to the point where it's not so noticable. I mean I can sync my animations with speed only in 3 points so, I just to skip points between them as fast as I can. The other better way would be some procedural animations, but I don't like them. It's hard to create something that looks natural. Second problem is that IK system that I am so proud about :D It makes foots to stick to floor. So in reality there need to be a balance between how much you can accept that sometimes "leg" goes into an obstacle, and how slippery it feels. You can tweak it but it takes a lot of time. Until I don't have a final character model I keep it as it is right now.

  • @devgilmore
    @devgilmore 3 роки тому

    How do you achieve such nice rendering with all the grass and trees?

    • @wojtek_pe
      @wojtek_pe  3 роки тому

      Hi, this is just a lot of tweaking and shaders :) I use mostly custom shaders for vegetation. One recommendation I could give is that you should use gradients textures with albedo/alpha textures in combination. It gives a lot more natural looks compared to single albedo color with a texture. Also distance blur is really nice effect. Try to use SSAO on every object. It probably depends on the style of the scene but it gives me pleasant results. I also use a lot of other small tricks like rim on bark, faked subsurface scattering etc. Tbh just I just tried a ton of different things and iterated it a lot.

    • @devgilmore
      @devgilmore 3 роки тому

      @@wojtek_pe bro thank you so much for this explanation! Great devlog and I can't wait to attempt to make my own environment.

  • @orkmaedchen
    @orkmaedchen 3 роки тому

    how is it going with your game? Best wishes to you!

  • @fazil47
    @fazil47 4 роки тому

    Are you planning on releasing this along with your plugin or as a separate project?

    • @wojtek_pe
      @wojtek_pe  4 роки тому +1

      What do you mean by releasing? My plugin is right now on github. You can find a little overview and link to github here: ua-cam.com/video/5i0EUC0voao/v-deo.html there are few changes but idea is the same. IK system? It will be a tutorial on youtube. There is not much of source code, so it probably won't be on github. As for my game I hope I will release it on Steam some day. But it won't be fast. Still waiting for stable Godot 4.0.