Table of Contents

Interface IYieldVolatile

Namespace
Cobilas.GodotEngine.Utility
Assembly
com.cobilas.godot.utility.dll

The IyieldVolatile interface allows the Yield class to change the type of process.

This interface allows you to change the type of update if the object will use the _Process(float) or _PhysicsProcess(float)Coroutine process.

public interface IYieldVolatile : IYieldCoroutine
Inherited Members

Properties

IsPhysicsProcess

Indicates which process of updating the Coroutine is using.

bool IsPhysicsProcess { get; }

Property Value

bool

true when the corrotine is using _PhysicsProcess(float).

false when the corrotine is using _Process(float).