You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
211 B
GDScript

extends FogVolume
@export var visible_height_offset := 0.0
func _process(_delta):
var camera = get_viewport().get_camera_3d()
if camera:
visible = camera.position.y < (position.y + visible_height_offset)