Compare commits
No commits in common. "9851343c8fcdf353989c067caeb6d962c7832176" and "182eabbcadff1ed3939f04a0485bf310ce558b61" have entirely different histories.
9851343c8f
...
182eabbcad
23
.vscode/settings.json
vendored
23
.vscode/settings.json
vendored
@ -1,23 +0,0 @@
|
|||||||
{
|
|
||||||
"workbench.colorCustomizations": {
|
|
||||||
"activityBar.activeBackground": "#65c89b",
|
|
||||||
"activityBar.background": "#65c89b",
|
|
||||||
"activityBar.foreground": "#15202b",
|
|
||||||
"activityBar.inactiveForeground": "#15202b99",
|
|
||||||
"activityBarBadge.background": "#945bc4",
|
|
||||||
"activityBarBadge.foreground": "#e7e7e7",
|
|
||||||
"commandCenter.border": "#15202b99",
|
|
||||||
"panel.border": "#65c89b",
|
|
||||||
"sash.hoverBorder": "#65c89b",
|
|
||||||
"statusBar.background": "#42b883",
|
|
||||||
"statusBar.foreground": "#15202b",
|
|
||||||
"statusBarItem.hoverBackground": "#359268",
|
|
||||||
"statusBarItem.remoteBackground": "#42b883",
|
|
||||||
"statusBarItem.remoteForeground": "#15202b",
|
|
||||||
"titleBar.activeBackground": "#42b883",
|
|
||||||
"titleBar.activeForeground": "#15202b",
|
|
||||||
"titleBar.inactiveBackground": "#42b88399",
|
|
||||||
"titleBar.inactiveForeground": "#15202b99"
|
|
||||||
},
|
|
||||||
"peacock.color": "#42b883"
|
|
||||||
}
|
|
@ -1,7 +1,3 @@
|
|||||||
# Vacation
|
# Pico8-template
|
||||||
|
|
||||||
18+ content -- kink themes.
|
Default template for Pico-8 projects.
|
||||||
|
|
||||||
A hypnotic Pico-8 game for [Strawberry Jam 8](https://itch.io/jam/strawberry-jam-8).
|
|
||||||
|
|
||||||
It's a one-button runner that hypnotizes you into being a pooltoy dolphin.
|
|
@ -2,7 +2,7 @@ pico-8 cartridge // http://www.pico-8.com
|
|||||||
version 41
|
version 41
|
||||||
__lua__
|
__lua__
|
||||||
|
|
||||||
-- vacation (18+)
|
-- rename me
|
||||||
-- kistaro windrider
|
-- kistaro windrider
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
@ -193,7 +193,7 @@ end
|
|||||||
-- draws opaque rectangles.
|
-- draws opaque rectangles.
|
||||||
-- default bg is equivalent to
|
-- default bg is equivalent to
|
||||||
-- clip-aware cls.
|
-- clip-aware cls.
|
||||||
-- restores prior fill pattern.
|
-- restores prior fill palette.
|
||||||
bg = {
|
bg = {
|
||||||
x=0,y=0,w=128,h=128,fp=0,c=0
|
x=0,y=0,w=128,h=128,fp=0,c=0
|
||||||
}
|
}
|
||||||
@ -221,35 +221,11 @@ function animator:update()
|
|||||||
self:strip(function(x) x:update() end)
|
self:strip(function(x) x:update() end)
|
||||||
end
|
end
|
||||||
|
|
||||||
-->8
|
function init()
|
||||||
-- setup and p8 entry points
|
|
||||||
|
|
||||||
function _init()
|
|
||||||
end
|
end
|
||||||
|
|
||||||
function _update()
|
function _update60()
|
||||||
end
|
end
|
||||||
|
|
||||||
function _draw()
|
function _draw()
|
||||||
end
|
end
|
||||||
|
|
||||||
-->8
|
|
||||||
-- text rendering
|
|
||||||
|
|
||||||
-->8
|
|
||||||
-- sprite rendering
|
|
||||||
|
|
||||||
-->8
|
|
||||||
-- consent screens
|
|
||||||
|
|
||||||
-->8
|
|
||||||
-- title screen
|
|
||||||
|
|
||||||
-->8
|
|
||||||
-- zonk mode
|
|
||||||
|
|
||||||
-->8
|
|
||||||
-- awakener
|
|
||||||
|
|
||||||
-->8
|
|
||||||
-- game mode
|
|
Loading…
Reference in New Issue
Block a user