touchable dummy bubbling and capturing flags

This commit is contained in:
2020-02-02 08:55:44 +07:00
parent 2282ef6477
commit 50eb779685
4 changed files with 100 additions and 3 deletions

View File

@@ -10,7 +10,13 @@ local touchable = {
touched = false,
---@type boolean
under_mouse = false
under_mouse = false,
---@type boolean
bubbling = true,
---@type boolean
capturing = true
}
---@overload fun(self: touchable)