Files
FNF-i486-Engine/source/NoteSplash.hx
JordanSantiagoYT f610476eb0 HUD Types!! (PLUS Impostor V4 Splashes)
added 4 different hud types for you to use, rn they only change the scoretxt and add a watermark (if using kade/dave and bambi hud)
2023-05-06 21:40:44 -04:00

69 lines
2.2 KiB
Haxe

package;
import flixel.FlxG;
import flixel.FlxSprite;
import flixel.graphics.frames.FlxAtlasFrames;
class NoteSplash extends FlxSprite
{
public var colorSwap:ColorSwap = null;
private var idleAnim:String;
private var textureLoaded:String = null;
public function new(x:Float = 0, y:Float = 0, ?note:Int = 0) {
super(x, y);
var skin:String = 'noteSplashes';
if(PlayState.SONG.splashSkin != null && PlayState.SONG.splashSkin.length > 0) skin = PlayState.SONG.splashSkin;
loadAnims(skin);
colorSwap = new ColorSwap();
shader = colorSwap.shader;
setupNoteSplash(x, y, note);
antialiasing = ClientPrefs.globalAntialiasing;
}
public function setupNoteSplash(x:Float, y:Float, note:Int = 0, texture:String = null, hueColor:Float = 0, satColor:Float = 0, brtColor:Float = 0) {
setPosition(x - Note.swagWidth * 0.95, y - Note.swagWidth);
alpha = 0.6;
if(texture == null) {
texture = 'noteSplashes';
if(PlayState.SONG.splashSkin != null && PlayState.SONG.splashSkin.length > 0) texture = PlayState.SONG.splashSkin;
}
if(texture == null && ClientPrefs.hudType == 'VS Impostor') {
texture = 'impostorNoteSplashes';
if(PlayState.SONG.splashSkin != null && PlayState.SONG.splashSkin.length > 0) texture = PlayState.SONG.splashSkin;
}
if(textureLoaded != texture) {
loadAnims(texture);
}
colorSwap.hue = hueColor;
colorSwap.saturation = satColor;
colorSwap.brightness = brtColor;
offset.set(10, 10);
var animNum:Int = FlxG.random.int(1, 2);
animation.play('note' + note + '-' + animNum, true);
if(animation.curAnim != null)animation.curAnim.frameRate = 24 + FlxG.random.int(-2, 2);
}
function loadAnims(skin:String) {
frames = Paths.getSparrowAtlas(skin);
for (i in 1...3) {
animation.addByPrefix("note1-" + i, "note splash blue " + i, 24, false);
animation.addByPrefix("note2-" + i, "note splash green " + i, 24, false);
animation.addByPrefix("note0-" + i, "note splash purple " + i, 24, false);
animation.addByPrefix("note3-" + i, "note splash red " + i, 24, false);
}
}
override function update(elapsed:Float) {
if(animation.curAnim != null)if(animation.curAnim.finished) kill();
super.update(elapsed);
}
}