2026-04-24 02:59:54 +08:00
2026-01-06 08:55:14 +08:00
2026-04-24 00:54:56 +08:00
2024-10-22 16:15:56 +08:00
2026-03-17 17:38:30 +08:00
2026-04-22 04:21:00 +08:00
2026-01-21 08:30:02 +08:00
2026-04-24 02:59:54 +08:00
2026-04-22 05:01:23 +08:00

Tekton Dash Armageddon

🛠️ Developer Workflows

1. Creating a Skin Material

To create dynamic, color-maskable 3D materials for new character skins:

  1. Open the Skin Shader Generator tool in the editor: res://scenes/tools/skin_shader_generator.tscn
  2. Run the scene.
  3. Import your base albedo and mask textures.
  4. Use the UI to visualize UV overlays and adjust color channels (Red, Green, Blue, Alpha masks).
  5. Export the configured material as a .tres file into the assets/materials/skins/ directory.

2. Adding a Skin to the Shop

Once your material is ready, you need to add it to the game's economy so players can buy and equip it. This is done by updating the Nakama backend module.

  1. Copy the latest script: Open server/nakama/tekton_admin.js locally and copy its updated contents (including your new skin).
  2. Connect to your VPS via SSH.
  3. Create/Edit the file on the remote server:
    nano ~/tekton_admin.js
    # Or use micro (recommended): micro ~/tekton_admin.js
    
    Paste the copied contents and save the file.
  4. Find your Nakama Container ID: It is highly recommended to use lazydocker to manage containers. (To install on Ubuntu: curl https://raw.githubusercontent.com/jesseduffield/lazydocker/master/scripts/install_update_linux.sh | bash) Open lazydocker or run docker ps to find the Container ID for your Nakama server.
  5. Copy the file into the Nakama container:
    # Replace ed21ac5d442a with your actual Container ID
    docker cp ~/tekton_admin.js ed21ac5d442a:/nakama/data/modules/tekton_admin.js
    
  6. Restart the container (via lazydocker or docker restart <Container ID>) for Nakama to load the new modules. Live game clients will fetch this new catalog automatically upon booting.

3. Pushing a New Version (Automated Patching)

When you're ready to deploy new features or assets to players:

  1. Document your changes in CHANGELOG_DRAFT.md using player-friendly language.
  2. Run the version generation script from the terminal:
    python generate_version_json.py --bump patch
    
    (Use --bump minor or --bump major for larger updates.)
  3. Commit and push your changes to the main branch on GitHub:
    git add .
    git commit -m "Release version X.Y.Z"
    git push origin main
    
  4. The GitHub Actions Workflow (deploy_patch.yml) will automatically detect the push, build the patch manifest (version.json), and deploy it to the public gh-pages branch.
  5. Live game clients will detect the new version on boot, download the updated files, and apply the patch seamlessly.

🚀 Ongoing Features (Incoming)

🎰 Gacha System Backend Editor

Currently in development: A dedicated backend editor tool (similar to skin_catalog_editor.tscn) specifically for managing the Gacha System.

  • Nakama Syncing: Will allow developers to push updated gacha pools, rates, and fragment costs directly to Nakama Storage.
  • Dynamic Banners: Will support updating specific slots on the gacha banner dynamically.
  • Seasonal Rotations: Will introduce automated scheduling so banners rotate based on active seasons and automatically remove themselves when the season ends.
S
Description
No description provided
Readme 1 GiB
v2.4.3 Latest
2026-07-04 15:18:26 +00:00
Languages
GDScript 96.2%
Lua 2.5%
C# 0.4%
GAP 0.3%
GDShader 0.3%
Other 0.2%