You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			18 lines
		
	
	
		
			473 B
		
	
	
	
		
			C#
		
	
			
		
		
	
	
			18 lines
		
	
	
		
			473 B
		
	
	
	
		
			C#
		
	
using Autohand;
 | 
						|
using UnityEngine;
 | 
						|
 | 
						|
[ HelpURL("https://app.gitbook.com/s/5zKO0EvOjzUDeT2aiFk3/auto-hand/extras/magnetic-forces")]
 | 
						|
public class MagneticBody : MonoBehaviour
 | 
						|
{
 | 
						|
    public Rigidbody body;
 | 
						|
    public int magneticIndex = 0;
 | 
						|
    public float strengthMultiplyer = 1f;
 | 
						|
    public UnityMagneticEvent magneticEnter;
 | 
						|
    public UnityMagneticEvent magneticExit;
 | 
						|
 | 
						|
    private void Start() {
 | 
						|
        if(body == null)
 | 
						|
            body = GetComponent<Rigidbody>();
 | 
						|
    }
 | 
						|
}
 |