-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
commit 81e0956 Author: Kleber Garcia <[email protected]> Date: Sat Aug 12 23:21:24 2023 -0400 Tutorial, and more apis for imgui commit 6536ef9 Author: Kleber Garcia <[email protected]> Date: Sun Aug 6 21:27:45 2023 -0400 Improving docs commit 721dcce Author: Kleber Garcia <[email protected]> Date: Sun Aug 6 20:37:09 2023 -0400 Tutorial layout commit 49c791e Author: Kleber Garcia <[email protected]> Date: Sun Aug 6 20:12:43 2023 -0400 Initial tutorial files commit 0523b0d Author: Kleber Garcia <[email protected]> Date: Sat Jul 29 19:51:41 2023 -0400 ignore generated files from jekyll site commit fb46627 Author: Kleber Garcia <[email protected]> Date: Sat Jul 29 19:49:59 2023 -0400 Gemfiles of site
- Loading branch information
Showing
28 changed files
with
1,211 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,4 @@ t2-output | |
tags | ||
imgui.ini | ||
.shader_pdb | ||
|
||
docs/_site/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,21 @@ | ||
COALPY_FN(save, saveSettings, R"( | ||
Saves settings to a file. | ||
Saves settings to a json file. | ||
Parameters: | ||
filename (optional): optional name of the device. | ||
filename (optional): optional name of the file. Ensure to include the .json extension if specified. | ||
If not used, default settings are saved in ".coalpy_settings.json" | ||
which is the default settings read at module boot. | ||
Returns: | ||
True if successful, False if it failed. | ||
)") | ||
|
||
COALPY_FN(load, loadSettings, R"( | ||
Load settings from a json file. | ||
Parameters: | ||
filename: name of the file to load. | ||
Returns: | ||
True if successful, False if it failed. | ||
)") | ||
|
||
#undef COALPY_FN |
Oops, something went wrong.