移除 bd
This commit is contained in:
@@ -1,33 +0,0 @@
|
||||
#if GRAPH_DESIGNER
|
||||
/// ---------------------------------------------
|
||||
/// Behavior Designer
|
||||
/// Copyright (c) Opsive. All Rights Reserved.
|
||||
/// https://www.opsive.com
|
||||
/// ---------------------------------------------
|
||||
namespace Opsive.BehaviorDesigner.Runtime.Tasks.Actions.Conversions
|
||||
{
|
||||
using Opsive.GraphDesigner.Runtime.Variables;
|
||||
using UnityEngine;
|
||||
|
||||
[Opsive.Shared.Utility.Description("Converts an integer value to a string value.")]
|
||||
[Shared.Utility.Category("Conversions")]
|
||||
public class ConvertIntToString : Action
|
||||
{
|
||||
[Tooltip("The integer value to convert.")]
|
||||
[SerializeField] protected SharedVariable<int> m_Value;
|
||||
[Tooltip("The variable that should be set to the converted string value.")]
|
||||
[RequireShared] [SerializeField] protected SharedVariable<string> m_StoreResult;
|
||||
|
||||
/// <summary>
|
||||
/// Executes the task.
|
||||
/// </summary>
|
||||
/// <returns>The execution status of the task.</returns>
|
||||
public override TaskStatus OnUpdate()
|
||||
{
|
||||
m_StoreResult.Value = m_Value.Value.ToString();
|
||||
return TaskStatus.Success;
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user