#Is it possible to identify if the entity is a baby by script?
1 messages · Page 1 of 1 (latest)
Yeah
const isBaby = Entity.getComponent('is_baby');```
I can use as a condition, for example:
if (entity.getComponent('is_baby') {}
if (!entity.getComponent('is_baby') {}
I've never used anything like it