sqirradotdev / IzzyEngine

Izzy Engine is a complete recreation of Friday Night Funkin', aiming for easy custom content creation.
Apache License 2.0
64 stars 15 forks source link

u might be lazy with adding assets into the scene like me and #20

Closed kinoko87 closed 3 years ago

kinoko87 commented 3 years ago

heres some code if u wanna add shit without typing add() again and again lol

function addObjects(arr:Array<FlxBasic>) {
    for (obj in arr) {
        add(obj);
    }
}

function delObjects(arr:Array<FlxBasic>) {
    for (obj in arr) {
        remove(obj);
    }
}
Alittletrolling commented 3 years ago

Thank you!

sqirradotdev commented 3 years ago

You should be bringing this to Discussions. The Issue tab is more for related Izzy Engine issues. Thank you for understanding