forked from absh8989/DET-SoulSphere
8 lines
227 B
C#
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;
|
|
}
|