godot-karrot-starter-theme/addons/SphynxMotionBlurToolkit/PreBlurProcessing/blur_velocity_component_resource.gd
2024-11-12 18:09:47 +01:00

10 lines
336 B
GDScript

extends Resource
class_name BlurVelocityComponentResource
## the overal multiplier of the velocity component
@export var multiplier : float = 1.0
## a lower threshold for the velocity to be blurred
@export var lower_threshold : float = 0.0
## an upper threshold for the velocity to be blurred
@export var upper_threshold : float = 0.0