QuadSpinner Gaea
Download GaeaTalk to Support
  • User Guide
  • Node Reference
  • Changelog
  • Home
  • Getting Started
    • Install Gaea
      • Regular Installation
      • Portable Installation
      • Mass Deployment
      • Troubleshooting
      • Version Numbers
      • Uninstall or Clean Install
    • License Management
      • Activation
      • Deactivation
      • Hardware Thumbprint
      • Floating License
    • User Interface
      • Graph
      • Viewport
        • Render Modes
        • 2D Viewport
        • Measurement Tools
      • Property Editor
        • Modifier Stack
        • Presets
        • Binding Variables
      • Data Editor
        • Terrain View
        • Export View
        • Automation View
      • Menus and Toolbars
        • Main Menu
        • Undo and Autosave
        • Graph Toolbar
        • Viewport Toolbar
        • Property Editor Toolbar
        • Data Editor Toolbar
      • Lazy Menu
      • Keyboard Shortcuts
    • The Graph
      • Procedural Workflow
      • Toolbox and Search
      • Lock Preview and Underlays
      • Suspending Engine
      • Graph Conveniences
      • Portals and Chokepoints
      • Organizing with Tabs
      • Annotations
      • Groups
    • Managing Gaea
      • Command-line Interface
      • Options
        • Compute
      • Autosave and Recovery
    • For Gaea 1 Users
      • Migration Guide
      • Node Changes
  • Using Gaea
    • Terrain Basics
      • Creating a Snow Mountain
      • Creating a Simple Landscape
      • Exporting Elements
      • Importing Meshes
      • Masks
      • Non-Determinism
      • Scale and Resolution
      • Memory Requirements
    • Crafting the Surface
      • Noises, Primitives, and Landscapes
      • Erosion
      • Surface Nodes
      • Transpose Shapes
    • Understanding Erosion
      • Erosion_2
      • Erosion_1
      • Thermal Erosion
      • Additional Erosion Nodes
      • Nuance
    • Simulations
      • Snowfall
      • Debris
      • Water
      • Vegetation
    • Colorizing and Textures
      • Crafting Masks
      • Working with SatMaps
      • Synthesizing Colors
      • Layering Textures
      • ColorErosion
    • Managing Graphs
      • Using Modifiers
      • Portals and Chokepoints
      • Visualizing Scale
      • Accumulators
      • Navigating Complex Graphs
    • Baking Nodes
      • Linchpin Nodes
    • Build and Export
      • Exporting Nodes
      • Build Options
        • Managing Regions
      • Tiled Builds
      • Using Regions
      • Profiles and Batch Builds
      • Batch Builds
      • Mesh Exports
        • Tangent-Space Normals and Warped Maps
      • Application Specific Export Nodes
        • Unreal Node
        • Unity Node
    • Importing Terrains
      • Universal Instructions
      • Software-specific Instructions
        • Unreal
      • Common Issues
  • Advanced Topics
    • Build Swarm
      • Creating Mutations
      • Build Reports
    • Technical Information
      • File Formats
      • Learning and Predictive System
      • Paths and Storage
      • Dimensions and Scale
      • Calculating Memory Requirements
    • Automation
      • Command Line Automation
      • Managing Input and Output
      • Building a Bridge with the CLI
  • Plugins
    • Gaea2Houdini
      • Installing Gaea2Houdini
      • Using Gaea Nodes
    • Gaea2Unreal
      • Installing Gaea2Unreal
      • Importing Terrains
      • Importing Weight Maps
  • Developers
    • Scripting and Expressions
      • Variables
      • Expressions
      • Math Node
    • TOR Platform SDK
  • Troubleshooting
    • Terrains
      • Common Errors
      • Terrain Quality
    • Diagnostics (Watson)
      • Diagnostics Package
      • CPU Only Mode
      • Benchmark Devices
Powered by GitBook
LogoLogo

Copyright © 2020-2025 QuadSpinner. All rights reserved.

On this page
  • Post-Action Screen
  • Build Report
  1. Advanced Topics
  2. Build Swarm

Build Reports

Post-Action Screen

Gaea shows a post-action screen when a build finishes. It saves a copy in the build folder as report.txt so you can refer to it later.


───────────────────────────────────────────────────────  GAEA BUILD SWARM  2.1.0.0 ──

                                                                             
          Filename:  │ C:/Users/Dax/Documents/Gaea/Projects/mesher2.terrain  
    Build Location:  │ C:\Users\Dax\Documents\Gaea\Builds\mesher2\001        
        Build Type:  │ Standard                                              
  Build Resolution:  │ 2048 × 2048                                           
     Build Profile:  │ None / Last Saved Settings                            
             Nodes:  │ 03 to build                                           
                     │ 01 to export

───────────────────────────────────────────────────────────────────── Build Report ──

              Build Results                              Statistics               
                                                                                  
          Result: │ Success                  Sandstone │ 0:00:02.721              
      Resolution: │ 2048                               │                          
      Node Count: │ 3                          Fastest │ Mesher @ 0:00:00.001     
      Start Time: │ 02/05/2025 19:42:03        Slowest │ Sandstone @ 0:00:02.721  
        End Time: │ 02/05/2025 19:42:26                                           
        Duration: │ 00:00:23.3091200       * nodes that took <100ms are excluded. 
  Non-Build Time: │ 00:00:20.5231200                                              
                                                                                  

Build Report

A structured data version of the report is also saved as report.json that is both human and machine readable.

{
  "$id": "1",
  "Resolution": 2048,
  "NodeCount": 3,
  "Result": "Success",
  "StartTime": "2025-02-05T19:42:03.2694437+05:30",
  "EndTime": "2025-02-05T19:42:26.5785637+05:30",
  "Duration": "00:00:23.3091200",
  "SecondsTaken": {
    "$id": "2",
    "$values": [
      {
        "$id": "3",
        "Item1": "Perlin",
        "Item2": "00:00:00.0640000"
      },
      {
        "$id": "4",
        "Item1": "Mesher",
        "Item2": "00:00:00.0010000"
      },
      {
        "$id": "5",
        "Item1": "Sandstone",
        "Item2": "00:00:02.7210000"
      }
    ]
  },
  "FastestNode": {
    "$ref": "4"
  },
  "SlowestNode": {
    "$ref": "5"
  }
}
PreviousCreating MutationsNextTechnical Information

Last updated 2 months ago