press_down
Simulate pressing the DOWN button on a GameBoy via the MCP GameBoy Server, allowing precise control with customizable duration in frames for accurate emulation interactions.
Instructions
Press the DOWN button on the GameBoy
Input Schema
Name | Required | Description | Default |
---|---|---|---|
duration_frames | No | Number of frames to hold the button |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"duration_frames": {
"default": 25,
"description": "Number of frames to hold the button",
"exclusiveMinimum": 0,
"type": "integer"
}
},
"type": "object"
}