generated from krampus/template-godot4
10 lines
297 B
GDScript3
10 lines
297 B
GDScript3
|
|
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.
|