OK, thanks. Note that this is an instance method (as opposed to a static method), so it requires a target (a
When script code calls this method, what should the target be?
There are two ways to go. The caller can provide the target at the call site, or you can expose a delegate that's bound to a target in advance. Both are easy to do. Which shall it be?
this
reference).When script code calls this method, what should the target be?
There are two ways to go. The caller can provide the target at the call site, or you can expose a delegate that's bound to a target in advance. Both are easy to do. Which shall it be?