This repository has been archived by the owner on Jan 17, 2023. It is now read-only.
how i do a stage #96
Answered
by
Furamona
JustJasonLol
asked this question in
Q&A
-
The Tittle Says It |
Beta Was this translation helpful? Give feedback.
Answered by
Furamona
Mar 20, 2022
Replies: 1 comment 1 reply
-
var stage:Stage = null; function create() { function beatHit(curBeat) { |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
JustJasonLol
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
var stage:Stage = null;
function create() {
stage = loadStage("stage"); // Replace stage by the name of your stage file without the extension
}
function beatHit(curBeat) {
stage.onBeat();
}