claude godot 4 port
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
extends Resource
|
||||
class_name Alarm
|
||||
|
||||
export(bool) var active = true # Alarm on or off
|
||||
export(Resource) var moment = Moment.new() # Time when its supposed to go off
|
||||
export(bool) var snooze = true # If alarm is snoozable
|
||||
@export var active: bool = true # Alarm on or off
|
||||
@export var moment: Resource = Moment.new() # Time when its supposed to go off
|
||||
@export var snooze: bool = true # If alarm is snoozable
|
||||
|
||||
export(bool) var speak_time := true
|
||||
export(bool) var play_music := true
|
||||
export(bool) var override_weather_music = false
|
||||
export(Constants.WEATHER) var weather_music = Constants.WEATHER.SUNNY
|
||||
@export var speak_time: bool = true
|
||||
@export var play_music: bool = true
|
||||
@export var override_weather_music: bool = false
|
||||
@export var weather_music: Constants.WEATHER = Constants.WEATHER.SUNNY
|
||||
|
||||
Reference in New Issue
Block a user