L-I-V-E-2DAY
❔ Unity 3D
gamedevacademy has good tutorials, maybe start there and adapt it to your needs
https://gamedevacademy.org/how-to-build-a-complete-2d-platformer-in-unity/
13 replies
✅ Need help regarding variables and class.
You could, that would allow you to stick with integers.
But there are some different types that handle decimals better ( better said, they handle floating-point operations)
there are 3:
float
, double
, and decimal
but for these purposes I would just start with float, its the smallest of the 3 and has the least amount of precision but its best practices to only use the types you need to use.260 replies