![]() |
Attention | Topic was automatically imported from the old Question2Answer platform. |
![]() |
Asked By | NoSleep |
Does variables typing (typization) help to increase script and then game performance?
Like, would script:
var gm: Array = ["a", "b", "c"]
func do():
gm.append("d")
Work better than
var gm = ["a", "b", "c"]
func do():
gm.append("d")