BaseTool
BaseTool copied to clipboard
A big library of basic tools that you might need in your Unity projects.
In the SceneView, right clicking somewhere or pressing a keyboard shortcut, add the option to create a todo that will linked to the TODO List.
## Description For now, the top down sample uses a capsule as character. And the documentation is quite poor. We should enhance all of that. ## Process First, the sample...
## Description In many games, players can dash (in 2D or 3D space) leading to a quick movement from point A to B. ## Task The objective of the issue...
Create class that retrieves by `GetComponent` the field it is looking for when code needs to access it. ```csharp public class MyComponent : MonoBehaviour { public AutoField Rigidbody; public void...
Create a SettingsManager (maybe singleton) that handles: General: - VSync - Game Resolution - Refresh Rate - FullScreen - Render scale Audio: - Music Volume - SFX Volume - Voice...
When having `var myDictonary = new Dictonary();` And if we want to cast to SerializedDictonary, either `(SerializedDictonary)myDictonary ` and `myDictonary as SerializedDictonary` work. It could be usefull to be able...
Add these vector3 extensions to vector2: - ChangeX(float x), ChangeY(float y), ChangeZ(float z) - Clamp(Vector2 min, Vector2 max) - Lerp(Vector2 begin, Vector2 end) - InverseLerp(Vector2 begin, Vector2 end) - LimitLength(float...