Setup zylann.hterrain addon

This commit is contained in:
Marek S. Łukasiewicz 2025-02-21 13:55:02 +01:00
parent 4d1ca58952
commit 141dbf42c0
12 changed files with 22 additions and 5 deletions

2
.gitignore vendored
View file

@ -16,6 +16,8 @@ compile_commands.json
!/project/addons/godot-xr-tools/**/*.uid
/project/addons/gdcef/**
!/project/addons/gdcef/**/*.uid
/project/addons/zylann.hterrain/**
!/project/addons/zylann.hterrain/**/*.uid
# Chrome Embedded Framework binaries
/project/cef_artifacts

View file

@ -0,0 +1 @@
uid://bov8uure5wkmf

View file

@ -0,0 +1 @@
uid://dywbptb2bbko

View file

@ -0,0 +1 @@
uid://bfmi6gam8b6fo

View file

@ -0,0 +1 @@
uid://uad1kd28fwu0

View file

@ -0,0 +1 @@
uid://bflkdm6r5si0i

View file

@ -0,0 +1 @@
uid://cl2uxsa1vdegf

View file

@ -0,0 +1 @@
uid://b7r28bjm7joxj

View file

@ -0,0 +1 @@
uid://r4skgmgtuu61

View file

@ -0,0 +1 @@
uid://dhm70m1314m0o

View file

@ -0,0 +1 @@
uid://cr1a7v7ck7gmd

View file

@ -5,8 +5,13 @@ from shutil import copytree
root_path = path.abspath(path.dirname(__file__))
# Copy the addon folder from each module
addon_modules = [
'gdcef',
'godot_heightmap_plugin',
]
for addon in addon_modules:
copytree(
path.join(root_path, 'modules', 'gdcef', 'addons'),
path.join(root_path, 'modules', addon, 'addons'),
path.join(root_path, 'project', 'addons'),
dirs_exist_ok=True,
)