Number bug in words -- feedback
-

As you can see, everything should work. The print is showing that the number is appearing, but won’t go into the list like it should.
Can you figure out the bug? You probably want the link, so here you go:
https://play.creaticode.com/projects/687990440b2607d8a4ff3250
-

As you can see, everything should work. The print is showing that the number is appearing, but won’t go into the list like it should.
Can you figure out the bug? You probably want the link, so here you go:
https://play.creaticode.com/projects/687990440b2607d8a4ff3250
@tng
The 2 lists “posX(tree)” and “posY(tree)” are private, so each clone of the tree has its own copy of these 2 lists. But on the stage you can only see the value of these 2 lists for the original sprite, not the lists for any of the clones.
-
@tng
The 2 lists “posX(tree)” and “posY(tree)” are private, so each clone of the tree has its own copy of these 2 lists. But on the stage you can only see the value of these 2 lists for the original sprite, not the lists for any of the clones.
@info-creaticode so are you saying the lists need to be public and not private?
-
@info-creaticode so are you saying the lists need to be public and not private?
@tng
The lists need to be global to be viewed on the stage. But whether it should be global or private to each clone depends on what you are trying to do. Sounds like you want to track the position of each clone, then it should be private. In that case, your code is correct, just the way you are trying to view its content is not going to work.
Hello! It looks like you're interested in this conversation, but you don't have an account yet.
Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.
With your input, this post could be even better 💗
Register Login