Ease interpolation function. Ease animations start slowly, speed up, then end slowly. The speed of the animation is slightly slower at the end than the start.
Verse using statement |
using { /Verse.org/Verse/Easing } |
Ease<public><native_callable>(Value:float):float
Parameters
Ease takes the following parameters:
| Name | Type | Description |
|---|---|---|
Value |
float |
Attributes, Specifiers, and Effects
Attributes
The following attributes determine how Ease behaves outside the Verse language. For the complete list of attributes, see the Attributes section of the Specifiers Page.
| Attribute | Arguments | Meaning |
|---|---|---|
available |
MinUploadedAtFNVersion := 4100 |
|
experimental |
This feature is in an experimental state, and you cannot publish projects implmenting it. The API for this feature is subject to change and backward compatibility is not guaranteed. |
Specifiers
The following specifiers determine how you can interact with Ease in your programs. For the complete list of specifiers, see the Specifiers Page.
| Specifier | Meaning |
|---|---|
public |
The identifier is universally accessible. You can use this on modules, classes, interfaces, structs, enums, methods, and data. |
native_callable |
Indicates that an instance method is both native (implemented in C++) and may be called by other C++ code. You can see this specifier used on an instance method. This specifier doesn’t propagate to subclasses and so you don’t need to add it to a definition when overriding a method that has this specifier. |