-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
also btw i moved to haxe 4.3.3 just to get this working, im very stupid like some of you guys story of underlate
- Loading branch information
1 parent
dce6708
commit 8ba492e
Showing
25 changed files
with
532 additions
and
578 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,24 @@ | ||
package backend; | ||
|
||
typedef SwagSection = | ||
{ | ||
typedef SwagSection = { | ||
var sectionNotes:Array<Dynamic>; | ||
var sectionBeats:Float; | ||
var typeOfSection:Int; | ||
//var typeOfSection:Int; | ||
var mustHitSection:Bool; | ||
var gfSection:Bool; | ||
var bpm:Float; | ||
var changeBPM:Bool; | ||
var altAnim:Bool; | ||
} | ||
|
||
class Section | ||
{ | ||
class Section { | ||
public var sectionNotes:Array<Dynamic> = []; | ||
|
||
public var sectionBeats:Float = 4; | ||
public var gfSection:Bool = false; | ||
public var typeOfSection:Int = 0; | ||
//public var typeOfSection:Int = 0; | ||
public var mustHitSection:Bool = true; | ||
|
||
/** | ||
* Copies the first section into the second section! | ||
*/ | ||
public static var COPYCAT:Int = 0; | ||
|
||
public function new(sectionBeats:Float = 4) | ||
{ | ||
this.sectionBeats = sectionBeats; | ||
trace('test created section: ' + sectionBeats); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.