Remember me
You are here: HomeForumCyberix3D ForumGeneral Discussion
Welcome, Guest
Username: Password: Remember me

TOPIC: I started teaching ai the basics of Cyberix3d

I started teaching ai the basics of Cyberix3d 10 months 4 days ago #3527

  • whinter
  • whinter's Avatar
  • OFFLINE
  • Senior Boarder
  • Hi, I try to make cool games for the community
  • Posts: 71
  • Thank you received: 16
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 :cheer: :


<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.
Last Edit: 10 months 4 days ago by whinter.
The administrator has disabled public write access.

I started teaching ai the basics of Cyberix3d 10 months 4 days ago #3528

  • whinter
  • whinter's Avatar
  • OFFLINE
  • Senior Boarder
  • Hi, I try to make cool games for the community
  • Posts: 71
  • Thank you received: 16
AI is already learning to make fun games about all kinds of topics from simple cube games, and it will soon start making 3rd person games
Last Edit: 10 months 4 days ago by whinter.
The administrator has disabled public write access.
Time to create page: 0.090 seconds