read static method

ActorTargetedConstraint read(
  1. ActorArtboard artboard,
  2. StreamReader reader,
  3. ActorTargetedConstraint component
)
override

Implementation

static ActorTargetedConstraint read(ActorArtboard artboard,
    StreamReader reader, ActorTargetedConstraint component) {
  ActorConstraint.read(artboard, reader, component);
  component._targetIdx = reader.readId('target');

  return component;
}