Skip to content
View GameDevMix's full-sized avatar
💻
Playing games? Or making games? An eternal struggle...
💻
Playing games? Or making games? An eternal struggle...
Block or Report

Block or report GameDevMix

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. A simple health and death controller... A simple health and death controller for a player character in Unity
    1
    using UnityEngine;
    2
    
                  
    3
    // A simple health controller for a player in Unity
    4
    public class PlayerHealthController : MonoBehaviour
    5
    {
  2. A simple 2D movement controller for ... A simple 2D movement controller for a platformer player character in Unity
    1
    using UnityEngine;
    2
    
                  
    3
    // A simple 2D movement controller for a player in Unity
    4
    public class PlayerMovementController : MonoBehaviour
    5
    {