Action Editor

  Рет қаралды 12,437

Matthewmatosis Extra

Matthewmatosis Extra

Күн бұрын

Пікірлер: 40
@ytoon3031
@ytoon3031 2 жыл бұрын
The dilemma of watching more matthew content versus keeping the surprise for the full release
@Vneckvideos
@Vneckvideos 2 жыл бұрын
its a tool.
@GenteelCretin
@GenteelCretin 2 жыл бұрын
This is the microcosm of development that is kind of fascinating to see in application.
@frankkubrick865
@frankkubrick865 2 жыл бұрын
An extremely clever system! You will be able to have a tonne of enemy variety with something like this, very cool!
@nickkerinklio8239
@nickkerinklio8239 2 жыл бұрын
I’ve been eating a lot of beans lately and my ass is just blasting wind out now
@duunchannel
@duunchannel 2 жыл бұрын
Best Dwarf Fortress video I've seen yet!
@keslerjenkins9683
@keslerjenkins9683 2 жыл бұрын
Main title leaked, bigger deal than gta 6 leak
@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 жыл бұрын
This is a really cool system. You should be proud of it.
@TankorSmash
@TankorSmash 2 жыл бұрын
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 2 жыл бұрын
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 жыл бұрын
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 жыл бұрын
​@@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.
@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 :)
@Andrew-xl3gr
@Andrew-xl3gr 2 жыл бұрын
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
@lingricen8077
@lingricen8077 2 жыл бұрын
discussing this seems to help you and teach us
@Stoonk
@Stoonk 2 жыл бұрын
Its the only time he ever "works" on it
@tyler-xo3rb
@tyler-xo3rb 2 жыл бұрын
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
@Fonald3D
@Fonald3D 2 жыл бұрын
Matt, please tell Leah that the animations for the little flying enemy are looking great!
@donjohnson1335
@donjohnson1335 2 жыл бұрын
Ooh, this is pretty neat.
@thelawgameplaywithcommenta2654
@thelawgameplaywithcommenta2654 2 жыл бұрын
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 жыл бұрын
@@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
@vj7248
@vj7248 2 жыл бұрын
Dev Room hype
@talkingfights
@talkingfights 2 жыл бұрын
yuhhh
@ToastieMcMuffin
@ToastieMcMuffin 2 жыл бұрын
cute flea
@oahtobar1355
@oahtobar1355 2 жыл бұрын
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 жыл бұрын
yes!
@joebailey8294
@joebailey8294 2 жыл бұрын
yes!
@Hovel420
@Hovel420 2 жыл бұрын
yes!
Various Improvements
53:43
Matthewmatosis Extra
Рет қаралды 14 М.
Continued Improvements
1:01:17
Matthewmatosis Extra
Рет қаралды 13 М.
Почему Катар богатый? #shorts
0:45
Послезавтра
Рет қаралды 2 МЛН
Vampire SUCKS Human Energy 🧛🏻‍♂️🪫 (ft. @StevenHe )
0:34
Alan Chikin Chow
Рет қаралды 138 МЛН
How to have fun with a child 🤣 Food wrap frame! #shorts
0:21
BadaBOOM!
Рет қаралды 17 МЛН
Emitters & Shaders (Work in Progress)
55:50
Matthewmatosis Extra
Рет қаралды 10 М.
How Two People Created Gaming’s Most Complex Simulation System
38:54
ThatGuyGlen
Рет қаралды 1,5 МЛН
Godot Signalling Methods that Nobody Talks About
6:26
Overlite
Рет қаралды 6 М.
Potentially Acceptable Rendering
41:32
Matthewmatosis Extra
Рет қаралды 15 М.
I Made a 32-bit Computer Inside Terraria
15:26
From Scratch
Рет қаралды 4,2 МЛН
Coding Adventure: Rendering Text
1:10:54
Sebastian Lague
Рет қаралды 821 М.
Andrew Kelley   Practical Data Oriented Design (DoD)
46:40
ChimiChanga
Рет қаралды 163 М.
I Tried Turning Games Into Text
18:18
Acerola
Рет қаралды 382 М.
Dwarf Fortress Classic, Episode 1, Tunomsigun "Mortaltours"
47:38
Robert's Retro-Gaming
Рет қаралды 3,4 М.
Почему Катар богатый? #shorts
0:45
Послезавтра
Рет қаралды 2 МЛН