mirror of
https://github.com/aseprite/aseprite.git
synced 2025-01-01 18:00:26 +00:00
Add Tag.color (related to https://github.com/aseprite/api/issues/24)
This commit is contained in:
parent
22c5c2d547
commit
e3d67e9765
@ -1,3 +1,4 @@
|
||||
-- Copyright (C) 2020 Igara Studio S.A.
|
||||
-- Copyright (C) 2018 David Capello
|
||||
--
|
||||
-- This file is released under the terms of the MIT license.
|
||||
@ -30,4 +31,8 @@ do
|
||||
assert(a.aniDir == AniDir.PING_PONG)
|
||||
a.aniDir = AniDir.FORWARD
|
||||
assert(a.aniDir == AniDir.FORWARD)
|
||||
|
||||
assert(a.color == Color(0, 0, 0))
|
||||
a.color = Color(255, 0, 0)
|
||||
assert(a.color == Color(255, 0, 0))
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user