Floatbot assets added, and nodetunnel being implemented.

This commit is contained in:
2026-02-03 06:59:07 -05:00
parent b90fdaad98
commit e7570c78c3
105 changed files with 14184 additions and 5 deletions

View File

@@ -0,0 +1,12 @@
@tool
extends OmniLight3D
class_name VFX_Light
@export var base_energy : float = 2.0:
set(value):
base_energy = value
light_energy = base_energy * light_multiplier
@export_range(0.0,1.0,0.01) var light_multiplier : float = 1.0:
set(value):
light_multiplier = value
light_energy = base_energy * light_multiplier