Skip to content

Commit 6b85cbf

Browse files
committed
refac: move to single terrain system based on cdlod
1 parent b2193db commit 6b85cbf

File tree

13 files changed

+2117
-643
lines changed

13 files changed

+2117
-643
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -191,8 +191,8 @@ jobs:
191191
if not exist ../out/pl_dxt_ext.dll exit 1
192192
if not exist ../out/pl_material_ext.dll exit 1
193193
if not exist ../out/pl_script_ext.dll exit 1
194-
if not exist ../out/pl_geoclipmap_ext.dll exit 1
195-
if not exist ../out/pl_cdlod_ext.dll exit 1
194+
if not exist ../out/pl_terrain_ext.dll exit 1
195+
if not exist ../out/pl_terrain_processor_ext.dll exit 1
196196
if not exist ../out/pl_freelist_ext.dll exit 1
197197
cd ..
198198
@@ -402,8 +402,8 @@ jobs:
402402
test -f ./out/pl_dxt_ext.dylib || exit 1
403403
test -f ./out/pl_material_ext.dylib || exit 1
404404
test -f ./out/pl_script_ext.dylib || exit 1
405-
test -f ./out/pl_geoclipmap_ext.dylib || exit 1
406-
test -f ./out/pl_cdlod_ext.dylib || exit 1
405+
test -f ./out/pl_terrain_ext.dylib || exit 1
406+
test -f ./out/pl_terrain_processor_ext.dylib || exit 1
407407
test -f ./out/pl_freelist_ext.dylib || exit 1
408408
409409
- name: Package Pilot Light
@@ -624,8 +624,8 @@ jobs:
624624
test -f ./out/pl_dxt_ext.so || exit 1
625625
test -f ./out/pl_material_ext.so || exit 1
626626
test -f ./out/pl_script_ext.so || exit 1
627-
test -f ./out/pl_geoclipmap_ext.so || exit 1
628-
test -f ./out/pl_cdlod_ext.so || exit 1
627+
test -f ./out/pl_terrain_ext.so || exit 1
628+
test -f ./out/pl_terrain_processor_ext.so || exit 1
629629
test -f ./out/pl_freelist_ext.so || exit 1
630630
631631
- name: Package Pilot Light

docs/version.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,6 @@ the API is complete. It just means we won't break what currently exists.
103103
* Dear ImGui v0.1.0 (pl_dear_imgui_ext.h)
104104
* Animation v0.1.0 (pl_animation_ext.h)
105105
* Material v0.1.0 (pl_material_ext.h)
106-
* Clipmap Terrain v0.1.0 (pl_geoclipmap_ext.h)
107-
* CDLOD Terrain v0.1.0 (pl_cdlod_ext.h)
106+
* Terrain v0.1.0 (pl_terrain_ext.h)
107+
* Terrain Processor v0.1.0 (pl_terrain_processor_ext.h)
108108
* Free List v0.1.0 (pl_freelist_ext.h)

0 commit comments

Comments
 (0)