Skip to content

Instantly share code, notes, and snippets.

View BugsBunny421's full-sized avatar
🎯
Focusing

Sheraz Ali BugsBunny421

🎯
Focusing
  • Gujrat, Punjab, Pakistan
  • 08:39 (UTC +05:00)
View GitHub Profile
@Notoh
Notoh / RollingScript.cs
Last active July 19, 2022 15:11
Unity Ball Rolling/Jumping C# Script
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class RollingScript : MonoBehaviour {
public float rotationSpeed = 25.0F;
public float jumpHeight = 8.0F;
private bool isFalling = false;