ListConfigType
ts
type ListConfigType = object;Type defining the configuration for movement behavior using lists.
Properties
mode?
ts
optional mode: "linear" | "acceleration";Movement mode. In linear mode particles move at a constant speed, while in acceleration mode particles accelerate over time based on initial speed.
space?
ts
optional space: MovementSpace;Space in which movement is applied. In local space, movement is relative to the particle's initial direction, while in global space movement is applied relative to the container.
xListData
ts
xListData: ListData<number>;X axis list data defining all properties required for list-based behavior.
See
yListData?
ts
optional yListData: ListData<number>;Y axis list data defining all properties required for list-based behavior. If not provided, xListData will be used for both axes.