wait_frames
Pauses execution for a specified number of frames in the MCP GameBoy Server, enabling precise timing control during GameBoy emulation operations.
Instructions
Wait for a specified number of frames
Input Schema
Name | Required | Description | Default |
---|---|---|---|
duration_frames | No | Number of frames to wait |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"duration_frames": {
"default": 100,
"description": "Number of frames to wait",
"exclusiveMinimum": 0,
"type": "integer"
}
},
"type": "object"
}