Skip to content

Instantly share code, notes, and snippets.

@bingoose0
bingoose0 / PlayerWalk.cs
Last active August 17, 2023 20:09
Unity Player Walk
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class PlayerWalk : MonoBehaviour
{
// Start is called before the first frame update
[Header("Walking")]
[SerializeField] private float walkSpeed = 10f;