From 936c072b0efbddb0376891f0406d784e780813f0 Mon Sep 17 00:00:00 2001
From: realtradam
Date: Thu, 24 Feb 2022 14:37:33 -0500
Subject: :)
---
index.html | 23 +++++++++++++++++++++++
stylesheet/style.css | 8 ++++++++
2 files changed, 31 insertions(+)
diff --git a/index.html b/index.html
index 14b2f7c..54b3065 100644
--- a/index.html
+++ b/index.html
@@ -34,6 +34,29 @@ All controls are fully explained in game.
Utilized multiple custom in-house made tools which allowed for more efficient development speed and better code organization(Used MRuby-Raylib and FelECS).
One of 41 submissions in the Raylib 5K Gamejam, our game won first place both by popular vote and judge's vote.
+
+My Contributions:
+
+
+- Level transition animation system
+- Level "Scissor"(or Box) pathing system
+
+
+- Multiple paths can be chained together using any arbitrary equation(linear, quadratic, bezier, etc)
+- The size of the "Scissor"(or Box) also follows a chain of multiple arbitrary equations(linear, quadratic, bezier, etc)
+- Having textures/text appear or disappear after the Scissor has passed over a given location
+
+- How a given level is stored in code(before it is loaded)
+- Character animation
+
+
+- Character turning around
+- Tying running animation speed to character speed
+- Character Death Animation
+
+- Level design(First Level and Maze (3rd)level)
+- Input system and movement mechanics
+
May 2021 -
diff --git a/stylesheet/style.css b/stylesheet/style.css
index 5ad62a1..7e3bb7c 100644
--- a/stylesheet/style.css
+++ b/stylesheet/style.css
@@ -881,6 +881,14 @@ Ensure the default browser behavior of the `hidden` attribute.
transition-duration: 150ms;
}
+.transition {
+ transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
+ transition-duration: 150ms;
+}
+
@font-face {
font-family: 'Asul';
--
cgit v1.2.3