Moved Scripts to proper place
This commit is contained in:
27
Assets/scripts/vapelight.gd
Normal file
27
Assets/scripts/vapelight.gd
Normal 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
|
||||
|
||||
Reference in New Issue
Block a user