Capítulo 252 de 411

Chapter 252: InertiaPlugin.untrack()

Core Idea

Stops velocity-tracking specific properties (or all properties) of a target that was previously tracked with track().

Code Examples

InertiaPlugin.track(obj, "x,y");
InertiaPlugin.untrack(obj, "x");   // stop tracking just x
InertiaPlugin.untrack(obj);        // stop tracking everything on obj

Connects To

  • InertiaPlugin.track(): the corresponding start-tracking call.