startCube
Initialize a new Rubik's Cube game session with the option to scramble the cube initially. Manage puzzle-solving progress using standard notation moves and real-time 3D visualization.
Instructions
Initialize a new Rubik's Cube game session
Input Schema
Name | Required | Description | Default |
---|---|---|---|
scramble | No | Whether to scramble the cube initially |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"scramble": {
"description": "Whether to scramble the cube initially",
"type": "boolean"
}
},
"type": "object"
}