using System.Collections; using System.Collections.Generic; using UnityEngine; public class MoveSidesEnabler : MonoBehaviour { public void EnableMoveSides(Collider collider) { collider.GetComponent().enabled = true; } }