File size: 906 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
namespace Unity.VisualScripting
{
    [UnitOrder(601)]
    public abstract class PerSecond<T> : Unit
    {
        /// <summary>
        /// The input value.
        /// </summary>
        [DoNotSerialize]
        [PortLabelHidden]
        public ValueInput input { get; private set; }

        /// <summary>
        /// The framerate-normalized value (multiplied by delta time).
        /// </summary>
        [DoNotSerialize]
        [PortLabelHidden]
        public ValueOutput output { get; private set; }

        protected override void Definition()
        {
            input = ValueInput(nameof(input), default(T));
            output = ValueOutput(nameof(output), Operation);

            Requirement(input, output);
        }

        public abstract T Operation(T input);

        public T Operation(Flow flow)
        {
            return Operation(flow.GetValue<T>(input));
        }
    }
}