today I started teaching ai the сyberix3d game constructor, he will create games and so on, he is still learning everything, but he created a game using code

:
<GameMaker3D>
<CameraController
controllerType="firstPerson"
collisionShape="Box"
characterHeight="50"
flyMode="0"
walkSpeed="5.00"
strafeSpeed="4.00"
jumpSpeed="8.00"
/>
<!-- === УРОВЕНЬ === -->
<Level name="MainLevel">
<!-- Пол -->
<Plane
collision="1"
static="1"
x="0" y="0" z="0"
width="100" height="100"
texture="GroundMaterial"
/>
<!-- Стены лабиринта -->
<Cube
collision="1"
static="1"
x="0" y="25" z="40"
width="100" height="50" depth="5"
texture="WallMaterial"
/>
<Cube
collision="1"
static="1"
x="30" y="25" z="20"
width="5" height="50" depth="40"
texture="WallMaterial"
/>
<!-- Шар для сбора -->
<Sphere
collision="1"
x="10" y="10" z="10"
radius="5"
texture="BallMaterial"
>
<IfCollision with="CameraController">
<Remove/>
<Label text="Шар собран!" x="200" y="200" color="0xFFFFFF" fontSize="30"/>
</IfCollision>
</Sphere>
<!-- Кнопка (2D-интерфейс) -->
<Button label="Нажми меня" x="50" y="400">
<IfMouse eventType="Click">
<Label text="Кнопка работает!" x="50" y="450" color="0xFFFFFF" fontSize="25"/>
</IfMouse>
</Button>
</Level>
<!-- === МАТЕРИАЛЫ === -->
<Material name="GroundMaterial" color="0x333333"/>
<Material name="WallMaterial" color="0x993300"/>
<Material name="BallMaterial" color="0x00FF00"/>
</GameMaker3D>
I will be releasing various news about training (I teach Ii Deepseek)
Although the artificial intelligence has never heard of this engine, it will learn to understand it.