diff options
Diffstat (limited to '')
-rw-r--r-- | ClientHamr/GuiLua/test.skang | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ClientHamr/GuiLua/test.skang b/ClientHamr/GuiLua/test.skang index ebf5b53..a8ca105 100644 --- a/ClientHamr/GuiLua/test.skang +++ b/ClientHamr/GuiLua/test.skang | |||
@@ -6,9 +6,10 @@ | |||
6 | -- local other = require 'otherPackageName' | 6 | -- local other = require 'otherPackageName' |
7 | 7 | ||
8 | skang.clear() | 8 | skang.clear() |
9 | skang.window(500, 500, "G'day planet.") | 9 | local win = skang.window(500, 500, "G'day planet.", 'testWindow') |
10 | 10 | ||
11 | --quitter = skang.widget('button', 'Quit', 0.5, 0.5, 0.5, 0.5) | 11 | |
12 | skang.thingasm{win, 'quitter', 'Quits the skang window', types = 'widget', widget='"button", "Quit", 10, 10, 100, 50', required=true} | ||
12 | --quitter:action('quit') -- 'quit' is looked up in ThingSpace.commands, and translated into the Lua 'skang.quit()'. | 13 | --quitter:action('quit') -- 'quit' is looked up in ThingSpace.commands, and translated into the Lua 'skang.quit()'. |
13 | 14 | ||
14 | --other.foo = 'stuff' | 15 | --other.foo = 'stuff' |