It was a university project/gamejam (closed gamejam for our class) to learn twine :)
Pedro Marques
25
Posts
26
Followers
11
Following
A member registered Dec 06, 2019 · View creator page →
Creator of
Dice Splice is a puzzle game where you have to match dice with their respective numbers
Puzzle
Play in browser
Recent community posts
The Bendy Strawmen Inc. Team Bonding Beach Volley Bonanza jam comments · Posted in The Bendy Strawmen Inc. Team Bonding Beach Volley Bonanza jam comments
Fantastic Beasts and how to save them comments · Replied to MrV3rdinsky in Fantastic Beasts and how to save them comments
Hi, I'm using SugarCube 2.3.
For the paragraphs, this link is really helpful https://twinery.org/forum/discussion/6383/how-to-make-slow-fade-in-text-on-sugarcube
To make the blinking links, I'm using a fade-in/fade-out animation on a:hover
@-webkit-keyframes fade-in-out
{
0%,
to {opacity: 1}
50% {opacity: 0}
}
@keyframes fade-in-out
{
0%,
to {opacity: 1}
50% {opacity: 0}
}