AeThex-Engine-Core/engine/doc/classes/PhysicsServer3DRenderingServerHandler.xml
MrPiglr 9dddce666d
🚀 AeThex Engine v1.0 - Complete Fork
- Forked from Godot Engine 4.7-dev (MIT License)
- Rebranded to AeThex Engine with cyan/purple theme
- Added AI-powered development assistant module
- Integrated Claude API for code completion & error fixing
- Custom hexagon logo and branding
- Multi-platform CI/CD (Windows, Linux, macOS)
- Built Linux editor binary (151MB)
- Complete source code with all customizations

Tech Stack:
- C++ game engine core
- AI Module: Claude 3.5 Sonnet integration
- Build: SCons, 14K+ source files
- License: MIT (Godot) + Custom (AeThex features)

Ready for Windows build via GitHub Actions!
2026-02-23 05:01:56 +00:00

60 lines
2.4 KiB
XML

<?xml version="1.0" encoding="UTF-8" ?>
<class name="PhysicsServer3DRenderingServerHandler" inherits="Object" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd">
<brief_description>
A class used to provide [method PhysicsServer3DExtension._soft_body_update_rendering_server] with a rendering handler for soft bodies.
</brief_description>
<description>
</description>
<tutorials>
</tutorials>
<methods>
<method name="_set_aabb" qualifiers="virtual required">
<return type="void" />
<param index="0" name="aabb" type="AABB" />
<description>
Called by the [PhysicsServer3D] to set the bounding box for the [SoftBody3D].
</description>
</method>
<method name="_set_normal" qualifiers="virtual required">
<return type="void" />
<param index="0" name="vertex_id" type="int" />
<param index="1" name="normal" type="Vector3" />
<description>
Called by the [PhysicsServer3D] to set the normal for the [SoftBody3D] vertex at the index specified by [param vertex_id].
[b]Note:[/b] The [param normal] parameter used to be of type [code]const void*[/code] prior to Godot 4.2.
</description>
</method>
<method name="_set_vertex" qualifiers="virtual required">
<return type="void" />
<param index="0" name="vertex_id" type="int" />
<param index="1" name="vertex" type="Vector3" />
<description>
Called by the [PhysicsServer3D] to set the position for the [SoftBody3D] vertex at the index specified by [param vertex_id].
[b]Note:[/b] The [param vertex] parameter used to be of type [code]const void*[/code] prior to Godot 4.2.
</description>
</method>
<method name="set_aabb">
<return type="void" />
<param index="0" name="aabb" type="AABB" />
<description>
Sets the bounding box for the [SoftBody3D].
</description>
</method>
<method name="set_normal">
<return type="void" />
<param index="0" name="vertex_id" type="int" />
<param index="1" name="normal" type="Vector3" />
<description>
Sets the normal for the [SoftBody3D] vertex at the index specified by [param vertex_id].
</description>
</method>
<method name="set_vertex">
<return type="void" />
<param index="0" name="vertex_id" type="int" />
<param index="1" name="vertex" type="Vector3" />
<description>
Sets the position for the [SoftBody3D] vertex at the index specified by [param vertex_id].
</description>
</method>
</methods>
</class>