summaryrefslogtreecommitdiff
path: root/src/content.rs
diff options
context:
space:
mode:
authorHenrique Lacreta Alves <henriquelalves@gmail.com>2023-04-08 11:11:31 -0400
committerHenrique Lacreta Alves <henriquelalves@gmail.com>2023-04-08 11:11:31 -0400
commit522d781e416ea94500e2ebd06795173a3bfabb77 (patch)
treee5a6b8dfc763d8be47df89836b71fade7e063b19 /src/content.rs
parent7dff0dcc148362117a4b4e6110421cd26880440c (diff)
downloadglam-522d781e416ea94500e2ebd06795173a3bfabb77.tar.gz
glam-522d781e416ea94500e2ebd06795173a3bfabb77.tar.bz2
glam-522d781e416ea94500e2ebd06795173a3bfabb77.zip
Update to godot 4
Diffstat (limited to 'src/content.rs')
-rw-r--r--src/content.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/content.rs b/src/content.rs
index d1ffa2d..94ea18d 100644
--- a/src/content.rs
+++ b/src/content.rs
@@ -1,9 +1,10 @@
pub fn create_gitignore_file() -> String {
return
-r#"# Godot-specific ignores
+r#"# Godot 4+ ignores
+.godot/
+
+# Godot 3 ignores
.import/
-export.cfg
-export_presets.cfg
# Imported translations (automatically generated from CSV files)
*.translation
@@ -18,8 +19,7 @@ data_*/
pub fn create_gdignore_file() -> String {
return
-r#"# Glam-specific ignores
-.glam.d/"#.to_string();
+r#"# Hide this folder from Godot editor"#.to_string();
}
pub fn create_glam_file() -> String {