Posts by Lucas Nascimento • 106 points
2 posts
-
8
votes1
answer94
viewsA: Why does the print_r print before the echo?
Because print_r returns earlier: print_r returns a value. Because of this, echo awaits all operations within its parameters before executing to be able to print the value that print_r returned. This…
phpanswered Lucas Nascimento 106 -
1
votes1
answer565
viewsA: Unity, how to move a cube so that it always walks 1 in 1
The problem The functions Start and Update are in lower case. According to Unity documentation, Start and Update are in capital letters. As nomenclature conventions of C# may be useful to you.…
unity3danswered Lucas Nascimento 106