Compare commits
4 Commits
feature/gl
...
5a0c8ef19d
| Author | SHA1 | Date | |
|---|---|---|---|
| 5a0c8ef19d | |||
| 1c25a077a5 | |||
| fd983dd6e1 | |||
| 220ca27128 |
@@ -5,6 +5,7 @@ globals = {
|
||||
"Focus",
|
||||
"Day",
|
||||
"Timer",
|
||||
"Glitch",
|
||||
"Trigger",
|
||||
"Util",
|
||||
"Decision",
|
||||
@@ -31,6 +32,7 @@ globals = {
|
||||
"MinigameRhythmWindow",
|
||||
"MinigameDDRWindow",
|
||||
"MysteriousManWindow",
|
||||
"EndWindow",
|
||||
"mset",
|
||||
"mget",
|
||||
"btnp",
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
--- @section Glitch
|
||||
Glitch = {}
|
||||
|
||||
--- Shows the glitch effect.
|
||||
@@ -35,7 +36,7 @@ function Glitch.draw()
|
||||
|
||||
-- Draw stripes only when active
|
||||
if Context.glitch.state == "active" then
|
||||
for i = 1, 15 do
|
||||
for _ = 1, 15 do
|
||||
local rx = math.random(0, Config.screen.width - 1)
|
||||
local ry = math.random(0, Config.screen.height - 1)
|
||||
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
-- title: Definitely not an Impostor
|
||||
-- name: impostor
|
||||
-- author: Teletype Games
|
||||
-- desc: Life of a programmer in the Vector
|
||||
-- desc: Life of a programmer
|
||||
-- site: https://git.teletype.hu/games/impostor
|
||||
-- license: MIT License
|
||||
-- version: 0.1
|
||||
-- version: 0.8
|
||||
-- script: lua
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
--- @section EndWindow
|
||||
|
||||
--- Draws the end screen window.
|
||||
--- @within EndWindow
|
||||
function EndWindow.draw()
|
||||
|
||||
Reference in New Issue
Block a user