This repository has been archived on 2025-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
project-undercover/Game 1/Assets/Scripts/BackgroundScroll.cs

19 lines
342 B
C#
Raw Normal View History

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class BackgroundScroll : MonoBehaviour {
private Rigidbody2D lowerBod;
// Use this for initialization
void Start () {
lowerBod = GetComponent<Rigidbody2D>(Background1);
}
// Update is called once per frame
void Update () {
}
}