import {EntityPacket} from '@avocado/entity'; export class TraitVisiblePacket extends EntityPacket { static get schema() { const schema = super.schema; schema.data.isVisible = 'bool'; schema.data.opacity = 'uint8'; return schema; } }