megalith/src/world/generation/feature/generation_feature.gd

10 lines
297 B
GDScript3
Raw Normal View History

2025-10-02 16:42:27 -06:00
class_name GenerationFeature extends Node3D
## Base class for world features generated during worldgen.
##
## Layers contain features. Some features may contain layers.
func probe() -> void:
# TODO may want to make low-detail & high-detail probes distinct
pass # Implemented in derived type.