docs.unity3d.com
    Show / Hide Table of Contents

    Struct Float3TweenJob

    Tween job implementation for tweening float3 values.

    Inherited Members
    ValueType.Equals(Object)
    ValueType.GetHashCode()
    ValueType.ToString()
    Object.Equals(Object, Object)
    Object.ReferenceEquals(Object, Object)
    Object.GetType()
    Namespace: UnityEngine.XR.Interaction.Toolkit.AffordanceSystem.Jobs
    Syntax
    public struct Float3TweenJob : ITweenJob<float3>, IJob

    Properties

    jobData

    Typed job data used in tween job.

    Declaration
    public TweenJobData<float3> jobData { readonly get; set; }
    Property Value
    Type Description
    TweenJobData<float3>
    Implements
    ITweenJob<T>.jobData

    Methods

    Execute()

    Perform work on a worker thread.

    Declaration
    public void Execute()
    Implements
    IJob.Execute()
    See Also
    Execute()

    IsNearlyEqual(float3, float3)

    Function used to compare two values when evaluating a tween to determine if they're nearly equal in order to short-circuit the tween.

    Declaration
    public bool IsNearlyEqual(float3 from, float3 to)
    Parameters
    Type Name Description
    float3 from
    float3 to
    Returns
    Type Description
    Boolean

    Returns true if values are nearly equal.

    Implements
    ITweenJob<T>.IsNearlyEqual(T, T)

    Lerp(float3, float3, Single)

    Function used to interpolate between a tween's start value and target value.

    Declaration
    public float3 Lerp(float3 from, float3 to, float t)
    Parameters
    Type Name Description
    float3 from
    float3 to
    Single t

    Value between 0-1 used to evaluate the output between the from and to values.

    Returns
    Type Description
    float3

    Returns the interpolation from from to to.

    Implements
    ITweenJob<T>.Lerp(T, T, Single)
    Back to top
    Copyright © 2023 Unity Technologies — Terms of use
    • Legal
    • Privacy Policy
    • Cookies
    • Do Not Sell or Share My Personal Information
    • Your Privacy Choices (Cookie Settings)
    "Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
    Generated by DocFX on 18 October 2023