- 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!
20 lines
460 B
YAML
20 lines
460 B
YAML
name: Test Godot project converter
|
|
description: Test the Godot project converter.
|
|
|
|
inputs:
|
|
bin:
|
|
description: The path to the Godot executable
|
|
required: true
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: Test 3-to-4 conversion
|
|
shell: sh
|
|
run: |
|
|
mkdir converter_test
|
|
cd converter_test
|
|
touch project.godot
|
|
../${{ inputs.bin }} --headless --validate-conversion-3to4
|
|
cd ..
|
|
rm converter_test -rf
|