- [NEW] Ara es pot seleccionar el mapa a editar de un llistat, en compte de tindre que escriure el nom de l'arxiu a mà

- [WRK] Treballant en La Vella
This commit is contained in:
2025-05-30 13:50:49 +02:00
parent b15da3338e
commit 28f9851f00
7 changed files with 187 additions and 136 deletions

View File

@@ -1,6 +1,7 @@
require "menu"
require "mapa"
require "textbox"
require "fileselect"
editor={
paused=true,
@@ -17,7 +18,7 @@ editor={
show_menu=function()
menu.show({ {"NEW MAP", editor.new},
{"LOAD MAP", function() textbox.show("FILENAME TO LOAD:",editor.load, mapa.name) end},
{"LOAD MAP", function() fileselect.show("FILE TO LOAD:",editor.load, ".map") end},
{"SAVE MAP", function() if mapa.name~=nil then editor.save(mapa.name) else textbox.show("FILENAME TO SAVE:",editor.save, mapa.name) end end},
{editor.editing_front_layer and "DISABLE FRONT LAYER" or "ENABLE FRONT LAYER", editor.toggle_front_layer},
{"RESIZE MAP", editor.resize},