Skip to content

Instantly share code, notes, and snippets.

View Dev-Sharbel's full-sized avatar
💭
~

Dev.Sharbel Dev-Sharbel

💭
~
View GitHub Profile
@Dev-Sharbel
Dev-Sharbel / project_structure_maker.gd
Created February 5, 2026 00:22
A Godot script to quickly setup a predefined file structure for your projects, with 1 depth of sub-directories
@tool
extends EditorScript
const root: String = "res://"
func _run() -> void:
var dirs: Dictionary[String, Array] = {
"addons": [],
"lib": [],
"docs": [],
@Dev-Sharbel
Dev-Sharbel / godot_hub.tet
Created February 4, 2026 16:03
Custom Godot script editor theme
[color_theme]
word_highlighted_color="cce6e626"
warning_color="ffcc661a"
user_type_color="00b3ffff"
text_selected_color="00000000"
text_color="95aacfff"
symbol_color="5d96ffff"
string_color="63c259ff"
selection_color="699ce859"