Skip to content
Snippets Groups Projects

Update DragDropM.cs

Merged MrWarzo requested to merge jordan.pereira-main-patch-33890 into main
Compare and
1 file
+ 16
10
Preferences
Compare changes
using System.Collections;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.EventSystems;
using TMPro;
//! @authors cgroxy
//! @brief "Insérer description rapide"
//! @details "Insérer description détaillée"
public class DragDropM : MonoBehaviour, IDragHandler, IDropHandler
{
// Champs publiques
[SerializeField] private Canvas canvas;
private RectTransform rectransform;
public TMP_Text textshowed;
bool block = true;
// Champs privés
private RectTransform rectransform; //!< "Insérer description de la variable"
public TMP_Text textshowed; //!< "Insérer description de la variable"
bool block = true; //!< "Insérer description de la variable"
//! @brief Se lance au lancement du script.
private void Awake()
{
rectransform = GetComponent<RectTransform>();
}
//! @param enventData Donnée de l'event @b OnDrop(PointerEventData)
//! @brief "Insérer description rapide"
//! @details "Insérer description détaillée"
public void OnDrag(PointerEventData eventData)
{
@@ -38,6 +43,9 @@ public class DragDropM : MonoBehaviour, IDragHandler, IDropHandler
}
//! @param enventData Donnée de l'event @b OnDrop(PointerEventData)
//! @brief "Insérer description rapide"
//! @details "Insérer description détaillée"
public void OnDrop(PointerEventData eventData)
{
@@ -50,7 +58,5 @@ public class DragDropM : MonoBehaviour, IDragHandler, IDropHandler
block = false;
}
}
}