Is there any difference, practically speaking, between setting the base variable when it’s established vs. on Awake() or Start()?
E.G.:
Is there any real difference (except personal) between:
var someVariable : someType;
function Awake() // or function Start()
someVariable = someValue;
and:
var someVariable : someType = someValue;
I’m just curious what the serious coder thinks.
I’ve done this both ways, and they both seem to work. For consistency’s sake I was going to try to adopt one style over the other, but wasn’t sure if there was a practical difference.