Updated Home (markdown)

Kevin Harrison 2016-12-03 14:04:35 -05:00
parent 887db86830
commit b9a864b83e

@ -25,9 +25,9 @@ function love.load()
end end
function love.update(dt) function love.update(dt)
nk.frame_begin() nk.frameBegin()
-- Add UI code here -- Add UI code here
nk.frame_end() nk.frameEnd()
end end
function love.draw() function love.draw()
@ -77,7 +77,7 @@ function love.wheelmoved(x, y)
end end
``` ```
Put your UI code between the `nk.frame_begin` and `nk.frame_end` calls. See the bundled [example](https://github.com/keharriso/love-nuklear/tree/master/example) for a brief sample of what the library can do. Put your UI code between the `nk.frameBegin` and `nk.frameEnd` calls. See the bundled [example](https://github.com/keharriso/love-nuklear/tree/master/example) for a brief sample of what the library can do.
## Documentation ## Documentation