absoluteSize property

Vector2 get absoluteSize

Implementation

Vector2 get absoluteSize {
  return ancestors<Actor>(includeSelf: true)
      .fold(size.clone(), (totalSize, c) => totalSize..multiply(c.scale));
}