Represents a token on a scene in FoundryVTT
Tokens are the visual representations of actors placed on scenes. They contain position, appearance, and gameplay-related information.
FoundryToken
const heroToken: FoundryToken = { _id: 'token-123', name: 'Aragorn', x: 1000, y: 1500, actorId: 'actor-123', disposition: 1 // friendly}; Copy
const heroToken: FoundryToken = { _id: 'token-123', name: 'Aragorn', x: 1000, y: 1500, actorId: 'actor-123', disposition: 1 // friendly};
Optional
Represents a token on a scene in FoundryVTT
Tokens are the visual representations of actors placed on scenes. They contain position, appearance, and gameplay-related information.
FoundryToken
Example