Useful tips for everyday
How do you animate in Godot 2D? Select the AnimationPlayer and click the “Animation” button followed by “New”. Name the new animation “walk”. Set the…
What is a cinematic platformer? Genre. Platforming games focused on realistic character movement and containing heavy story elements compared to more traditional platformers. They often…
Do objects share the same instance variables? Every time you create an instance of a class, the runtime system creates one copy of each the…
What is it called to move the camera left to right on a fixed point? Panning is when you move your camera horizontally; either left…
What is a vector vs scalar? A quantity which does not depend on direction is called a scalar quantity. Vector quantities have two characteristics, a…
How do game studios get funding? How do I get funding for my indie game company? Bootstrapping. “Bootstrapping” refers to paying for the business yourself,…
Can Linux be used for game development? Developing a game on Linux isn’t any more difficult than developing a game on Windows or macOS. In…
How do I call an iOS native function from Unity? In your Unity project, create a folder Assets/Plugin/iOS. Files directly in that folder (can’t be…
Which game Engine is better for VR? Without a doubt, Unity and UE4 are both excellent platforms on which to base your VR efforts. There’s…
Does OnCollisionEnter need collider? In contrast to OnTriggerEnter, OnCollisionEnter is passed the Collision class and not a Collider. The Collision class contains information about contact…