cursor adventure: DONE ENOUGH
This commit is contained in:
parent
245e95db0d
commit
c0cb2f8169
1 changed files with 310 additions and 252 deletions
|
@ -54,7 +54,7 @@ const CursorImg = ({ cursor }: { cursor: Cursor }) => (
|
|||
/>
|
||||
);
|
||||
|
||||
const debug = true;
|
||||
const debug = false;
|
||||
const debug_style = debug
|
||||
? {
|
||||
border: "1px solid red",
|
||||
|
@ -116,6 +116,7 @@ const Section = ({
|
|||
);
|
||||
|
||||
render_and_copy(
|
||||
<>
|
||||
<Main
|
||||
style={{
|
||||
width: "100%",
|
||||
|
@ -129,35 +130,75 @@ render_and_copy(
|
|||
<Section
|
||||
cursor="down"
|
||||
start
|
||||
grid_area={{ row_start: 1, row_end: 2, col_start: 1, col_end: 3 }}
|
||||
grid_area={{
|
||||
row_start: 1,
|
||||
row_end: 2,
|
||||
col_start: 1,
|
||||
col_end: 3,
|
||||
}}
|
||||
/>
|
||||
<Section
|
||||
cursor="down"
|
||||
grid_area={{ row_start: 2, row_end: 13, col_start: 1, col_end: 3 }}
|
||||
grid_area={{
|
||||
row_start: 2,
|
||||
row_end: 13,
|
||||
col_start: 1,
|
||||
col_end: 3,
|
||||
}}
|
||||
/>
|
||||
<Section
|
||||
cursor="left"
|
||||
grid_area={{ row_start: 1, row_end: 13, col_start: 3, col_end: 5 }}
|
||||
grid_area={{
|
||||
row_start: 1,
|
||||
row_end: 13,
|
||||
col_start: 3,
|
||||
col_end: 5,
|
||||
}}
|
||||
/>
|
||||
<Section
|
||||
cursor="right"
|
||||
grid_area={{ row_start: 13, row_end: 15, col_start: 1, col_end: 5 }}
|
||||
grid_area={{
|
||||
row_start: 13,
|
||||
row_end: 15,
|
||||
col_start: 1,
|
||||
col_end: 5,
|
||||
}}
|
||||
/>
|
||||
<Section
|
||||
cursor="up_or_right"
|
||||
grid_area={{ row_start: 13, row_end: 15, col_start: 5, col_end: 7 }}
|
||||
grid_area={{
|
||||
row_start: 13,
|
||||
row_end: 15,
|
||||
col_start: 5,
|
||||
col_end: 7,
|
||||
}}
|
||||
/>
|
||||
<Section
|
||||
cursor="vriska_egg"
|
||||
grid_area={{ row_start: 1, row_end: 2, col_start: 5, col_end: 7 }}
|
||||
grid_area={{
|
||||
row_start: 1,
|
||||
row_end: 2,
|
||||
col_start: 5,
|
||||
col_end: 7,
|
||||
}}
|
||||
/>
|
||||
<Section
|
||||
cursor="right"
|
||||
grid_area={{ row_start: 2, row_end: 7, col_start: 5, col_end: 7 }}
|
||||
grid_area={{
|
||||
row_start: 2,
|
||||
row_end: 7,
|
||||
col_start: 5,
|
||||
col_end: 7,
|
||||
}}
|
||||
/>
|
||||
<Section
|
||||
cursor="up"
|
||||
grid_area={{ row_start: 7, row_end: 13, col_start: 5, col_end: 7 }}
|
||||
grid_area={{
|
||||
row_start: 7,
|
||||
row_end: 13,
|
||||
col_start: 5,
|
||||
col_end: 7,
|
||||
}}
|
||||
/>
|
||||
<Section
|
||||
cursor="right"
|
||||
|
@ -242,8 +283,13 @@ render_and_copy(
|
|||
/>
|
||||
<Section
|
||||
cursor="concept"
|
||||
link="TODO: DRAFT LINK"
|
||||
grid_area={{ row_start: 2, row_end: 3, col_start: 23, col_end: 24 }}
|
||||
link="https://cohost.org/mehbark/post/2555889-omg-you-found-the-se/7f3b03c592834a158a031cf7eb47f6c1"
|
||||
grid_area={{
|
||||
row_start: 2,
|
||||
row_end: 3,
|
||||
col_start: 23,
|
||||
col_end: 24,
|
||||
}}
|
||||
/>
|
||||
<Section
|
||||
cursor="left"
|
||||
|
@ -319,7 +365,7 @@ render_and_copy(
|
|||
/>
|
||||
<Section
|
||||
cursor="self_link"
|
||||
link="TODO: self link"
|
||||
link="https://cohost.org/mehbark/post/2555916-cursor-adventure-so"
|
||||
grid_area={{
|
||||
row_start: 9,
|
||||
row_end: 11,
|
||||
|
@ -365,7 +411,19 @@ render_and_copy(
|
|||
/>
|
||||
<Section
|
||||
link="https://static.pyrope.net/cursor-fun-end"
|
||||
grid_area={{ row_start: 4, row_end: 6, col_start: 18, col_end: 20 }}
|
||||
grid_area={{
|
||||
row_start: 4,
|
||||
row_end: 6,
|
||||
col_start: 18,
|
||||
col_end: 20,
|
||||
}}
|
||||
/>
|
||||
</Main>
|
||||
{debug && (
|
||||
<img
|
||||
src="https://static.pyrope.net/cursor-fun/concept.png"
|
||||
alt="a messy kolourpaint concept drawing that is roughly like the above"
|
||||
/>
|
||||
)}
|
||||
</>
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue