AeThex-Engine-Core/engine/logo.svg
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

46 lines
1.9 KiB
XML

<svg width="600" height="180" viewBox="0 0 600 180" xmlns="http://www.w3.org/2000/svg">
<!-- AeThex Engine Logo - Modern Wordmark -->
<defs>
<linearGradient id="logoGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:#00D9FF;stop-opacity:1" />
<stop offset="100%" style="stop-color:#8B5CF6;stop-opacity:1" />
</linearGradient>
<linearGradient id="iconGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#00D9FF;stop-opacity:1" />
<stop offset="100%" style="stop-color:#8B5CF6;stop-opacity:1" />
</linearGradient>
<filter id="logoGlow">
<feGaussianBlur stdDeviation="2" result="coloredBlur"/>
<feMerge>
<feMergeNode in="coloredBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<!-- Icon hexagon (left side) -->
<g transform="translate(65, 90)">
<polygon points="0,-50 43,-25 43,25 0,50 -43,25 -43,-25"
fill="url(#iconGradient)" filter="url(#logoGlow)"/>
<path d="M -15,-20 L 0,-35 L 15,-20 L 12,-15 L 10,5 L 5,5 L 2,-15 L -2,-15 L -5,5 L -10,5 L -12,-15 Z"
fill="#ffffff"/>
<rect x="-10" y="-5" width="20" height="2" fill="#00D9FF"/>
<circle cx="0" cy="-35" r="2" fill="#00D9FF"/>
</g>
<!-- "AeThex" text -->
<text x="145" y="100" font-family="'Segoe UI', 'Arial', sans-serif" font-size="64"
font-weight="700" fill="url(#logoGradient)" letter-spacing="-2">AeThex</text>
<!-- "Engine" text -->
<text x="145" y="135" font-family="'Segoe UI', 'Arial', sans-serif" font-size="28"
font-weight="400" fill="#666666" letter-spacing="2">ENGINE</text>
<!-- Decorative tech line -->
<line x1="145" y1="110" x2="430" y2="110" stroke="url(#logoGradient)"
stroke-width="1" opacity="0.3"/>
<!-- Small circuit nodes -->
<circle cx="145" cy="110" r="2" fill="#00D9FF"/>
<circle cx="430" cy="110" r="2" fill="#8B5CF6"/>
</svg>