File size: 856 Bytes
18a519f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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;
        }
    }
}