• 2 Posts
  • 24 Comments
Joined 2 years ago
cake
Cake day: July 16th, 2023

help-circle



  • Reducing the size to 1 I don’t think is the “correct” solution.

    In the inspector for the containers look for the “mouse” tab. That determines how the mouse interacts with that control. By default it is on STOP. Meaning it blocks all inputs “behind” it in your scene. You probably should change it to pass or ignore.

    Imaging you have a complex ui with multiple layers of buttons. You only want the top one to register click events, so it would be on STOP. If you did IGNORE then the top button would not register click events, bit the buttons under it would. If you had on PASS the top button registers the click, but then passes on the click event to the buttons under it.

    Right now you still have a 1px dead zone.

    Hope that helps.






  • My daughter and I have played through quite a few games. Here are our favorites:

    • ANY LEGO game, we have played through many of these
    • The TRINE series. They are fun puzzle platforms
    • portal 2 co-op. There is a campaign and other maps on the workshop
    • brothers: a tale of two sons. Sit right next to each other and share the controller
    • Unraveled 2, puzzle platform errors
    • It takes two is an amazing game from EA.
    • sackboy: a big adventure
    • battle block theater is a fun romp
    • bleep bloop
    • degrees of separation, mostly fun there was a few annoying puzzles, but many can be skipped
    • guacamole is a nice battle platformer
    • ibb and obb is a very unique puzzle platformer
    • octodad is pretty great fun
    • pixel junk monsters is a tower defense style co op game
    • putty pals is a fun if childish looking game
    • spelunky is a rogue like
    • toodee and topdee is a fun puzzler

    Those are our favorites!


  • I started doing diamond art. Here is a cheap set with honestly 100+ hours of content. AMAZON LINK

    I would put on a TV show and sit at my desk and Diamond art for a few hours before bed. Each picture takes 10-15 hours in my experience. When I was done I would find someone to give the picture to.

    So not only have you accomplished something and you can SEE THE PROGRESS, you don’t need a big shift in your life of watching youtube, and at the end you get to make some else happy by giving them a gift. And for a hobby it’s fairly inexpensive.


  • I started by following some YouTube videos. Follow a simple tutorial. At then end EXTEND the game a little with your own ideas. Add a new power up, make a new level, make a new enemy, make a new weapon type, something.

    Once you already have an established framework for a working game by following the tutorial you don’t have to worry so much about the bugs. This builds confidence.

    Also don’t underestimate the built in documentation and search. I’ve been using godot for 2 years now and I reference the docs almost every time I code to check if a certain method exists, or how to get a certain property.

    These videos may be old now, but heartbeast on YouTube had a few great series for godot 3.x


  • I generally don’t like plug-ins. I am not a strong enough coder to read others code well and understand what is going on. If I get stuck it feels like I don’t even know where the problem is.

    So I generally make everything myself. My released game had a simple dialog system they I stored all the dialogs in a resource file in a big dictionary. Then when I needed one I would just ask for that dictionary entry. Each dialog was set, but I could call a few different dialogs based on which characters you had, or inventory.

    There was some duplicated likes of code, but not too much.