5 Matching Annotations
  1. Sep 2022
  2. Sep 2020
  3. Oct 2019
  4. Apr 2016
    1. Use inheritance when you want to customize an existing AActor or UActorComponent. Use composition when you want many different AActor types to share the functionality.

      At this high level, it almost sounds as if components are a way to implement mixins in C++, though perhaps more loosely coupled in terms of class type.