more options yippeee!!
This commit is contained in:
parent
960c0277ae
commit
278cddcf22
5 changed files with 120 additions and 20 deletions
1
Tools.gd
1
Tools.gd
|
|
@ -3,6 +3,7 @@ extends Node
|
|||
func time_to_seconds(hours_value : int, minutes_value : int) -> int:
|
||||
var hour_seconds : int = hours_value * 60 * 60
|
||||
var minutes_seconds : int = minutes_value * 60
|
||||
#print(hour_seconds + minutes_seconds)
|
||||
return hour_seconds + minutes_seconds
|
||||
|
||||
func seconds_to_time(seconds : int) -> Dictionary:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue