Can i create my own custom code in godot?

Hi, Gyro Games here!
I was wondering is it possible to create my own code in godot
because i am creating my own engine in godot (I am not .)
Here’s the mechanism if a player jumps 5 times the ground will solidify for 5 seconds here’s the code:

If_Condition is met > (Jump*5)
Then_Solidify >(Code_A=On)
{ If_Code_A ON,(Wait:5 Secs)
Then Reverse: solidify}

Godot uses GDScript, you can attach scripts to any Node, or use as a resrouce.

1 Like

Your pseudocode is possible to make in godot. Trya platformer tutorial to see how you can make something similar in gdscript. Brackey’s tutorial is good.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.