Moved Scripts to proper place

This commit is contained in:
Willow Behar
2024-05-13 18:16:36 -05:00
parent 0cd8413a19
commit 724c66ba9d
4 changed files with 2 additions and 2 deletions

View File

@ -0,0 +1,27 @@
extends SpotLight3D
var Power = 0.0
var MaxPow = 10
var is_vaping = false
func _ready():
light_energy = 0
func _process(delta):
if is_vaping:
if light_energy < MaxPow:
light_energy += 1 * delta
else:
if light_energy > 0:
light_energy -= .1
if light_energy <= 0:
hide()
if light_energy > 0:
show()
func on():
is_vaping = true
func off():
is_vaping = false