Compare commits

...

3 Commits

Author SHA1 Message Date
teverse e91fad1555 remove char loader 2020-01-01 17:59:59 +00:00
teverse 4fd6375073 Cache test 2020-01-01 15:32:56 +00:00
teverse 2426c83bde Happy New Year! 2020-01-01 15:14:05 +00:00
23 changed files with 24 additions and 24 deletions

View File

@ -5,7 +5,7 @@ This repo contains open source components produced for Teverse.
# Copyright
Copyright (c) 2019 teverse.com
Copyright (c) 2020 teverse.com
# Acknowledgements
- sound/click.ogg sourced from http://soundbible.com/1705-Click2.html

View File

@ -1,5 +1,5 @@
--[[
Copyright 2019 Teverse
Copyright 2020 Teverse
@File core/client/cameraController.lua
@Author(s) Jay
--]]

View File

@ -1,5 +1,5 @@
--[[
Copyright 2019 Teverse
Copyright 2020 Teverse
@File core/client/characterController.lua
@Author(s) Jay
--]]

View File

@ -1,5 +1,5 @@
--[[
Copyright 2019 Teverse
Copyright 2020 Teverse
@File core/client/chat.lua
@Author(s) Jay
--]]

View File

@ -1,5 +1,5 @@
--[[
Copyright 2019 Teverse
Copyright 2020 Teverse
@File core/client/loader.lua
@Author(s) Jay
@Description Loads all open sourced components of the client.
@ -9,4 +9,4 @@ print("Loaded Client")
require("tevgit:core/client/debug.lua")
require("tevgit:core/client/chat.lua")
require("tevgit:core/client/playerList.lua")
--require("tevgit:core/client/characterController.lua")

View File

@ -1,5 +1,5 @@
--[[
Copyright 2019 Teverse
Copyright 2020 Teverse
@File core/client/playerList.lua
@Author(s) Jay
--]]

View File

@ -1,5 +1,5 @@
--[[
Copyright 2019 Teverse
Copyright 2020 Teverse
@File core/server/characterController.lua
@Author(s) Jay
--]]

View File

@ -1,5 +1,5 @@
--[[
Copyright 2019 Teverse
Copyright 2020 Teverse
@File core/server/chat.lua
@Author(s) Jay
--]]

View File

@ -1,5 +1,5 @@
--[[
Copyright 2019 Teverse
Copyright 2020 Teverse
@File core/server/loader.lua
@Author(s) Jay
@Description Loads all open sourced components of the server.

View File

@ -1,6 +1,6 @@
--[[
create.lua
Copyright (c) 2019 teverse.com
Copyright (c) 2020 teverse.com
This script is ran when the user loads create mode,
it is given workshop level sandboxing permissions.

View File

@ -1,4 +1,4 @@
-- Copyright (c) 2019 teverse.com
-- Copyright (c) 2020 teverse.com
local hotkeysController = {
bindings = {}

View File

@ -1,4 +1,4 @@
-- Copyright 2019 teverse.com
-- Copyright 2020 teverse.com
local cameraController = {
zoomStep = 3,

View File

@ -1,4 +1,4 @@
-- Copyright 2019 Teverse.com
-- Copyright 2020 Teverse.com
-- Used to share variables between scripts
-- shamelessly stolen from http://lua-users.org/wiki/SimpleRound

View File

@ -1,4 +1,4 @@
-- Copyright 2019 Teverse.com
-- Copyright 2020 Teverse.com
-- Tool Constants:
local toolName = "Hand"

View File

@ -1,4 +1,4 @@
-- Copyright 2019 Teverse.com
-- Copyright 2020 Teverse.com
-- This script is responsible for loading in the other sidetools
-- This is required by the UI system and the array returned is used to generate the sidebar

View File

@ -1,4 +1,4 @@
-- Copyright 2019 Teverse.com
-- Copyright 2020 Teverse.com
-- Tool Constants:
local toolName = "Move"

View File

@ -1,4 +1,4 @@
-- Copyright 2019 Teverse.com
-- Copyright 2020 Teverse.com
-- Tool Constants:
local toolName = "Rotate"

View File

@ -1,4 +1,4 @@
-- Copyright 2019 Teverse.com
-- Copyright 2020 Teverse.com
-- Tool Constants:
local toolName = "Scale"

View File

@ -1,4 +1,4 @@
-- Copyright 2019 Teverse.com
-- Copyright 2020 Teverse.com
-- Responsible for managing the aesthetics of different UI elements
local currentTheme = require("tevgit:workshop/controllers/ui/themes/default.lua")

View File

@ -1,4 +1,4 @@
-- Copyright 2019 Teverse.com
-- Copyright 2020 Teverse.com
-- This script includes shorcuts for creating UIs.
-- Any interface created here will be properly themed.

View File

@ -1,4 +1,4 @@
-- Copyright 2019 Teverse.com
-- Copyright 2020 Teverse.com
-- Responsible for creating the workshop interface
local shared = require("tevgit:workshop/controllers/shared.lua")

View File

@ -1,4 +1,4 @@
-- Copyright 2019 Teverse.com
-- Copyright 2020 Teverse.com
return {
primary = {

View File

@ -1,4 +1,4 @@
-- Copyright 2019 Teverse
-- Copyright 2020 Teverse
-- This script is required when workshop is loaded,
-- and engine.workshop is passed to the function returned.
-- e.g. require('tevgit:workshop/main.lua')(engine.workshop)