From cd36317defbeb144276e3f821d42ef97bcfcf4af Mon Sep 17 00:00:00 2001 From: Robert Jelic <36573031+NoryiE@users.noreply.github.com> Date: Thu, 19 May 2022 20:33:39 +0200 Subject: [PATCH 1/4] Created Pane (markdown) --- Pane.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 Pane.md diff --git a/Pane.md b/Pane.md new file mode 100644 index 0000000..62b7e0a --- /dev/null +++ b/Pane.md @@ -0,0 +1 @@ +wip \ No newline at end of file From c1983924caebd73bcc757bbd24c0cf83860fa868 Mon Sep 17 00:00:00 2001 From: Robert Jelic <36573031+NoryiE@users.noreply.github.com> Date: Thu, 19 May 2022 21:25:44 +0200 Subject: [PATCH 2/4] Updated Pane (markdown) --- Pane.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Pane.md b/Pane.md index 62b7e0a..89d1f4b 100644 --- a/Pane.md +++ b/Pane.md @@ -1 +1,7 @@ -wip \ No newline at end of file +Panes are very simple sizeable background objects. + +The following list is only available to panes:
+Remember pane also inherits from [object](https://github.com/NoryiE/basalt/wiki/Object): + +Pane doesn't have any custom functionallity. If you want to change the color/position or size, just check out the [object](https://github.com/NoryiE/basalt/wiki/Object) wikipage. +```` \ No newline at end of file From 4de679045ecb3a8288c3be6f84d89b694f2db2e4 Mon Sep 17 00:00:00 2001 From: Robert Jelic <36573031+NoryiE@users.noreply.github.com> Date: Thu, 19 May 2022 21:25:50 +0200 Subject: [PATCH 3/4] Updated Pane (markdown) --- Pane.md | 1 - 1 file changed, 1 deletion(-) diff --git a/Pane.md b/Pane.md index 89d1f4b..ac97aa7 100644 --- a/Pane.md +++ b/Pane.md @@ -4,4 +4,3 @@ The following list is only available to panes:
Remember pane also inherits from [object](https://github.com/NoryiE/basalt/wiki/Object): Pane doesn't have any custom functionallity. If you want to change the color/position or size, just check out the [object](https://github.com/NoryiE/basalt/wiki/Object) wikipage. -```` \ No newline at end of file From e2b1cca403b86c27a95a83d78f784c7df8a53dba Mon Sep 17 00:00:00 2001 From: Robert Jelic <36573031+NoryiE@users.noreply.github.com> Date: Thu, 19 May 2022 22:01:57 +0200 Subject: [PATCH 4/4] Updated Button (markdown) --- Button.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Button.md b/Button.md index 0d39857..29f4b7c 100644 --- a/Button.md +++ b/Button.md @@ -9,7 +9,7 @@ Sets the displayed button text local mainFrame = basalt.createFrame("myFirstFrame"):show() local aButton = mainFrame:addButton("myFirstButton"):setText("Click"):show() -- you could also use :setValue() instead of :setText() - no difference ```` -**parameters:** string text
+**Arguments:** string text
**returns:** self
# Examples