Compare commits

..

4 Commits

Author SHA1 Message Date
5a0c8ef19d set version to 0.8
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2026-03-12 07:52:42 +01:00
1c25a077a5 lint fixes
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2026-03-12 07:49:36 +01:00
fd983dd6e1 doc fixes
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2026-03-12 07:42:11 +01:00
220ca27128 Merge pull request 'glitch' (#32) from feature/glitch into master
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Reviewed-on: http://git.teletype.hu/games/impostor/pulls/32
2026-03-11 23:59:18 +00:00
4 changed files with 11 additions and 6 deletions

View File

@@ -5,6 +5,7 @@ globals = {
"Focus", "Focus",
"Day", "Day",
"Timer", "Timer",
"Glitch",
"Trigger", "Trigger",
"Util", "Util",
"Decision", "Decision",
@@ -31,6 +32,7 @@ globals = {
"MinigameRhythmWindow", "MinigameRhythmWindow",
"MinigameDDRWindow", "MinigameDDRWindow",
"MysteriousManWindow", "MysteriousManWindow",
"EndWindow",
"mset", "mset",
"mget", "mget",
"btnp", "btnp",

View File

@@ -1,3 +1,4 @@
--- @section Glitch
Glitch = {} Glitch = {}
--- Shows the glitch effect. --- Shows the glitch effect.
@@ -35,7 +36,7 @@ function Glitch.draw()
-- Draw stripes only when active -- Draw stripes only when active
if Context.glitch.state == "active" then 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 rx = math.random(0, Config.screen.width - 1)
local ry = math.random(0, Config.screen.height - 1) local ry = math.random(0, Config.screen.height - 1)

View File

@@ -1,8 +1,8 @@
-- title: Definitely not an Impostor -- title: Definitely not an Impostor
-- name: impostor -- name: impostor
-- author: Teletype Games -- author: Teletype Games
-- desc: Life of a programmer in the Vector -- desc: Life of a programmer
-- site: https://git.teletype.hu/games/impostor -- site: https://git.teletype.hu/games/impostor
-- license: MIT License -- license: MIT License
-- version: 0.1 -- version: 0.8
-- script: lua -- script: lua

View File

@@ -1,3 +1,5 @@
--- @section EndWindow
--- Draws the end screen window. --- Draws the end screen window.
--- @within EndWindow --- @within EndWindow
function EndWindow.draw() function EndWindow.draw()