mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2025-07-12 14:15:45 +00:00
oops more bullshit
This commit is contained in:
parent
fc8aef32ce
commit
ca54b2a163
BIN
art/flashFiles/pico_killin_assets.fla
Normal file
BIN
art/flashFiles/pico_killin_assets.fla
Normal file
Binary file not shown.
BIN
art/flashFiles/pico_killin_assetss.fla
Normal file
BIN
art/flashFiles/pico_killin_assetss.fla
Normal file
Binary file not shown.
|
@ -40,4 +40,5 @@ updates each friday--on time every time
|
|||
shoutouts to mason--for da homies
|
||||
bonk--get in the discord call
|
||||
carpal tunnel--game design
|
||||
downscroll--i dont know what that is
|
||||
downscroll--i dont know what that is
|
||||
warning--choking hazard
|
|
@ -20,7 +20,12 @@ class Main extends Sprite
|
|||
var gameHeight:Int = 720; // Height of the game in pixels (might be less / more in actual pixels depending on your zoom).
|
||||
var initialState:Class<FlxState> = TitleState; // The FlxState the game starts with.
|
||||
var zoom:Float = -1; // If -1, zoom is automatically calculated to fit the window dimensions.
|
||||
#if web
|
||||
var framerate:Int = 60; // How many frames per second the game should run at.
|
||||
#else
|
||||
var framerate:Int = 144; // How many frames per second the game should run at.
|
||||
|
||||
#end
|
||||
var skipSplash:Bool = true; // Whether to skip the flixel splash screen that appears in release mode.
|
||||
var startFullscreen:Bool = false; // Whether to start the game in fullscreen on desktop targets
|
||||
|
||||
|
|
|
@ -15,6 +15,8 @@ class OptionsSubState extends MusicBeatSubstate
|
|||
|
||||
var grpOptionsTexts:FlxTypedGroup<FlxText>;
|
||||
|
||||
// public static var isDownscroll:Bool = false;
|
||||
|
||||
public function new()
|
||||
{
|
||||
super();
|
||||
|
|
|
@ -40,6 +40,8 @@ class TitleState extends MusicBeatState
|
|||
polymod.Polymod.init({modRoot: "mods", dirs: ['introMod'], framework: OPENFL});
|
||||
#end
|
||||
|
||||
FlxG.sound.muteKeys = [ZERO];
|
||||
|
||||
PlayerSettings.init();
|
||||
|
||||
curWacky = FlxG.random.getObject(getIntroTextShit());
|
||||
|
|
Loading…
Reference in a new issue