Actor components
Example component
@Component()
class HealthComponent extends ActorComponent {
@Parameter() maxHealth: number = 100
currentHealth: number
onInit() {
this.currentHealth = this.maxHealth
}
update(change: number) {
this.currentHealth = Math.max(0, this.currentHealth + change)
}
}Attaching components
Component options
Last updated