- [NEW] Actualitzat per a usar l'última versió de mini (v1.3.10)

This commit is contained in:
2025-11-11 11:23:21 +01:00
parent 447f5bfdb7
commit 5f05f6e568
3 changed files with 20 additions and 20 deletions

View File

@@ -58,13 +58,13 @@ editor={
toggle_front_layer=function()
if editor.editing_front_layer then
map.set(mapa.surface)
map.surf(mapa.surface)
editor.editing_front_layer=false;
else
if not mapa.front_layer then
mapa.front_layer=surf.new(mapa.w,mapa.h)
editor.editing_front_layer=true
map.set(mapa.front_layer)
map.surf(mapa.front_layer)
for y=0,mapa.h-1 do
for x=0,mapa.w-1 do
map.tile(x,y,0)
@@ -72,7 +72,7 @@ editor={
end
else
editor.editing_front_layer=true
map.set(mapa.front_layer)
map.surf(mapa.front_layer)
end
end
editor.paused=false
@@ -95,14 +95,14 @@ editor={
mapa.surface=surf.new(mapa.w,mapa.h)
for y=0,mapa.h-1 do
for x=0,mapa.w-1 do
map.set(old_surface)
map.surf(old_surface)
local value=map.tile(x,y)
map.set(mapa.surface)
map.surf(mapa.surface)
map.tile(x,y,value)
end
end
surf.free(old_surface)
map.set(mapa.surface)
map.surf(mapa.surface)
editor.paused=false
end,
@@ -175,19 +175,19 @@ editor={
update=function()
surf.cls()
view.origin(editor.cam.x, editor.cam.y)
view.origin(-editor.cam.x, -editor.cam.y)
surf.source(tiles)
map.set(mapa.surface)
map.surf(mapa.surface)
map.draw() --map(0,0,0,0,mapa.w, mapa.h)
if mapa.front_layer then
map.set(mapa.front_layer)
map.surf(mapa.front_layer)
map.draw() --map(0,0,0,0,mapa.w, mapa.h)
end
if editor.editing_front_layer then
map.set(mapa.front_layer)
map.surf(mapa.front_layer)
text("EDITING FRONT LAYER",12,2,10)
else
map.set(mapa.surface)
map.surf(mapa.surface)
end
local mx,my=mouse.pos()
local tx,ty=(mx+editor.cam.x)>>3,(my+editor.cam.y)>>3