Action Editor

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

КОМЕНТАРІ • 40

  • @ytoon3031
    @ytoon3031 2 роки тому +46

    The dilemma of watching more matthew content versus keeping the surprise for the full release

  • @GenteelCretin
    @GenteelCretin 2 роки тому +11

    This is the microcosm of development that is kind of fascinating to see in application.

  • @nickkerinklio8239
    @nickkerinklio8239 2 роки тому +21

    I’ve been eating a lot of beans lately and my ass is just blasting wind out now

  • @frankkubrick865
    @frankkubrick865 2 роки тому +3

    An extremely clever system! You will be able to have a tonne of enemy variety with something like this, very cool!

  • @duunchannel
    @duunchannel 2 роки тому +3

    Best Dwarf Fortress video I've seen yet!

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

    Having medusa head like enemies, or enemies that just fly around in a certain pattern is a great idea for mushido. Theyre extremely easy to animate, they can be just 2 frames of a flying animation. And they would fit thematically since theres lots of flying bugs.

  • @Tiger66261
    @Tiger66261 2 роки тому +1

    This is a really cool system. You should be proud of it.

  • @TSPhoenix2
    @TSPhoenix2 2 роки тому +6

    Looking good.
    Regarding a save/load system for behaviours, as someone who used to use a similar code generation technique in my own GameMaker project and eventually bit the bullet and created a proper data-oriented save/load system for entities (and a full Mario Maker-style level editor that has two-way live sync with my external tile editor) I regretted not doing it sooner as being able to develop your game in-engine and then hit CTRL+S and have it write my changes directly into the game files massively improved my iteration time. Idk if you'll see this, but if you do feel free to ask any questions.

    • @matthewmatosisextra
      @matthewmatosisextra  2 роки тому +7

      Thanks for your perspective. I convinced myself this tool would be harder to make than it actually was, if I had known I'd have it up and running within a week, I probably would've tried the save/load approach to begin with. At the time it seemed like overcomplicating a problem before solving it. Now that the tool itself works I'll consider taking that next step. My priority right now is really content generation though, I'm a bit tired of working on systems and tools.

    • @TSPhoenix2
      @TSPhoenix2 2 роки тому +1

      ​@@matthewmatosisextra You already have a live editor for actions, and the code you're generating contains all of information so no harm sinking your teeth into content creation as you always have the option to later add an export() function to your generated entities that dumps their behaviours to JSON/whatever and then rewire them to load that data in.
      Ultimately you just want a system that supports your design needs. Code generation was more than enough for my first project, but abstracting the behaviour data from the entities opened up some interesting design possibilities (entities that can learn behaviours from other entities, etc...) that I leveraged in later projects. The Behavioral Patterns chapter of Game Programming Patterns is a decent afternoon read that demonstrates a lot of different possibilities for entity-behaviour design.

  • @TankorSmash
    @TankorSmash 2 роки тому +1

    A great rule of thumb for tweaking values is to use halving it or doubling it, basically binary search it first. Small tweaks work but it's a lot quicker to work that way in my experience. Something about how the human brain only recognizes changes that are a 10% difference from each other.

  • @Andrew-xl3gr
    @Andrew-xl3gr 2 роки тому +1

    the fleas look pretty good now, i can start to imagine sorta how the game will look even with just this simple enemy. (I forgot if they're actually called fleas, they just remind me of fleamen in castlevania)

  • @mirrorblade6268
    @mirrorblade6268 2 роки тому

    Is it just me or is placeholder character doing the dark souls 2 handed greatsword guard pose?

  • @fleaspoon
    @fleaspoon 2 роки тому

    Another way to make changes in real time is to listen for changes into a file, with that you avoid having to build a UI to update your state without having to recompile

  • @huge_letters
    @huge_letters 2 роки тому

    On 28:30 - how come the character moves up during the jump if it has no initial y speed, only negative y acceleration?

    • @matthewmatosisextra
      @matthewmatosisextra  2 роки тому

      Acceleration gets applied to speed, you can think of it as a different way of modifying speed. If you're confused about the negative value, in some engines negative y values equate to upward movement. This can seem confusing because real-life graphs are typically drawn with y increasing upward. My understanding is that it's a popular standard for computers because screens are drawn with (0,0) being the top left pixel, so values increase as you move downward.

    • @huge_letters
      @huge_letters 2 роки тому

      @@matthewmatosisextra what causes it to drop down then, if gravity is overriden by y acceleration(upwards)? As I understand it by the end of the curve y_accel is -7 which means it's accelerating upwards.

    • @matthewmatosisextra
      @matthewmatosisextra  2 роки тому

      Check out the duration of the y acceleration, it's just 1 which means it only applies on the first frame. After that the default value takes over again. It's an easy detail to overlook, still catches me out sometimes, which is another reason I'm glad to have this tool now.

    • @huge_letters
      @huge_letters 2 роки тому

      @@matthewmatosisextra ok, thank you for the explanation :)

  • @lingricen8077
    @lingricen8077 2 роки тому +1

    discussing this seems to help you and teach us

    • @Stoonk
      @Stoonk 2 роки тому

      Its the only time he ever "works" on it

  • @Fonald3D
    @Fonald3D 2 роки тому +1

    Matt, please tell Leah that the animations for the little flying enemy are looking great!

  • @tyler-xo3rb
    @tyler-xo3rb 2 роки тому +4

    yes!

  • @moosefreaked
    @moosefreaked 2 роки тому

    the input for the curve field in the ui should be a combo-box you can type in, but is also an organized dropdown with nested hierarchy to organize all the types of curves. but might be too difficult to implement if it doesnt exist in gamemaker

  • @thelawgameplaywithcommenta2654
    @thelawgameplaywithcommenta2654 2 роки тому +3

    Amazing how much work you're doing for the game maker engine

    • @Stoonk
      @Stoonk 2 роки тому

      This is basic platforming exactly what game maker engine is made for. The impressive spritework is just his gf

    • @thelawgameplaywithcommenta2654
      @thelawgameplaywithcommenta2654 2 роки тому +1

      @@Stoonk Technically every engine is made for this since this every engine can do basic movement. I use Unreal and it's extremely easy to set up this kind of platformer, but he's gone to the trouble of making the equivalent of an animation graph in terms of functionality and a float/velocity modifier.
      That isn't standard practice for gamemaker; an engine typically used by armatures.

    • @Stoonk
      @Stoonk 2 роки тому

      @@thelawgameplaywithcommenta2654 Looks like he has quite a lot of progress to show for it after over a year of quitting videos and working on this

  • @donjohnson1335
    @donjohnson1335 2 роки тому

    Ooh, this is pretty neat.

  • @vj7248
    @vj7248 2 роки тому

    Dev Room hype

  • @talkingfights
    @talkingfights 2 роки тому

    yuhhh

  • @ToastieMcMuffin
    @ToastieMcMuffin 2 роки тому

    cute flea

  • @oahtobar1355
    @oahtobar1355 2 роки тому +3

    second

  • @colonelsandwich641
    @colonelsandwich641 2 роки тому

    If you ever end up needing to make more tools like this I can't recommend Imguigml enough. It's an implementation of Dear Imgui for GameMaker and it's incredibly easy to set up for making quick UIs with buttons, sliders, text areas and etc.

  • @seacat1342
    @seacat1342 2 роки тому +1

    yes!

  • @joebailey8294
    @joebailey8294 2 роки тому +2

    yes!

  • @Hovel420
    @Hovel420 2 роки тому +2

    yes!