Firstborn/Library/PackageCache/com.unity.visualscripting@1.../Runtime/VisualScripting.Flow/Framework/This.cs
Schaken-Mods 9092858a58 updated to the latest editor
I updated everything to the latest Unity Editor. Also realized I had the wrong shaders on my hairs, those are fixed and the hairs look MUCH better!
2023-05-07 17:43:11 -05:00

37 lines
856 B
C#

using UnityEngine;
namespace Unity.VisualScripting
{
/// <summary>
/// Returns the current game object.
/// </summary>
[SpecialUnit]
[RenamedFrom("Bolt.Self")]
[RenamedFrom("Unity.VisualScripting.Self")]
public sealed class This : Unit
{
/// <summary>
/// The current game object.
/// </summary>
[DoNotSerialize]
[PortLabelHidden]
[PortLabel("This")]
public ValueOutput self { get; private set; }
protected override void Definition()
{
self = ValueOutput(nameof(self), Result).PredictableIf(IsPredictable);
}
private GameObject Result(Flow flow)
{
return flow.stack.self;
}
private bool IsPredictable(Flow flow)
{
return flow.stack.self != null;
}
}
}