I have multiple instances of a sprite and I want each instance to follow certain paths. The sprite is part of a family and already knows what to do once path is found, but I want each instance to go to different predetermined locations. Thanks in advance
Do a for each loop then assign each instance a unique variable name.
Then assign a different find path action for each instance.
Eg. Sprite 1 go-to target 1. Etc
Develop games in your browser. Powerful, performant & highly capable.
Do a for each loop then assign each instance a unique variable name. Then assign a different find path action for each instance. Eg. Sprite 1 go-to target 1. Etc
Thank you!