game-programming-patterns-demo
game-programming-patterns-demo copied to clipboard
A repo of small demos that assemble some of the well-known design patterns in Unity development to support the ebook "Level up your code with game programming patterns"
CurrentHealth property shouldn't have a public set, since currentHealth should only be changed by Increment and Decrement methods.
### WHAT You are receiving this PR because your repository is cataloged by unity-backstage through your catalog-info.yaml file that is located at the root level. We are adding a validation...
### What This is a simple update for consistancy of links and names related to [Unity Internal Developer Portal](https://go/internal-dev-portal). These non-functional changes can simply be merged at your earliest convenience....
link to blog article about custom operator was outdated
# Fixed JumpState Bug The state should transition to WalkState when the velocity value is greater than 0.1f, otherwise it should transition to IdleState. ## Before modification ### Simply jump...