mirror of https://github.com/teverse/teverse
Compare commits
No commits in common. "4e8e35c71bef13ba8563c9c5d427fa97237a3138" and "74fd6919971ddf545b8191fbcdc830723bef8c5d" have entirely different histories.
4e8e35c71b
...
74fd691997
|
@ -14,3 +14,16 @@ engine.networking:connected(function (serverId)
|
|||
require("tevgit:core/client/playerList.lua")
|
||||
--local characterController = require("tevgit:core/client/characterController.lua")
|
||||
end)
|
||||
|
||||
|
||||
spawnThread(function ()
|
||||
local gui = engine.construct("guiFrame", engine.interface, {
|
||||
size = guiCoord(0, 30, 0, 10),
|
||||
position = guiCoord(0.5, -15, 0, 5),
|
||||
borderRadius = 4
|
||||
})
|
||||
|
||||
while wait() do
|
||||
gui.backgroundColour = colour:random()
|
||||
end
|
||||
end)
|
|
@ -7,8 +7,8 @@
|
|||
require("tevgit:core/server/debug.lua")
|
||||
|
||||
local chat = require("tevgit:core/server/chat.lua")
|
||||
--wait(20)
|
||||
--require("tevgit:core/server/physicsTest.lua")
|
||||
wait(20)
|
||||
require("tevgit:core/server/physicsTest.lua")
|
||||
|
||||
--local char = require("tevgit:core/server/characterController.lua")
|
||||
|
||||
|
|
|
@ -1,8 +1 @@
|
|||
print("Hello Client!")
|
||||
|
||||
-- The game this is intended for has default scripts disabled,
|
||||
-- however: we want to load some core client code anyway
|
||||
|
||||
require("tevgit:core/client/debug.lua")
|
||||
require("tevgit:core/client/chat.lua")
|
||||
require("tevgit:core/client/playerList.lua")
|
||||
print("Hello Client!")
|
|
@ -1,7 +1 @@
|
|||
print("Hello Server!")
|
||||
|
||||
-- The game this is intended for has default scripts disabled,
|
||||
-- however: we want to load some core server code anyway
|
||||
|
||||
require("tevgit:core/server/debug.lua")
|
||||
require("tevgit:core/server/chat.lua")
|
||||
print("Hello Server!")
|
Loading…
Reference in New Issue