Click or drag to resize

TransformInterpolateWith Method

Interpolates this transform to the other `transform` by `weight`.

Namespace:  Godot
Assembly:  GodotSharp (in GodotSharp.dll) Version: 1.0.0
Syntax
C#
public Transform InterpolateWith(
	Transform transform,
	float weight
)

Parameters

transform
Type: GodotTransform
The other transform.
weight
Type: SystemSingle
A value on the range of 0.0 to 1.0, representing the amount of interpolation.

Return Value

Type: Transform
The interpolated transform.
See Also