移除 bd

This commit is contained in:
2026-05-27 16:28:40 +08:00
parent 0b7568a96f
commit 0082c0b727
535 changed files with 10 additions and 35957 deletions

View File

@@ -1,32 +0,0 @@
#if GRAPH_DESIGNER
/// ---------------------------------------------
/// Behavior Designer
/// Copyright (c) Opsive. All Rights Reserved.
/// https://www.opsive.com
/// ---------------------------------------------
namespace Opsive.BehaviorDesigner.Runtime.Tasks.Conditionals.Math
{
using Opsive.GraphDesigner.Runtime;
using Opsive.GraphDesigner.Runtime.Variables;
using UnityEngine;
[Opsive.Shared.Utility.Description("Compares two GameObject values.")]
[Shared.Utility.Category("Math")]
public class GameObjectComparison : Conditional
{
[Tooltip("The first GameObject.")]
[SerializeField] protected SharedVariable<GameObject> m_GameObject1;
[Tooltip("The second GameObject.")]
[SerializeField] protected SharedVariable<GameObject> m_GameObject2;
/// <summary>
/// Executes the task.
/// </summary>
/// <returns>The execution status of the task.</returns>
public override TaskStatus OnUpdate()
{
return m_GameObject1.Value == m_GameObject2.Value ? TaskStatus.Success : TaskStatus.Failure;
}
}
}
#endif