mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-27 01:03:35 +00:00
website bullshit
This commit is contained in:
parent
2bfea2f38f
commit
8caaf2fcb1
33
docs/index.html
Normal file
33
docs/index.html
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
|
||||||
|
<!--
|
||||||
|
@brandybuizel
|
||||||
|
@ninja_muffin2.4
|
||||||
|
-->
|
||||||
|
|
||||||
|
<!--Let's get meta bois-->
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<title>Friday Night Funkin'</title>
|
||||||
|
<meta name="description" content="A rhythm game">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<!-- <link href="website/styles.css" rel="stylesheet" type="text/css"> -->
|
||||||
|
<!-- <link href="website/mm.ico" rel="icon" type="image/x-icon"> -->
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<!--Header-->
|
||||||
|
<header>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<marquee width="600" style="width: 800px;">Friday Night Funkin</marquee>
|
||||||
|
|
||||||
|
<!--Hot tortilla wrap-->
|
||||||
|
<div id="wrapper">
|
||||||
|
<!--Itch Widget-->
|
||||||
|
<iframe src="https://itch.io/embed/775903?linkback=true&bg_color=000000&fg_color=ffffff&link_color=6454f8&border_color=333333" width="552" height="167" frameborder="0"><a href="https://ninja-muffin24.itch.io/friday-night-funkin">Friday Night Funkin' (Ludum Dare Prototype) by ninjamuffin99</a></iframe>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -6,8 +6,17 @@ import flixel.group.FlxSpriteGroup;
|
||||||
|
|
||||||
using StringTools;
|
using StringTools;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Loosley based on FlxTypeText lolol
|
||||||
|
*/
|
||||||
class Alphabet extends FlxSpriteGroup
|
class Alphabet extends FlxSpriteGroup
|
||||||
{
|
{
|
||||||
|
public var delay:Float = 0.05;
|
||||||
|
public var paused:Bool = false;
|
||||||
|
|
||||||
|
var _finalText:String = "";
|
||||||
|
var _curText:String = "";
|
||||||
|
|
||||||
// custom shit
|
// custom shit
|
||||||
// amp, backslash, question mark, apostrophy, comma, angry faic, period
|
// amp, backslash, question mark, apostrophy, comma, angry faic, period
|
||||||
var lastSprite:AlphaCharacter;
|
var lastSprite:AlphaCharacter;
|
||||||
|
@ -16,6 +25,8 @@ class Alphabet extends FlxSpriteGroup
|
||||||
{
|
{
|
||||||
super(x, y);
|
super(x, y);
|
||||||
|
|
||||||
|
_finalText = text;
|
||||||
|
|
||||||
var arrayShit:Array<String> = text.split("");
|
var arrayShit:Array<String> = text.split("");
|
||||||
trace(arrayShit);
|
trace(arrayShit);
|
||||||
|
|
||||||
|
@ -46,6 +57,11 @@ class Alphabet extends FlxSpriteGroup
|
||||||
loopNum += 1;
|
loopNum += 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
override function update(elapsed:Float)
|
||||||
|
{
|
||||||
|
super.update(elapsed);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class AlphaCharacter extends FlxSprite
|
class AlphaCharacter extends FlxSprite
|
||||||
|
|
Loading…
Reference in a new issue