Back to Documentation
Tag Operations Node

TagSet

Set a tag on an entity

Inputs

entityIdstringrequired

ID of the entity to tag

tagstringrequired

Tag to set (e.g. 'locked:true')

Outputs

No data outputs (execution flow only)

Overview

Sets a tag on the specified entity. If the tag already exists, this is a no-op.

Usage Examples

// Lock a position
TagSet:
  entityId: "pos_0_0"
  tag: "locked:true"

// Disable a position
TagSet:
  entityId: "pos_2_1"
  tag: "disabled:true"

// Set coin value
TagSet:
  entityId: "pos_1_1"
  tag: "coin:value:10"