FrameRender
From OxeyeWiki
(Difference between revisions)
Thewreck (Talk | contribs)
(Created page with '{{EngineHook| frameRender | This hook is called everytime the game is rendered. No changes to the game should be made during this call, thus, no time variable is included. | {{No...')
(Created page with '{{EngineHook| frameRender | This hook is called everytime the game is rendered. No changes to the game should be made during this call, thus, no time variable is included. | {{No...')
Latest revision as of 12:39, 19 January 2010
|
frameRender | ||
|
This hook is called everytime the game is rendered. No changes to the game should be made during this call, thus, no time variable is included. | ||
| Parameter | Type | Description |
| No parameters | ||
| Daisymoon Video Lib |
|---|
Example
local function renderMyGame()
end
hook.add("frameRender", renderMyGame)