Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Baekalfen committed Oct 29, 2023
1 parent 0a37b58 commit 4c7ee59
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@ <h2 id="args">Args</h2>
<h2 id="kwargs">Kwargs</h2>
<p>bootrom_file (str): Filepath to a boot-ROM to use. If unsure, specify <code>None</code>.
disable_renderer (bool): Can be used to optimize performance, by internally disable rendering of the screen.
color_palette (tuple): Specify the color palette to use for rendering.</p>
color_palette (tuple): Specify the color palette to use for rendering.
cgb_color_palette (list of tuple): Specify the color palette to use for rendering in CGB-mode for non-color games.</p>
<p>Other keyword arguments may exist for plugins that are not listed here. They can be viewed with the
<code>parser_arguments()</code> method in the pyboy.plugins.manager module, or by running pyboy &ndash;help in the terminal.</p></section>
<details class="source">
Expand Down Expand Up @@ -129,6 +130,7 @@ <h2 id="kwargs">Kwargs</h2>
bootrom_file (str): Filepath to a boot-ROM to use. If unsure, specify `None`.
disable_renderer (bool): Can be used to optimize performance, by internally disable rendering of the screen.
color_palette (tuple): Specify the color palette to use for rendering.
cgb_color_palette (list of tuple): Specify the color palette to use for rendering in CGB-mode for non-color games.

Other keyword arguments may exist for plugins that are not listed here. They can be viewed with the
`parser_arguments()` method in the pyboy.plugins.manager module, or by running pyboy --help in the terminal.
Expand All @@ -148,6 +150,7 @@ <h2 id="kwargs">Kwargs</h2>
gamerom_file,
bootrom_file or kwargs.get(&#34;bootrom&#34;), # Our current way to provide cli arguments is broken
kwargs[&#34;color_palette&#34;],
kwargs[&#34;cgb_color_palette&#34;],
disable_renderer,
sound,
sound_emulated,
Expand Down

0 comments on commit 4c7ee59

Please sign in to comment.