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.
|
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)
|