notify_message
Sends a custom message to the Unity console, supporting info, warning, or error types, enabling clear communication during development and debugging processes.
Instructions
Sends a message to the Unity console
Input Schema
Name | Required | Description | Default |
---|---|---|---|
message | Yes | The message to display in the Unity console | |
type | No | The type of message (info, warning, error) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"message": {
"description": "The message to display in the Unity console",
"type": "string"
},
"type": {
"description": "The type of message (info, warning, error)",
"type": "string"
}
},
"required": [
"message"
],
"type": "object"
}