You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
310 B
GDScript
7 lines
310 B
GDScript
extends Node
|
|
func _init():
|
|
var saveinit = Global.levelmax[0]+","+Global.levelmax[1]+","+Global.levelmax[2]+","+Global.levelmax[3]+","+Global.levelmax[4]+","+Global.levelmax[5]+","+Global.levelmax[6]
|
|
var file = FileAccess.open(Global.hiscoresfile, FileAccess.WRITE)
|
|
file.store_string(saveinit)
|
|
file.close()
|