Useful tips for everyday
Is JavaScript used for coding games? JavaScript can be used to make games using a variety of platforms and tools. Both 2d and 3d libraries…
How to extract camera position from view matrix? I’m trying to improve my Camera. This camera owns a target (vec3 _at), a position (vec3 _eye)…
When should I cap my FPS? You should only cap your FPS if you are starting to see screen tearing and possibly ghosting on your…
How can you create an attracting force using 2 magnets? The simplest example of this is the attraction of opposite poles of two magnets. Every…
How do I update prefabs? So, add your child objects to one instance of the prefab in the scene, select the top-level of the prefab…
Can frame rate be increased? No matter your setup, it’s possible to squeeze out extra fps (frames per second) from your PC. You might also…
How do I change units in unity? In Maya, you can set your unit size to the same as Unity units by clicking on on…
Is Unity stable on Linux? Officially Unity Technologies only support creating executable standalone games/3D applications which can then be run on Linux, specifically Ubuntu 10.04…
How do you implement path finding? The A* Algorithm works by iteratively selecting what is the best route so far, and attempting to see what…
Can you manipulate RNG in games? So the RNG always returns the same sequence of values. The way you can manipulate that is by using…