-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.lua
62 lines (35 loc) · 1.04 KB
/
example.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
Dummy = class( nil )
Dummy.maxChildCount = -1
Dummy.maxParentCount = 1
Dummy.connectionInput = sm.interactable.connectionType.logic
Dummy.connectionOutput = 0
Dummy.colorNormal = sm.color.new( 0xcb0a00ff )
Dummy.colorHighlight = sm.color.new( 0xee0a00ff )
Dummy.poseWeightCount = 1
function Dummy.server_onCreate(self, dt)
end
function Dummy.server_onFixedUpdate(self, dt)
end
function Dummy.client_onInteract(self)
if(sm.ffi)
then
sm.ffi.C.MessageBoxA(nil, "Hello world!", "Test", 0)
end
end
function Dummy.server_changemode(self)
end
function Dummy.server_onProjectile(self, position, timee, velocity, type )
end
-- (Event) Called upon getting hit by a sledgehammer.
function Dummy.server_onSledgehammer( self, hitPos, player )
end
-- (Event) Called upon collision with an explosion nearby
function Dummy.server_onExplosion( self, center, destructionLevel )
end
function Dummy.client_onCreate( self )
end
function Dummy.client_onFixedUpdate(self, dt)
if(sm.ffi.C.GetKeyState(79)==65409)then
sm.gui.chatMessage("O key is pressed")
end
end