Feather Park: Behind the 'Scenes'

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

КОМЕНТАРІ • 35

  • @eeomen21
    @eeomen21 Рік тому +8

    The patience this man had to do stacked sprites is remarkable

  • @ewee-st1de
    @ewee-st1de 3 місяці тому

    The whole stacked sprite thing is still wrecking my brain man, looks so good

  • @carlosmartinezsanchez2144
    @carlosmartinezsanchez2144 Рік тому +5

    Please keep uploading

  • @ypaut
    @ypaut 24 дні тому

    truly amazing content

  • @wellhellotherekyle
    @wellhellotherekyle Рік тому +1

    What a fun project! This art style must have been so time consuming.

  • @tileychannel
    @tileychannel Рік тому +3

    I really liked this casual style of video, and deeper dives into specifics in this format would be awesome :D

  • @luckyknot
    @luckyknot Рік тому

    This is genius, thanks for explaining a bit of the process!

  • @oscdot
    @oscdot Рік тому

    Very inspiring content mate

  • @drdrub
    @drdrub Рік тому +1

    This was great! Ton of useful ideas packed in a little short package! You've got me feeling inspired

  • @godotology
    @godotology Рік тому

    Really cool art style

  • @Tcgtrainer
    @Tcgtrainer 3 місяці тому

    Wow men thanks for shearing I took a full course on programming to start doing games on Godot, I know the basics but never tough this could be done!, amazing.

  • @kzvonov
    @kzvonov Рік тому

    The style is amayzing)

  • @realMenta
    @realMenta Рік тому

    Thanks! It's cool to see how other devs creates their solution and ideas.

  • @wesleyolmsted
    @wesleyolmsted Рік тому

    need more games, content, everything!

  • @misteryanmarex
    @misteryanmarex Рік тому

    Great devlog

  • @DrNabeel20
    @DrNabeel20 Рік тому

    This is useful, inspiring and fun :D thanks I and like to see more videos like this

  • @NateHeroic
    @NateHeroic Рік тому

    This was great!

  • @itsfela
    @itsfela Рік тому

    Thanks, nice tips. I would love to have isolted scenes to test but I have a lot of singletons with dependencies so everything breaks when not placed carefully lol.

  • @fvhaudsilhvdfs
    @fvhaudsilhvdfs 9 місяців тому

    i would have watched like 1 hour of this going into other stuff

  • @kunai9809
    @kunai9809 3 місяці тому

    the foot step sound doesn't really fit to birds feet...

  • @arturertel
    @arturertel 9 місяців тому

    if i understand correctly, you have a scene called "starting area" and another scene called "scissors stone paper". how did you pause one scene and bring the other into the foreground without anything colliding and so on. i would be very interested to know.
    very nice project, well explained, i look forward to more content from you.

  • @godotology
    @godotology Рік тому

    I wanted to make a game with the Sprite staking method after following your tutorial but I couldn't find any good art assets or any body learning how to make sprites can you please recommend a way to get assets for this style .

    • @jontopielski6227
      @jontopielski6227  Рік тому +1

      Honestly, there aren't really stacked sprites out there so I'd recommend just making them yourself. Start simple! See if you can make a crate or a barrel by building up each layer one at a time in a pixel art editor like Aseprite and then exporting the spritesheet and testing it in Godot in a stacked sprite scene. You'd be surprised how easy it is to make simple objects that look good with this method once you start to get the hang of it. Good luck!

  • @_arthurpalmeira
    @_arthurpalmeira 9 місяців тому

    That was great, beautiful art style! I was wondering, how do you manage the scene loading for different maps? Do you preload the other scenes beforehand? Any 'parent' node or autoload managing them? This is the part that I most struggle in godot and I'd love to know the way you implemented it. Thanks for sharing your process!

    • @jontopielski6227
      @jontopielski6227  9 місяців тому

      I've got all the scenes preloaded in an autoloaded "Globals" file. It looks like this:
      const StartingArea = preload("res://src/areas/StartingArea.tscn")
      const MainArea = preload("res://src/areas/MainArea.tscn")
      const WestArea = preload("res://src/areas/WestArea.tscn")
      const NorthArea = preload("res://src/areas/NorthArea.tscn")
      const EastArea = preload("res://src/areas/EastArea.tscn")
      const BarnArea = preload("res://src/areas/BarnArea.tscn")
      And then, when you cross over a bounds, which can be detected with an Area2D in any of the zones, you can load in the next scene. Hope that helps.

  • @kunai9809
    @kunai9809 3 місяці тому

    why is the shed straight in the editor but diagonal ingame?

  • @MichaelZesty
    @MichaelZesty Рік тому +1

    Is there a chance we could get a deeper look into your animated stacked sprite + the tool you made? I know a few of us are dying for more info :D

    • @jontopielski6227
      @jontopielski6227  Рік тому

      Here you go: jontopielski.itch.io/stacked-sprite-viewer

  • @realMenta
    @realMenta Рік тому

    It would like know your stacked sprite sheet workflow. It would be interesting

    • @drdrub
      @drdrub Рік тому

      He linked a tutorial he made in the description

    • @realMenta
      @realMenta Рік тому

      @@drdrub Stacking the sprites in game is one thing, drawing / creating them is another endeavor. But that's what I tried to say, sorry if I was unclear. How is the workflow of drawing the stacked sprite sheet.

    • @tileychannel
      @tileychannel Рік тому

      @@realMenta in the tutorial he shows that he creates the "object" as a voxel model, and exports the layers as separate sprites

    • @realMenta
      @realMenta Рік тому

      @@tileychannel Ah alright, sorry. It was a long time since I watched that tutorial and forgot that he mentions this. Thanks!