mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-29 11:06:00 -05:00
Adjusted firing streak and angle.
This commit is contained in:
parent
fe9a319814
commit
2bef1cb88a
4 changed files with 21 additions and 15 deletions
7
.gitignore
vendored
7
.gitignore
vendored
|
@ -1,6 +1,7 @@
|
||||||
export/
|
.DS_STORE
|
||||||
|
.haxelib/
|
||||||
.vscode/
|
.vscode/
|
||||||
APIStuff.hx
|
APIStuff.hx
|
||||||
.DS_STORE
|
dump/
|
||||||
|
export/
|
||||||
RECOVER_*.fla
|
RECOVER_*.fla
|
||||||
.haxelib/
|
|
22
hmm.json
22
hmm.json
|
@ -11,14 +11,14 @@
|
||||||
"name": "flixel",
|
"name": "flixel",
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"dir": null,
|
"dir": null,
|
||||||
"ref": "75a2789",
|
"ref": "0f3ae2d",
|
||||||
"url": "https://github.com/haxeflixel/flixel"
|
"url": "https://github.com/haxeflixel/flixel"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "flixel-addons",
|
"name": "flixel-addons",
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"dir": null,
|
"dir": null,
|
||||||
"ref": "dev",
|
"ref": "a3877f0",
|
||||||
"url": "https://github.com/MasterEric/flixel-addons"
|
"url": "https://github.com/MasterEric/flixel-addons"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -30,7 +30,7 @@
|
||||||
"name": "flxanimate",
|
"name": "flxanimate",
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"dir": null,
|
"dir": null,
|
||||||
"ref": "90c44ca",
|
"ref": "18b2060",
|
||||||
"url": "https://github.com/Dot-Stuff/flxanimate"
|
"url": "https://github.com/Dot-Stuff/flxanimate"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -55,19 +55,23 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "lime",
|
"name": "lime",
|
||||||
"type": "haxelib",
|
"type": "git",
|
||||||
"version": "7.9.0"
|
"dir": null,
|
||||||
|
"ref": "770bf0e",
|
||||||
|
"url": "https://github.com/openfl/lime"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "openfl",
|
"name": "flixel-addons",
|
||||||
"type": "haxelib",
|
"type": "git",
|
||||||
"version": "9.1.0"
|
"dir": null,
|
||||||
|
"ref": "dev",
|
||||||
|
"url": "https://github.com/MasterEric/flixel-addons"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "polymod",
|
"name": "polymod",
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"dir": null,
|
"dir": null,
|
||||||
"ref": "bde0604",
|
"ref": "develop",
|
||||||
"url": "https://github.com/larsiusprime/polymod"
|
"url": "https://github.com/larsiusprime/polymod"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
"lineEnds": {
|
"lineEnds": {
|
||||||
"leftCurly": "both",
|
"leftCurly": "both",
|
||||||
"rightCurly": "both",
|
"rightCurly": "both",
|
||||||
|
"emptyCurly": "break",
|
||||||
"objectLiteralCurly": {
|
"objectLiteralCurly": {
|
||||||
"leftCurly": "after"
|
"leftCurly": "after"
|
||||||
}
|
}
|
||||||
|
|
|
@ -68,7 +68,7 @@ class PolymodHandler
|
||||||
// Framework being used to load assets.
|
// Framework being used to load assets.
|
||||||
framework: OPENFL,
|
framework: OPENFL,
|
||||||
// The current version of our API.
|
// The current version of our API.
|
||||||
apiVersion: API_VERSION,
|
apiVersionRule: API_VERSION,
|
||||||
// Call this function any time an error occurs.
|
// Call this function any time an error occurs.
|
||||||
errorCallback: PolymodErrorHandler.onPolymodError,
|
errorCallback: PolymodErrorHandler.onPolymodError,
|
||||||
// Enforce semantic version patterns for each mod.
|
// Enforce semantic version patterns for each mod.
|
||||||
|
@ -166,7 +166,7 @@ class PolymodHandler
|
||||||
public static function getAllMods():Array<ModMetadata>
|
public static function getAllMods():Array<ModMetadata>
|
||||||
{
|
{
|
||||||
trace('Scanning the mods folder...');
|
trace('Scanning the mods folder...');
|
||||||
var modMetadata = Polymod.scan(MOD_FOLDER);
|
var modMetadata = Polymod.scan();
|
||||||
trace('Found ${modMetadata.length} mods when scanning.');
|
trace('Found ${modMetadata.length} mods when scanning.');
|
||||||
return modMetadata;
|
return modMetadata;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue