Skip to content

v1.3.0

Choose a tag to compare

@jaeymo jaeymo released this 26 Feb 00:24
· 23 commits to main since this release
24f7828

1.3.0 - 02/25/2026

This release expands Classy into a more complete composition orchestration layer.

Added

  • applyComponents: Applies a component definition table to an instance by setting attribute data as metadata and adding tags
  • callOnAllComponents: Calls a method on all components an Instance has.

Usage

Classy.callOnAllComponents(SomeInstance, "OnEquip", Context)

Classy.applyComponents(SomeInstance, {
    Health = { Max = 100 },
    Damage = { Amount = 25 },
})