modified: docs/README.md
This commit is contained in:
parent
73b27e6fbe
commit
4f4cc10a76
6 changed files with 16 additions and 17 deletions
|
|
@ -223,7 +223,7 @@ func _on_message_received(from_id, type, data):
|
||||||
|
|
||||||
### RPC Alternative
|
### RPC Alternative
|
||||||
|
|
||||||
Use familiar Godot RPC syntax - works automatically with AeThex multiplayer:
|
Standard RPC syntax works automatically with AeThex multiplayer:
|
||||||
|
|
||||||
```gdscript
|
```gdscript
|
||||||
# Define synchronized variable
|
# Define synchronized variable
|
||||||
|
|
|
||||||
|
|
@ -12,8 +12,8 @@ Build a simple multiplayer Pong game in 30 minutes. Learn core AeThex features:
|
||||||
## Prerequisites
|
## Prerequisites
|
||||||
|
|
||||||
- AeThex Engine installed
|
- AeThex Engine installed
|
||||||
- Basic Godot/GDScript knowledge (if new, see [GDScript Basics](GDSCRIPT_BASICS.md))
|
- Text editor or Studio IDE
|
||||||
- Studio IDE running
|
- Basic programming knowledge (any language)
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
@ -111,7 +111,7 @@ print(player["name"]) # "Alex"
|
||||||
player.health = 90
|
player.health = 90
|
||||||
```
|
```
|
||||||
|
|
||||||
## Common Godot Functions
|
## Common Lifecycle Functions
|
||||||
|
|
||||||
### _ready()
|
### _ready()
|
||||||
Called when node is added to scene.
|
Called when node is added to scene.
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ Don't worry if this feels overwhelming - we'll take it step by step!
|
||||||
|
|
||||||
## What You Have Right Now
|
## What You Have Right Now
|
||||||
|
|
||||||
✅ Godot Engine source code (in the `engine/` folder)
|
✅ AeThex Engine source code (in the `engine/` folder)
|
||||||
✅ Project structure set up
|
✅ Project structure set up
|
||||||
✅ This awesome documentation
|
✅ This awesome documentation
|
||||||
|
|
||||||
|
|
@ -58,7 +58,7 @@ This will compile the engine. Grab a coffee ☕ - it takes a while the first tim
|
||||||
Once you have the engine built:
|
Once you have the engine built:
|
||||||
1. **Explore** - Click around, see how it works
|
1. **Explore** - Click around, see how it works
|
||||||
2. **Customize** - Start changing colors, text, features
|
2. **Customize** - Start changing colors, text, features
|
||||||
3. **Learn** - Check out Godot tutorials to understand the codebase
|
3. **Learn** - Follow the [First Game Tutorial](tutorials/FIRST_GAME_TUTORIAL.md)
|
||||||
4. **Build** - Add your first unique AeThex feature!
|
4. **Build** - Add your first unique AeThex feature!
|
||||||
|
|
||||||
## Pro Tips
|
## Pro Tips
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ Welcome to AeThex Engine - the cloud-first game engine that makes multiplayer, c
|
||||||
- **[Getting Started](GETTING_STARTED.md)** - Install and create your first game
|
- **[Getting Started](GETTING_STARTED.md)** - Install and create your first game
|
||||||
- **[First Game Tutorial](tutorials/FIRST_GAME_TUTORIAL.md)** - Build multiplayer Pong in 30 minutes
|
- **[First Game Tutorial](tutorials/FIRST_GAME_TUTORIAL.md)** - Build multiplayer Pong in 30 minutes
|
||||||
- **[API Reference](API_REFERENCE.md)** - Complete API documentation
|
- **[API Reference](API_REFERENCE.md)** - Complete API documentation
|
||||||
- **[Migration from Godot](MIGRATION_FROM_GODOT.md)** - Port your Godot projects
|
- **[Migration Guide](MIGRATION_FROM_GODOT.md)** - Coming from other engines?
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
@ -388,14 +388,14 @@ Want to improve the docs?
|
||||||
|
|
||||||
**Total time:** ~1 hour to working game
|
**Total time:** ~1 hour to working game
|
||||||
|
|
||||||
### Path 2: Godot Developer
|
### Path 2: Experienced Developer
|
||||||
|
|
||||||
1. Read [Migration Guide](MIGRATION_FROM_GODOT.md) (20 min)
|
1. Review [API Reference](API_REFERENCE.md) (15 min)
|
||||||
2. Open Godot project in AeThex (5 min)
|
2. Skim [Architecture Overview](ARCHITECTURE_OVERVIEW.md) (15 min)
|
||||||
3. Read [API Reference - AeThex Features](API_REFERENCE.md) (15 min)
|
3. Build tutorial project (30 min)
|
||||||
4. Add cloud features to existing project (30 min)
|
4. Start your own game!
|
||||||
|
|
||||||
**Total time:** ~1 hour to enhanced game
|
**Total time:** ~1 hour to production-ready knowledge
|
||||||
|
|
||||||
### Path 3: Team/Enterprise
|
### Path 3: Team/Enterprise
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -25,11 +25,10 @@
|
||||||
* [Cloud Services](CLOUD_SERVICES_ARCHITECTURE.md)
|
* [Cloud Services](CLOUD_SERVICES_ARCHITECTURE.md)
|
||||||
* [Studio Integration](STUDIO_INTEGRATION.md)
|
* [Studio Integration](STUDIO_INTEGRATION.md)
|
||||||
|
|
||||||
* Migration & Guides
|
* Developer Guides
|
||||||
* [Migration from Godot](MIGRATION_FROM_GODOT.md)
|
|
||||||
* [Building from Source](BUILDING_WINDOWS.md)
|
* [Building from Source](BUILDING_WINDOWS.md)
|
||||||
* [Studio Bridge Guide](STUDIO_BRIDGE_GUIDE.md)
|
* [Studio Bridge Guide](STUDIO_BRIDGE_GUIDE.md)
|
||||||
* [Customization Plan](CUSTOMIZATION_PLAN.md)
|
* [Migration from Other Engines](MIGRATION_FROM_GODOT.md)
|
||||||
|
|
||||||
* Project Info
|
* Project Info
|
||||||
* [Quick Access](../QUICK_ACCESS.md)
|
* [Quick Access](../QUICK_ACCESS.md)
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@ Build a simple multiplayer Pong game in 30 minutes. Learn core AeThex features:
|
||||||
## Prerequisites
|
## Prerequisites
|
||||||
|
|
||||||
- AeThex Engine installed
|
- AeThex Engine installed
|
||||||
- Basic Godot/GDScript knowledge (if new, see [GDScript Basics](../GDSCRIPT_BASICS.md))
|
- Basic programming knowledge (see [GDScript Basics](../GDSCRIPT_BASICS.md) if needed)
|
||||||
- Studio IDE running at http://localhost:9002/ide
|
- Studio IDE running at http://localhost:9002/ide
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue