mirror of
https://github.com/Mukheem/DET-SoulSphere.git
synced 2025-12-07 03:32:35 +01:00
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;
|
|
}
|