mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-07-08 22:11:16 +00:00
Added mcp plugin
This commit is contained in:
parent
e0387b2c4c
commit
b9c15fea3f
10 changed files with 408 additions and 1 deletions
8
addons/gdai-mcp-plugin-godot/gdai_mcp_runtime.gd
Normal file
8
addons/gdai-mcp-plugin-godot/gdai_mcp_runtime.gd
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
extends Node
|
||||
|
||||
|
||||
func _enter_tree():
|
||||
const RUNTIME_SERVER = "GDAIRuntimeServer"
|
||||
if ClassDB.class_exists(RUNTIME_SERVER) and ClassDB.can_instantiate(RUNTIME_SERVER):
|
||||
var runtime_server = ClassDB.instantiate(RUNTIME_SERVER)
|
||||
add_child(runtime_server)
|
||||
Loading…
Add table
Add a link
Reference in a new issue