Setup zylann.hterrain addon
This commit is contained in:
parent
4d1ca58952
commit
141dbf42c0
12 changed files with 22 additions and 5 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -16,6 +16,8 @@ compile_commands.json
|
||||||
!/project/addons/godot-xr-tools/**/*.uid
|
!/project/addons/godot-xr-tools/**/*.uid
|
||||||
/project/addons/gdcef/**
|
/project/addons/gdcef/**
|
||||||
!/project/addons/gdcef/**/*.uid
|
!/project/addons/gdcef/**/*.uid
|
||||||
|
/project/addons/zylann.hterrain/**
|
||||||
|
!/project/addons/zylann.hterrain/**/*.uid
|
||||||
|
|
||||||
# Chrome Embedded Framework binaries
|
# Chrome Embedded Framework binaries
|
||||||
/project/cef_artifacts
|
/project/cef_artifacts
|
||||||
|
|
|
||||||
1
project/addons/zylann.hterrain/hterrain.gd.uid
Normal file
1
project/addons/zylann.hterrain/hterrain.gd.uid
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
uid://bov8uure5wkmf
|
||||||
1
project/addons/zylann.hterrain/hterrain_chunk.gd.uid
Normal file
1
project/addons/zylann.hterrain/hterrain_chunk.gd.uid
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
uid://dywbptb2bbko
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
uid://bfmi6gam8b6fo
|
||||||
1
project/addons/zylann.hterrain/hterrain_collider.gd.uid
Normal file
1
project/addons/zylann.hterrain/hterrain_collider.gd.uid
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
uid://uad1kd28fwu0
|
||||||
1
project/addons/zylann.hterrain/hterrain_data.gd.uid
Normal file
1
project/addons/zylann.hterrain/hterrain_data.gd.uid
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
uid://bflkdm6r5si0i
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
uid://cl2uxsa1vdegf
|
||||||
1
project/addons/zylann.hterrain/hterrain_mesher.gd.uid
Normal file
1
project/addons/zylann.hterrain/hterrain_mesher.gd.uid
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
uid://b7r28bjm7joxj
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
uid://r4skgmgtuu61
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
uid://dhm70m1314m0o
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
uid://cr1a7v7ck7gmd
|
||||||
|
|
@ -5,11 +5,16 @@ from shutil import copytree
|
||||||
root_path = path.abspath(path.dirname(__file__))
|
root_path = path.abspath(path.dirname(__file__))
|
||||||
|
|
||||||
# Copy the addon folder from each module
|
# Copy the addon folder from each module
|
||||||
copytree(
|
addon_modules = [
|
||||||
path.join(root_path, 'modules', 'gdcef', 'addons'),
|
'gdcef',
|
||||||
path.join(root_path, 'project', 'addons'),
|
'godot_heightmap_plugin',
|
||||||
dirs_exist_ok=True,
|
]
|
||||||
)
|
for addon in addon_modules:
|
||||||
|
copytree(
|
||||||
|
path.join(root_path, 'modules', addon, 'addons'),
|
||||||
|
path.join(root_path, 'project', 'addons'),
|
||||||
|
dirs_exist_ok=True,
|
||||||
|
)
|
||||||
|
|
||||||
# Configure gdcef version for precompiled binaries
|
# Configure gdcef version for precompiled binaries
|
||||||
gdcef_build = path.join(root_path, 'project', 'addons', 'gdcef', 'build.py')
|
gdcef_build = path.join(root_path, 'project', 'addons', 'gdcef', 'build.py')
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue