Collection of Game Development Learning Resources
During my time working on game development, I have consumed content from various materials. Based on this experience, I would like to share some resources that I find beneficial to follow. Wide-ra...
During my time working on game development, I have consumed content from various materials. Based on this experience, I would like to share some resources that I find beneficial to follow. Wide-ra...
Imagine you have a list of sorted items, like numbers in order, and you need to find one specific number. Instead of checking each item one by one, binary search lets you divide and conquer. You st...
In my experience with DOTween, it has proven invaluable across numerous projects. Typically, animation parameters are defined as class-level variables, which works well for a small number of simila...
The Graham scan algorithm compute the convex hull of a set of points in a plane. The convex hull is the smallest convex polygon that can enclose all the points in the set, much like stretching a ru...
Code snippets are small blocks of reusable code that perform a specific task in programming. Code snippets are valuable because they save time and effort, making it easier to understand or implemen...
GJK algorithm is a method used in computational geometry to determine if two convex shapes intersect. You can check the following sources to get information about the subject. Source 1 Source...