Timers and DeltaTime
By now, you should have noticed that in every Tick function there is a float parameter named DeltaTime. This parameter is equal to the seconds it took in order for the last frame to be completed. In this tutorial, I'm…
By now, you should have noticed that in every Tick function there is a float parameter named DeltaTime. This parameter is equal to the seconds it took in order for the last frame to be completed. In this tutorial, I'm…
A structs is a custom variable which you can create. Think of structs as containers, which are constituted by different data types. Creating a Struct In order to add a struct, from the class wizard check the "Show all Classes" and…
The static keyword meaning can differ between functions and variables: A static function in a class means that you don't need to create an actual instance of a class to access a specific function which is marked as static A…