aseprite/scripts/save_file_command.lua
2022-06-13 19:17:05 -03:00

18 lines
468 B
Lua

-- Copyright (C) 2022 Igara Studio S.A.
--
-- This file is released under the terms of the MIT license.
-- Read LICENSE.txt for more information.
do
local spr = Sprite(32, 32)
spr.filename = "_test_a.png"
app.command.SaveFile()
assert(spr.filename == "_test_a.png")
app.command.SaveFileAs{ filename="_test_b.png" }
assert(spr.filename == "_test_b.png")
app.command.SaveFileCopyAs{ filename="_test_c.png" }
assert(spr.filename == "_test_b.png")
end