mirror of
https://github.com/aseprite/aseprite.git
synced 2025-01-18 19:19:10 +00:00
17 lines
565 B
Lua
17 lines
565 B
Lua
-- Copyright (C) 2018 Igara Studio S.A.
|
|
--
|
|
-- This file is released under the terms of the MIT license.
|
|
-- Read LICENSE.txt for more information.
|
|
|
|
local s = Sprite(32, 64)
|
|
assert(s == app.activeSprite)
|
|
assert(s == app.activeCel.sprite)
|
|
assert(s == app.activeFrame.sprite)
|
|
assert(1 == app.activeFrame.frameNumber)
|
|
assert(0.100 == app.activeFrame.duration) -- Default frame duration
|
|
|
|
-- TODO fix these tests when there is no UI
|
|
--app.command.NewFrame()
|
|
--assert(2 == app.activeFrame.frameNumber)
|
|
--assert(0.100 == app.activeFrame.duration) -- Default frame duration
|