-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTableTop_SettlerOfCatan_Board.lua
62 lines (56 loc) · 1.47 KB
/
TableTop_SettlerOfCatan_Board.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
function onload()
self.createButton( {
click_function = 'createBoard',
function_owner = Global,
label = 'Start Game',
position = {-4.20, 0.6, -5.65},
width = 2250,
height = 600,
font_size = 350
} )
self.createButton( {
click_function = 'enableExtension',
function_owner = Global,
label = '3 - 4',
position = {-4.20, 0.6, -1.00},
width = 2250,
height = 600,
font_size = 350
} )
self.createButton( {
click_function = 'randomizeHarbors',
function_owner = Global,
label = 'Standard',
position = {4.20, 0.6, -5.65},
width = 2250,
height = 600,
font_size = 350
} )
self.createButton( {
click_function = 'randomizeChits',
function_owner = Global,
label = 'Standard',
position = {4.20, 0.6, -1.00},
width = 2250,
height = 600,
font_size = 350
} )
self.createButton( {
click_function = 'changeAutoVP',
function_owner = Global,
label = 'Enabled',
position = {4.20, 0.6, 3.50},
width = 2250,
height = 600,
font_size = 350
} )
self.createButton( {
click_function = 'beginnerSetup',
function_owner = Global,
label = 'Press for Beginner Setup',
position = {4.20, 0.6, -7.35},
width = 3000,
height = 400,
font_size = 250
} )
end