There's this one phase 4 attack where this error keeps happening:
This doesn't happen when I start on the attack with that sprite, but it only happens when I start from the beginning of the phase and then get there.'
Does anyone know what this error is saying? It won't let me use that if statement of the soul touching the attack without giving that error. Thanks
What is this error?
VarrienceLvl 25
- Edited
TNitro7669 is o1 always a sprite? sprite functions are quite picky about the argument you pass through for collisions
since i see an undefined parameter I'm going to assume it's not due to .visible only being a boolean on sprites
- Edited
Varrience o1 is a sprite, it is part of a group defined as 'oo'
MonsterYT_DaGamerLvl 8
- Android
Maybe before you do that, make an if statement to check if o1 is null?
MonsterYT_DaGamerLvl 8
- Edited
- Android
MonsterYT_DaGamer something like this
if (o1 !== null && o1 !== undefined && o2 !== null && o2 !== undefined) {
// insert heart.touching stuff
}
edit: ik there's a better way to do that but uh idc idk too bad skill issue
MonsterYT_DaGamerLvl 8
- Android
MonsterYT_DaGamer also heart could also be null (somehow) i think so maybe if that doesn't work check for that? Idk
VarrienceLvl 25
- Best Answerset by TNitro7669
TNitro7669 well in your screenshot error it shows o1 .visible property as undefined, as i stated previously this may be a race condition where it fails before o1 is initialized or tests before o1 is even defined
- Edited
Varrience MonsterYT_DaGamer I fixed the error, thanks for your help.