Search Results for

    Show / Hide Table of Contents

    Class AnimContinuousEvent

    The animation notification event (with duration) triggered during animation playback that contains begin and end (event notification is received as a tick).

    Inheritance
    System.Object
    Object
    SerializableScriptingObject
    AnimEvent
    AnimContinuousEvent
    Implements
    ISerializable
    Inherited Members
    AnimEvent.OnEvent(AnimatedModel, Animation, Single, Single)
    Object.__unmanagedPtr
    Object.__internalId
    Object.Finalize()
    Object.As<T>()
    Object.NewValue(Type)
    Object.New(String)
    Object.Find<T>(Guid, Boolean)
    Object.Find(Guid, Type, Boolean)
    Object.TryFind<T>(Guid)
    Object.TryFind(Guid, Type)
    Object.Destroy(Object, Single)
    Object.DestroyNow(Object)
    Object.Destroy<T>(T, Single)
    Object.Equals(Object)
    Object.GetUnmanagedPtr(Object)
    Object.GetUnmanagedInterface(Object, Type)
    Object.FromUnmanagedPtr(IntPtr)
    Object.MapObjectID(Guid)
    Object.RemapObjectID(Guid)
    Object.GetHashCode()
    Object.ID
    Object.TypeName
    Namespace: FlaxEngine
    Assembly: FlaxEngine.CSharp.dll
    Syntax
    [Unmanaged]
    public abstract class AnimContinuousEvent : AnimEvent, ISerializable

    Constructors

    AnimContinuousEvent()

    Initializes a new instance of the AnimContinuousEvent.

    Declaration
    protected AnimContinuousEvent()

    Methods

    OnBegin(AnimatedModel, Animation, Single, Single)

    Animation notification called before the first event.

    Declaration
    [Unmanaged]
    public virtual void OnBegin(AnimatedModel actor, Animation anim, float time, float deltaTime)
    Parameters
    AnimatedModel actor

    The animated model actor instance.

    Animation anim

    The source animation.

    System.Single time

    The current animation time (in seconds).

    System.Single deltaTime

    The current animation tick delta time (in seconds).

    OnEnd(AnimatedModel, Animation, Single, Single)

    Animation notification called after the last event (guaranteed to be always called).

    Declaration
    [Unmanaged]
    public virtual void OnEnd(AnimatedModel actor, Animation anim, float time, float deltaTime)
    Parameters
    AnimatedModel actor

    The animated model actor instance.

    Animation anim

    The source animation.

    System.Single time

    The current animation time (in seconds).

    System.Single deltaTime

    The current animation tick delta time (in seconds).

    Extension Methods

    Extensions.ReflectiveCompare<T>(T, T)
    Extensions.RawClone<T>(T)
    In This Article
    Back to top Copyright © 2012-2024 Wojciech Figat