read static method

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

Implementation

static ActorLayerEffect read(
    ActorArtboard artboard, StreamReader reader, ActorLayerEffect component) {
  ActorComponent.read(artboard, reader, component);
  component._isActive = reader.readBool('isActive');

  return component;
}