Table of Contents

Class LegacyBehaviorContainer

Namespace
Lime
Assembly
Lime.dll
public abstract class LegacyBehaviorContainer : BehaviorComponent, IDisposable, IAnimable
Inheritance
LegacyBehaviorContainer
Implements
Derived
Inherited Members
Extension Methods

Properties

IsEmpty

public bool IsEmpty { get; }

Property Value

bool

Methods

OnOwnerFrozenChanged()

Occurs when the GloballyFrozen property of the owner node changes.

protected override void OnOwnerFrozenChanged()

Start()

Start is called on the frame in which the component had added just before Update method is called first time. Note: Start doesn't called immediately at the time it is adding.

protected override void Start()

Update(float)

Update is called on every frame if the owner node isn't frozen and the behavior isn't suspended.

protected override void Update(float delta)

Parameters

delta float

Elapsed time between frames.

UpdateBehavior(NodeBehavior, float)

protected abstract void UpdateBehavior(NodeBehavior b, float delta)

Parameters

b NodeBehavior
delta float