So, I have a simple question that I hope someone can answer.
What is the difference between using the "Call" function and simply running your function in the script?
For example..
Code:
Func _something()
;Does some stuff here
;more stuff, more stuff...
EndFunc
Call("_something") ;<--- execute "_something" function.
_something() ;<-- or you can use this way instead.
As far as I know they pretty much do the same thing, but there has to be a reason for using one and not the other. Can anyone elaborate on this? Thanks.