Scope issue (again)

I’m not sure I understand the question.
If you use an arrow function, the ‘target’ (this) is not set, and therefore remains the class (scene).
If you use functon() {}, ‘this’ is set to the target, but then you’ll need a reference to the scene. See the solution to your previous post.

1 Like