This repository has been archived by the owner on Sep 10, 2024. It is now read-only.
forked from FunkinCrew/Funkin
-
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.
- Loading branch information
Showing
5 changed files
with
329 additions
and
75 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
function create() | ||
{ | ||
trace("CREATE FUNC CALLED"); | ||
} | ||
|
||
function postCreate() | ||
{ | ||
trace("POST CREATE FUNC CALLED"); | ||
} | ||
|
||
function update(elapsed:Float) | ||
{ | ||
// during playstate's update function | ||
} | ||
|
||
function postUpdate() | ||
{ | ||
// after playstate's update function | ||
} | ||
|
||
function goodNoteHit(note:Note) | ||
{ | ||
trace("GOOD NOTE HIT"); | ||
} | ||
|
||
function noteMiss(direction:Int) | ||
{ | ||
trace("MISSED A NOTE"); | ||
} | ||
|
||
function stepHit(curStep:Int) | ||
{ | ||
//trace("STEP HIT"); | ||
} | ||
|
||
function beatHit(curBeat:Int) | ||
{ | ||
// trace("BEAT HIT"); | ||
// todo: get this working :sob: | ||
if (PlayState.curBeat % 8 == 7 && PlayState.curSong == 'Bopeebo') | ||
{ | ||
PlayState.boyfriend.playAnim('hey', true); | ||
trace("HEY!"); | ||
|
||
if (PlayState.SONG.song == 'Tutorial' && PlayState.dad.curCharacter == 'gf') | ||
{ | ||
PlayState.dad.playAnim('cheer', true); | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
function create() | ||
{ | ||
trace("CREATE FUNC CALLED"); | ||
} | ||
|
||
function postCreate() | ||
{ | ||
trace("POST CREATE FUNC CALLED"); | ||
} | ||
|
||
function update(elapsed:Float) | ||
{ | ||
// during playstate's update function | ||
} | ||
|
||
function postUpdate() | ||
{ | ||
// after playstate's update function | ||
} | ||
|
||
function goodNoteHit(note:Note) | ||
{ | ||
trace("GOOD NOTE HIT"); | ||
} | ||
|
||
function noteMiss(direction:Int) | ||
{ | ||
trace("MISSED A NOTE"); | ||
} | ||
|
||
function stepHit(curStep:Int) | ||
{ | ||
//trace("STEP HIT"); | ||
} | ||
|
||
function beatHit(curBeat:Int) | ||
{ | ||
//trace("BEAT HIT"); | ||
} |
Oops, something went wrong.