10 lines
336 B
GDScript3
10 lines
336 B
GDScript3
![]() |
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
|