Files
FueraDeEscala/Assets/Game Kit Controller/Scripts/Others/checkCharactersParentOnDestroy.cs
Robii Aragon fd87a6ffd5 add ckg
plantilla base para movimiento básico
2026-02-05 05:07:55 -08:00

30 lines
788 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class checkCharactersParentOnDestroy : MonoBehaviour
{
[Header ("Main Settings")]
[Space]
public bool checkCharactersParentOnDestroyEnabled = true;
public Transform mainParent;
void OnDestroy ()
{
if (checkCharactersParentOnDestroyEnabled) {
if (mainParent == null) {
mainParent = transform;
}
Component [] playerControllerList = mainParent.GetComponentsInChildren (typeof (playerController));
foreach (playerController currentPlayerController in playerControllerList) {
currentPlayerController.setPlayerAndCameraAndFBAPivotTransformParent (null);
}
}
}
}