Some updates

This commit is contained in:
Robert Jelic
2022-08-28 20:25:42 +02:00
parent 4d614372a1
commit 18601d54f7
11 changed files with 141 additions and 8 deletions

View File

@@ -17,4 +17,31 @@ function buttonOnClick()
basalt.debug("Button got clicked!")
end
button:onClick(buttonOnClick)
```
Here is also a example on how you could create double clicks:
```lua
local basalt = require("basalt")
local doubleClickMaxTime = 0.25 -- in seconds
local main = basalt.createFrame()
local button = main:addButton()
local function createDoubleClick(btn, func) -- here we create a function where we can pass buttons (or other object if you'd like to) and a function which will get called by double clicking.
local doubleClick = 0
btn:onClick(function()
if(os.epoch("local")-doubleClickMaxTime*1000<=doubleClick)then
func()
end
doubleClick = os.epoch("local")
end)
end
local function debugSomething()
basalt.debug("hello")
end
createDoubleClick(button, debugSomething) -- this is how you will create a double click.
basalt.autoUpdate()
```