Action Editor

  Рет қаралды 11,899

Matthewmatosis Extra

Matthewmatosis Extra

Жыл бұрын

Demonstrating a tool I made to edit actions. No new features but this should clarify some of the systems I've talked about previously.

Пікірлер: 40
@ytoon3031
@ytoon3031 Жыл бұрын
The dilemma of watching more matthew content versus keeping the surprise for the full release
@Vneckvideos
@Vneckvideos Жыл бұрын
its a tool.
@GenteelCretin
@GenteelCretin Жыл бұрын
This is the microcosm of development that is kind of fascinating to see in application.
@nickkerinklio8239
@nickkerinklio8239 Жыл бұрын
I’ve been eating a lot of beans lately and my ass is just blasting wind out now
@frankkubrick865
@frankkubrick865 Жыл бұрын
An extremely clever system! You will be able to have a tonne of enemy variety with something like this, very cool!
@duunchannel
@duunchannel Жыл бұрын
Best Dwarf Fortress video I've seen yet!
@keslerjenkins9683
@keslerjenkins9683 Жыл бұрын
Main title leaked, bigger deal than gta 6 leak
@karpopper
@karpopper 6 ай бұрын
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 Жыл бұрын
This is a really cool system. You should be proud of it.
@Andrew-xl3gr
@Andrew-xl3gr Жыл бұрын
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)
@TankorSmash
@TankorSmash Жыл бұрын
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.
@TSPhoenix2
@TSPhoenix2 Жыл бұрын
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 Жыл бұрын
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 Жыл бұрын
​@@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.
@donjohnson1335
@donjohnson1335 Жыл бұрын
Ooh, this is pretty neat.
@tyler-xo3rb
@tyler-xo3rb Жыл бұрын
yes!
@lingricen8077
@lingricen8077 Жыл бұрын
discussing this seems to help you and teach us
@Stoonk
@Stoonk Жыл бұрын
Its the only time he ever "works" on it
@fleaspoon
@fleaspoon Жыл бұрын
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
@mirrorblade6268
@mirrorblade6268 Жыл бұрын
Is it just me or is placeholder character doing the dark souls 2 handed greatsword guard pose?
@fonald3d161
@fonald3d161 Жыл бұрын
Matt, please tell Leah that the animations for the little flying enemy are looking great!
@talkingfights
@talkingfights Жыл бұрын
yuhhh
@vj7248
@vj7248 Жыл бұрын
Dev Room hype
@huge_letters
@huge_letters Жыл бұрын
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 Жыл бұрын
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 Жыл бұрын
@@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 Жыл бұрын
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 Жыл бұрын
@@matthewmatosisextra ok, thank you for the explanation :)
@moosefreaked
@moosefreaked Жыл бұрын
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
@ToastieMcMuffin
@ToastieMcMuffin Жыл бұрын
cute flea
@thelawgameplaywithcommenta2654
@thelawgameplaywithcommenta2654 Жыл бұрын
Amazing how much work you're doing for the game maker engine
@Stoonk
@Stoonk Жыл бұрын
This is basic platforming exactly what game maker engine is made for. The impressive spritework is just his gf
@thelawgameplaywithcommenta2654
@thelawgameplaywithcommenta2654 Жыл бұрын
@@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 Жыл бұрын
@@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
@oahtobar1355
@oahtobar1355 Жыл бұрын
second
@colonelsandwich641
@colonelsandwich641 Жыл бұрын
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.
@Hovel420
@Hovel420 Жыл бұрын
yes!
@joebailey8294
@joebailey8294 Жыл бұрын
yes!
@seacat1342
@seacat1342 Жыл бұрын
yes!
Various Improvements
53:43
Matthewmatosis Extra
Рет қаралды 14 М.
Potentially Acceptable Rendering
41:32
Matthewmatosis Extra
Рет қаралды 13 М.
Follow @karina-kola please 🙏🥺
00:21
Andrey Grechka
Рет қаралды 23 МЛН
Conforto para a barriga de grávida 🤔💡
00:10
Polar em português
Рет қаралды 102 МЛН
Emitters & Shaders (Work in Progress)
55:50
Matthewmatosis Extra
Рет қаралды 10 М.
Using Water & Water Pressure 🔅DWARF FORTRESS STEAM🔅
19:16
Twisted Logic Gaming
Рет қаралды 124 М.
Windows isn't Sustainable
11:04
waffles
Рет қаралды 3,8 М.
the year 2023 in Dwarf Fortress
3:45
hoodie hair
Рет қаралды 22 М.
tales from the battlefield (Dwarf Fortress)
4:18
hoodie hair
Рет қаралды 41 М.
Dwarf Fortress - Quick Tutorial - Light Aquifers
5:45
Blind
Рет қаралды 126 М.
So I removed lags from Minecraft... (SATISFYING)
9:38
Element X
Рет қаралды 57 М.
CAN YOU FIGURE THIS OUT?! 🤯 #shorts *10000 IQ CHALLENGE!*
0:10
Money Vs Knowledge , Help Spider-man 🤑😢#shorts
0:49
DISASTER X
Рет қаралды 13 МЛН