Skip to content

Commit

Permalink
update slate[no ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Mar 8, 2024
1 parent 66ca73e commit e4b2f7f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10765,17 +10765,17 @@ <h3 id='ImGuiIO'>ImGuiIO</h3>
<tr>
<td></td>
<td><a href="https://github.com/spelunky-fyi/overlunky/search?l=Lua&amp;q=keydown">keydown</a></td>
<td>Returns true if key or chord (e.g `KEY.X \</td>
<td>Returns true if key or chord is down.<br/>bool keydown(<a href="#KEY">KEY</a> keychord)<br/>bool keydown(char key)<br/></td>
</tr>
<tr>
<td></td>
<td><a href="https://github.com/spelunky-fyi/overlunky/search?l=Lua&amp;q=keypressed">keypressed</a></td>
<td>Returns true if key or chord (e.g `KEY.X \</td>
<td>Returns true if key or chord was pressed this GUIFRAME.<br/>bool keypressed(<a href="#KEY">KEY</a> keychord, bool repeat = false)<br/>bool keypressed(char key, bool repeat = false)<br/></td>
</tr>
<tr>
<td></td>
<td><a href="https://github.com/spelunky-fyi/overlunky/search?l=Lua&amp;q=keyreleased">keyreleased</a></td>
<td>Returns true if key or chord (e.g `KEY.X \</td>
<td>Returns true if key or chord was released this GUIFRAME.<br/>bool keyreleased(<a href="#KEY">KEY</a> keychord)<br/>bool keyreleased(char key)<br/></td>
</tr>
<tr>
<td>bool</td>
Expand All @@ -10800,7 +10800,7 @@ <h3 id='ImGuiIO'>ImGuiIO</h3>
<tr>
<td></td>
<td><a href="https://github.com/spelunky-fyi/overlunky/search?l=Lua&amp;q=modifierdown">modifierdown</a></td>
<td>bool modifierdown(<a href="#KEY">KEY</a> keychord)<br/>Returns true if modifiers in chord (e.g. `KEY.OL_MOD_CTRL \</td>
<td>bool modifierdown(<a href="#KEY">KEY</a> keychord)<br/>Returns true if modifiers in chord are down, ignores other keys in chord.<br/></td>
</tr>
<tr>
<td></td>
Expand Down
8 changes: 4 additions & 4 deletions docs/light.html
Original file line number Diff line number Diff line change
Expand Up @@ -10765,17 +10765,17 @@ <h3 id='ImGuiIO'>ImGuiIO</h3>
<tr>
<td></td>
<td><a href="https://github.com/spelunky-fyi/overlunky/search?l=Lua&amp;q=keydown">keydown</a></td>
<td>Returns true if key or chord (e.g `KEY.X \</td>
<td>Returns true if key or chord is down.<br/>bool keydown(<a href="#KEY">KEY</a> keychord)<br/>bool keydown(char key)<br/></td>
</tr>
<tr>
<td></td>
<td><a href="https://github.com/spelunky-fyi/overlunky/search?l=Lua&amp;q=keypressed">keypressed</a></td>
<td>Returns true if key or chord (e.g `KEY.X \</td>
<td>Returns true if key or chord was pressed this GUIFRAME.<br/>bool keypressed(<a href="#KEY">KEY</a> keychord, bool repeat = false)<br/>bool keypressed(char key, bool repeat = false)<br/></td>
</tr>
<tr>
<td></td>
<td><a href="https://github.com/spelunky-fyi/overlunky/search?l=Lua&amp;q=keyreleased">keyreleased</a></td>
<td>Returns true if key or chord (e.g `KEY.X \</td>
<td>Returns true if key or chord was released this GUIFRAME.<br/>bool keyreleased(<a href="#KEY">KEY</a> keychord)<br/>bool keyreleased(char key)<br/></td>
</tr>
<tr>
<td>bool</td>
Expand All @@ -10800,7 +10800,7 @@ <h3 id='ImGuiIO'>ImGuiIO</h3>
<tr>
<td></td>
<td><a href="https://github.com/spelunky-fyi/overlunky/search?l=Lua&amp;q=modifierdown">modifierdown</a></td>
<td>bool modifierdown(<a href="#KEY">KEY</a> keychord)<br/>Returns true if modifiers in chord (e.g. `KEY.OL_MOD_CTRL \</td>
<td>bool modifierdown(<a href="#KEY">KEY</a> keychord)<br/>Returns true if modifiers in chord are down, ignores other keys in chord.<br/></td>
</tr>
<tr>
<td></td>
Expand Down
8 changes: 4 additions & 4 deletions docs/src/includes/_types.md
Original file line number Diff line number Diff line change
Expand Up @@ -1098,14 +1098,14 @@ Type | Name | Description
float | [framerate](https://github.com/spelunky-fyi/overlunky/search?l=Lua&q=framerate) |
| [wantkeyboard](https://github.com/spelunky-fyi/overlunky/search?l=Lua&q=wantkeyboard) | True if anyone else (i.e. some input box, OL hotkey) is already capturing keyboard or reacted to this keypress and you probably shouldn't.<br/>Set this to true every GUIFRAME while you want to capture keyboard and disable UI key bindings and game keys. Won't affect UI or game keys on this frame though, that train has already sailed. Also see [Bucket](#Bucket)::[Overlunky](#Overlunky) for other ways to override key bindings.<br/>Do not set this to false, unless you want the player input to bleed through input fields.<br/>
bool | [keys[ImGuiKey_COUNT]](https://github.com/spelunky-fyi/overlunky/search?l=Lua&q=keys) | ZeroIndexArray<bool> of currently held keys, indexed by [KEY](#KEY) <= 0xFF<br/>
| [keydown](https://github.com/spelunky-fyi/overlunky/search?l=Lua&q=keydown) | Returns true if key or chord (e.g `KEY.X \| KEY.OL_MOD_CTRL`) is down.<br/>bool keydown(KEY keychord)<br/>bool keydown(char key)<br/>
| [keypressed](https://github.com/spelunky-fyi/overlunky/search?l=Lua&q=keypressed) | Returns true if key or chord (e.g `KEY.X \| KEY.OL_MOD_CTRL`) was pressed this GUIFRAME.<br/>bool keypressed(KEY keychord, bool repeat = false)<br/>bool keypressed(char key, bool repeat = false)<br/>
| [keyreleased](https://github.com/spelunky-fyi/overlunky/search?l=Lua&q=keyreleased) | Returns true if key or chord (e.g `KEY.X \| KEY.OL_MOD_CTRL`) was released this GUIFRAME.<br/>bool keyreleased(KEY keychord)<br/>bool keyreleased(char key)<br/>
| [keydown](https://github.com/spelunky-fyi/overlunky/search?l=Lua&q=keydown) | Returns true if key or chord is down.<br/>bool keydown([KEY](#KEY) keychord)<br/>bool keydown(char key)<br/>
| [keypressed](https://github.com/spelunky-fyi/overlunky/search?l=Lua&q=keypressed) | Returns true if key or chord was pressed this GUIFRAME.<br/>bool keypressed([KEY](#KEY) keychord, bool repeat = false)<br/>bool keypressed(char key, bool repeat = false)<br/>
| [keyreleased](https://github.com/spelunky-fyi/overlunky/search?l=Lua&q=keyreleased) | Returns true if key or chord was released this GUIFRAME.<br/>bool keyreleased([KEY](#KEY) keychord)<br/>bool keyreleased(char key)<br/>
bool | [keyctrl](https://github.com/spelunky-fyi/overlunky/search?l=Lua&q=keyctrl) |
bool | [keyshift](https://github.com/spelunky-fyi/overlunky/search?l=Lua&q=keyshift) |
bool | [keyalt](https://github.com/spelunky-fyi/overlunky/search?l=Lua&q=keyalt) |
bool | [keysuper](https://github.com/spelunky-fyi/overlunky/search?l=Lua&q=keysuper) |
| [modifierdown](https://github.com/spelunky-fyi/overlunky/search?l=Lua&q=modifierdown) | bool modifierdown([KEY](#KEY) keychord)<br/>Returns true if modifiers in chord (e.g. `KEY.OL_MOD_CTRL \| KEY.OL_MOD_SHIFT \| KEY.OL_MOD_ALT`) are down, ignores other keys in chord.<br/>
| [modifierdown](https://github.com/spelunky-fyi/overlunky/search?l=Lua&q=modifierdown) | bool modifierdown([KEY](#KEY) keychord)<br/>Returns true if modifiers in chord are down, ignores other keys in chord.<br/>
| [wantmouse](https://github.com/spelunky-fyi/overlunky/search?l=Lua&q=wantmouse) | True if anyone else (i.e. hovering some window) is already capturing mouse and you probably shouldn't.<br/>Set this to true if you want to capture mouse and override UI mouse binding.<br/>
[Vec2](#Vec2) | [mousepos](https://github.com/spelunky-fyi/overlunky/search?l=Lua&q=mousepos) |
bool | [mousedown[5]](https://github.com/spelunky-fyi/overlunky/search?l=Lua&q=mousedown) |
Expand Down

0 comments on commit e4b2f7f

Please sign in to comment.