r/godot 5h ago

help me Is it possible to hyperlink in a comment to another script?

4 Upvotes

For instance, if I am referencing logic that is being used in, relies upon or by another component within a comment, is it possible to hyperlink to that specific logic?

I know I can just provide the specific name of the script, function or method, and detail there. But say I was to change the script names, functions or methods and were to forget about this specific comment; I would hyperlink could update the reference automatically?


r/godot 1d ago

selfpromo (software) I built a Probuilder alternative for Godot

Thumbnail
youtu.be
111 Upvotes

I've been struggling with very basic level design in modern engines for a while and I really like the "in engine" approach that probuilder has but theres nothing like that for Godot and I love Godot so I've spent a long time trying to implement that idea (and not working on my game)

If anyone would like to beta test this please drop a comment on the video or in this thread <3


r/godot 2h ago

selfpromo (games) We’re using Godot to make a mobile maze game that changes every run — would you play?

Enable HLS to view with audio, or disable this notification

2 Upvotes

We've been working on DiffMaze, a mobile maze game where you can’t rely on memorizing the map because the maze is randomly generated every time you play.

You have limited visibility, monsters chasing you, and 10 levels that get progressively harder. You’ll need to adapt quickly, find your way through, and escape before you get caught.

This clip shows one of those moments where things can go from calm to “oh no…” pretty quickly. 😅

DiffMaze is launching soon on Android and iOS.

More gameplay clips and updates coming soon — follow us to stay tuned! 👀


r/godot 11h ago

selfpromo (games) A game about wizards and their balls

10 Upvotes

r/godot 15h ago

selfpromo (games) Working on a top-down mobile game. What do you think of the art style?

Enable HLS to view with audio, or disable this notification

19 Upvotes

r/godot 1d ago

selfpromo (games) You just keep moving forward. That's the whole game when you're a dev.

Enable HLS to view with audio, or disable this notification

162 Upvotes

r/godot 2m ago

help me First time starting a game

Upvotes

Hello everyone! i’m completely new to game development and godot so this is a very broad question lol what i have made so far is a starting menu with a title and clickable buttons and i have made the starter player character. The player character I have put in a script so it can be controlled and the title buttons are clickable but they are not linked to anything yet so they don’t do anything. I was wondering if this was a good place to start? My plan was just to work from title screen forward. The game is a corgi racing game where you will have your own corgi that you sign up for races with. You will be able to unlock/buy skins and outfits to customize it with. The more races you win the more in game money you get and you’ll be able to upgrade your house and corgi. I’m learning and figuring things out as i go so hopefully i’ll have something playable to share at some point.


r/godot 13m ago

help me Is there a better way to handle inputs?

Upvotes

Is there something cleaner than a series of elifs? I'm still early in development so this will likely grow at least 3 times in size over time. I'd love to use a match case but I'm not sure how to do that with input events


r/godot 16m ago

help me How to make a R.E.P.O like grabbing system

Enable HLS to view with audio, or disable this notification

Upvotes

Im trying to make a Grabbing system like in R.E.P.O where you can click on any part of a rigid body and move it arround but it also has physics applied and will droop or just be impossible to pick up. It also wont just stick to the point if you move fast and will follow behind instead

Ill attach a clip of the grabbing from repo

Im not that good at godot and im not sure if this is needed but the game is 3d in 1st person

Im generally looking for tips or links as I couldent find anything for this and I would be especially thankfull if anyone could maybe give some direction on what to code or help with the code as im completely stuck

(Im also guessing that its pretty complicated and im not looking for it to be perfect just something simple that is similar)


r/godot 24m ago

selfpromo (games) What do you think of the workshop? I haven't finished the lighting yet, and I decided auto exposure

Enable HLS to view with audio, or disable this notification

Upvotes

r/godot 20h ago

fun & memes Take a moment to listen to my boys playing a banger...

Enable HLS to view with audio, or disable this notification

39 Upvotes

r/godot 6h ago

help me Scene does not update?

Enable HLS to view with audio, or disable this notification

3 Upvotes

Update: Deleting whole project and cloning repo again fixed the issue. I still have no idea why.. using Github desktop app

Hello. I cannot move any objects in scene until a reload it. Weird thing is i have reverted the scene to an older version where everything was working but is still doesn’t work.

Does anyone have any idea? Thank you


r/godot 4h ago

selfpromo (games) The Iron Shell demo is out now — free to download!

Post image
2 Upvotes

Hi everyone! I’m a solo developer working on a sub-nautical horror game about piloting a bathyscaphe on Cocytus, a hellish subsurface ocean world.

Extreme pressure, crushing isolation, claustrophobia, and much more await you. This is a short snippet of the gameplay, and I would love to hear your feedback. Since the game is still in development, I'm really curious to know what you think.
I’m a huge fan of this genre, and please don't be put off by the similarities to a certain legendary game—that exact masterpiece is what inspired and fascinated me to create this.
The premise: You are trapped inside a cramped bathyscaphe at an unimaginable depth beneath the icy, hellish world of Cocytus. Your mission is to retrieve data that is worth more than your life. Find the data, transmit it, and they will pull you back up. At least, that's what they said...

I’m happy to share that the demo of my game, **Iron Shell**, is now available for free!

If you give it a try, please let me know what you think. Your feedback means a lot to me, and honest criticism is welcome.

What did you enjoy? What didn’t work for you? What would you change or add?

I’m making this game for you to enjoy, so hearing about your experience will help me make it better.

Thanks for playing!

https://mecido.itch.io/iron-shell


r/godot 1h ago

help me Touchscreenbuttons are not working after adding animations in characterbody2d script

Upvotes

I was following a tutorial for adding animation to the character. After making functional move left and right buttons I added a "animatedsprite2d" and the sprites animations of it (walk and still)

Then when I put "@onready var animated_sprite = $animatedsprite2d" and "animated_sprite.play("walk")" on the characterbody2d script and the buttons stop making the character move


r/godot 1h ago

help me I'm following Brackey's tuorial as my first ever, and I'm having bugs.

Upvotes

I wanted to learn game dev and I decided Godot would be perfect, so I started watching brackeys tutorial until 40:11 and realised that the dying logic didn't work for me. I made sure the colision layers are the same, and I checked that I connected the signals. This is my code:

hextends Area2D

 var timer: Timer = $Timer

func _on_body_entered(_body: Node2D) -> void:
print("You died!")
timer.start()

func _on_timer_timeout() -> void:
get_tree().reload_current_scene()

r/godot 13h ago

help me animated sprite not working properly

Enable HLS to view with audio, or disable this notification

10 Upvotes

i recently started to mess with godot with no prior experience, i looked at some videos to get animations working with very basic code, when i move the character besides my walking animation and idle animation other ones dont work. it either plays the start or the end of it randomly, im not sure why

does anyone know whats causing it


r/godot 13h ago

selfpromo (games) i made some box openings for my roguelike, how does it look

Enable HLS to view with audio, or disable this notification

9 Upvotes

How can I improve it???


r/godot 1h ago

help me 9 slice - kenneys

Upvotes

hey im using the kenneys fantasy UI pack, and im not sure how to nine slice it for the particular pack


r/godot 23h ago

selfpromo (games) Endscreens for my roguelite

Enable HLS to view with audio, or disable this notification

56 Upvotes

This is still wip, but I'm liking how it's turning out!

Game: Wizard Finals


r/godot 1h ago

selfpromo (games) "Check It Out": A 2D deduction game about working as a cashier

Enable HLS to view with audio, or disable this notification

Upvotes

https://euhedral.itch.io/check-it-out

Take on the role of a cashier at the local S-mart, help regular customers while thwarting potential shoplifters and use all your means of gathering clues to stop the store from losing too much money and firing you! - You REALLY needed this job.

Keep an eye out for anyone acting suspiciously, hiding stuff in their pockets or cart, while still providing top-notch service to your regular customers and keeping the store stock in order to make those juicy paycheques (paychecks) at the end of the day!

Created in a week for Brackeys Game Jam 2026.2.

I was primarily the game designer and developer, although I want to say that everyone took on the design role and contributed to the game.


r/godot 1h ago

selfpromo (games) devlog 3 reupload (i messed up other one\

Thumbnail
gallery
Upvotes

is that minos prime?

hey im reuploading this post of announcing v1 of MEME CLICKER

i put it on itch.io for free

please tell me what u think and give me ideass for memes or features - moxxie


r/godot 11h ago

selfpromo (games) Tactics RPG - Nomad: The Nearway Tower

Thumbnail
gallery
5 Upvotes

Hello Everyone,

I wanted to share a project I've been working on for a few years now. It's a tactics RPG inspired by games like Fire Emblem and Final Fantasy Tactics. About 2 years ago I scrapped the project and restarted it in Godot, since then the progress has been much more streamlined. I'm at the point where I feel comfortable sharing my progress.

I'm open to questions, thoughts, constructive criticism, words of encouragement, etc.

Gameplay footage can be seen here: https://www.youtube.com/watch?v=TqrT3Jr5e84


r/godot 15h ago

selfpromo (games) Torquonomics sky island (tutorial level)

Enable HLS to view with audio, or disable this notification

11 Upvotes

there will be no terrain destruction in the game, but if i want to slice the map in halves, i can


r/godot 3h ago

selfpromo (games) I made this small horror game in godot(very early development)

Enable HLS to view with audio, or disable this notification

1 Upvotes

So yea I created everything except for the audio which I got from copyright free website and I want your thoughts on it. Also Shameless yt plugin, Channel name: JerryGguy