Skip to content

CloneableKineticsPort

export interface CloneableKineticsPort {
clone(): KineticsPort;
}

A port to create copies of KineticsPort. Used when you want to generate multiple Kinetics instances with the same engine configuration.

MethodDescription
clone()Returns a new KineticsPort inheriting the current configuration

Kinetics implements this port. Simulation state (position, velocity) is also copied.