Abdul Mukheem Shaik 1860fca79f Initial commit
2024-02-22 02:40:30 +01:00

8 lines
227 B
C#

using UnityEngine;
[RequireComponent(typeof(Rigidbody))]
public class SingularityPullable : MonoBehaviour
{
//Add this script to objects you want to be pulled by the singularity script
public bool pullable = true;
}