This repository has been archived on 2024-04-19. You can view files and clone it, but cannot push or open issues or pull requests.
Jessist/addons/godot-action/ease_func.gd
2022-06-18 13:05:48 +02:00

7 lines
146 B
GDScript

class_name GDEaseFunc extends Node
const linear = 1.0
const ease_in = 0.4
const ease_out = 2.5
const ease_in_out = -2.5
const ease_out_in = -0.4