AeThex-Engine-Core/engine/doc/classes/FoldableGroup.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

39 lines
1.7 KiB
XML

<?xml version="1.0" encoding="UTF-8" ?>
<class name="FoldableGroup" inherits="Resource" keywords="expandable, collapsible, collapse" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd">
<brief_description>
A group of foldable containers that doesn't allow more than one container to be expanded at a time.
</brief_description>
<description>
A group of [FoldableContainer]-derived nodes. Only one container can be expanded at a time.
</description>
<tutorials>
</tutorials>
<methods>
<method name="get_containers" qualifiers="const">
<return type="FoldableContainer[]" />
<description>
Returns an [Array] of [FoldableContainer]s that have this as their FoldableGroup (see [member FoldableContainer.foldable_group]). This is equivalent to [ButtonGroup] but for FoldableContainers.
</description>
</method>
<method name="get_expanded_container" qualifiers="const">
<return type="FoldableContainer" />
<description>
Returns the current expanded container.
</description>
</method>
</methods>
<members>
<member name="allow_folding_all" type="bool" setter="set_allow_folding_all" getter="is_allow_folding_all" default="false">
If [code]true[/code], it is possible to fold all containers in this FoldableGroup.
</member>
<member name="resource_local_to_scene" type="bool" setter="set_local_to_scene" getter="is_local_to_scene" overrides="Resource" default="true" />
</members>
<signals>
<signal name="expanded">
<param index="0" name="container" type="FoldableContainer" />
<description>
Emitted when one of the containers of the group is expanded.
</description>
</signal>
</signals>
</class>