game-programming-patterns-demo icon indicating copy to clipboard operation
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"

Results 6 game-programming-patterns-demo issues
Sort by recently updated
recently updated
newest added

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...