Jump to content
GreenSock

ThrowPropsPlugin.untrack()

ThrowPropsPlugin.untrack( ) ;

Details

Stops tracking the velocity of certain properties (or all properties of an object), like ones initiated with the track() method.

  1. //starts tracking "x" and "y":
  2. ThrowPropsPlugin.track(obj, "x,y");
  3. //stops tracking only the "x" property:
  4. ThrowPropsPlugin.untrack(obj, "x");
  5. //stops tracking "x" and "y":
  6. ThrowPropsPlugin.untrack(obj, "x,y");
  7. //stops tracking all properties of obj:
  8. ThrowPropsPlugin.untrack(obj);
Copyright 2017, GreenSock. All rights reserved. This work is subject to theterms of useor for Club GreenSock members, the software agreement that was issued with the membership.
×