Click or drag to resize

MainLoop_Iteration Method

Called each physics frame with the time since the last physics frame as argument (delta, in seconds). Equivalent to _PhysicsProcess(Single).

If implemented, the method must return a boolean value. true ends the main loop, while false lets it proceed to the next frame.

Namespace:  Godot
Assembly:  GodotSharp (in GodotSharp.dll) Version: 1.0.0
Syntax
C#
public virtual bool _Iteration(
	float delta
)

Parameters

delta
Type: SystemSingle

[Missing <param name="delta"/> documentation for "M:Godot.MainLoop._Iteration(System.Single)"]

Return Value

Type: Boolean

[Missing <returns> documentation for "M:Godot.MainLoop._Iteration(System.Single)"]

See Also