41 lines
515 B
GDScript
41 lines
515 B
GDScript
extends Sprite
|
|
|
|
enum Month {
|
|
JANUARY,
|
|
FEBRUARY,
|
|
MARCH,
|
|
APRIL,
|
|
MAY,
|
|
JUNE,
|
|
JULY,
|
|
AUGUST,
|
|
SEPTEMBER,
|
|
OCTOBER,
|
|
NOVEMBER,
|
|
DECEMBER,
|
|
}
|
|
|
|
enum Flower {
|
|
PINE,
|
|
PLUM_BLOSSOM,
|
|
CHERRY_BLOSSOM,
|
|
WISTERIA,
|
|
IRIS,
|
|
PEONY,
|
|
BUSH_CLOVER,
|
|
GRASS,
|
|
CHRYSANTHEMUM,
|
|
MAPLE,
|
|
WILLOW,
|
|
PAULOWNIA,
|
|
}
|
|
|
|
# Called when the node enters the scene tree for the first time.
|
|
func _ready():
|
|
pass # Replace with function body.
|
|
|
|
|
|
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
|
#func _process(delta):
|
|
# pass
|