1
0
mirror of https://github.com/teverse/teverse synced 2025-08-25 15:44:46 +02:00

Compare commits

..

No commits in common. "e91fad155500e53aa50adb1f00144c97a23c6266" and "46fda8fe6555de4c4677e55a968ef878aa994882" have entirely different histories.

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
Copyright (c) 2020 teverse.com Copyright (c) 2019 teverse.com
# Acknowledgements # Acknowledgements
- sound/click.ogg sourced from http://soundbible.com/1705-Click2.html - sound/click.ogg sourced from http://soundbible.com/1705-Click2.html

View File

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

View File

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

View File

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

View File

@ -1,5 +1,5 @@
--[[ --[[
Copyright 2020 Teverse Copyright 2019 Teverse
@File core/client/loader.lua @File core/client/loader.lua
@Author(s) Jay @Author(s) Jay
@Description Loads all open sourced components of the client. @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/debug.lua")
require("tevgit:core/client/chat.lua") require("tevgit:core/client/chat.lua")
require("tevgit:core/client/playerList.lua") require("tevgit:core/client/playerList.lua")
--require("tevgit:core/client/characterController.lua")

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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