Skip to content

duffrecords/gdtree

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gdtree

CLI tool for displaying a Godot scene in a tree-like format

While learning how to use Godot, I wanted a way to compare example projects for reference without having to keep closing and opening them just to look at the scene tree. Viewing the scene file directly isn't very helpful for large scenes, especially ones with big meshes with lots of vertices. This is a simple tool that prints it out in hierarchical form, similar to the Unix-like tree command. Originally, I wrote it in Python but it struggled with large scenes. I rewrote it in Rust and now it's about 50x faster.

Installation

Download a pre-built binary or run cargo build.

Example

./gdtree godot-demo-projects/mono/dodge_the_creeps/Main.tscn
Main
│   * script: res://Main.cs
├── ColorRect
│       * anchor_right: 1.0
│       * anchor_bottom: 1.0
│       * color: Color( 0.219608, 0.372549, 0.380392, 1 )
├── Player
│       * (PackedScene) res://Player.tscn
│       * connection: Player:Hit() => Main:GameOver()
├── MobTimer (Timer)
│       * wait_time: 0.5
│       * connection: MobTimer:timeout() => Main:OnMobTimerTimeout()
├── ScoreTimer (Timer)
│       * connection: ScoreTimer:timeout() => Main:OnScoreTimerTimeout()
├── StartTimer (Timer)
│       * wait_time: 2.0
│       * one_shot: true* connection: StartTimer:timeout() => Main:OnStartTimerTimeout()
├── StartPosition (Position2D)
│       * position: Vector2( 240, 450 )
├── MobPath (Path2D)
│   │   * curve: Curve2D
│   └── MobSpawnLocation (PathFollow2D)
├── HUD
│       * (PackedScene) res://HUD.tscn
│       * connection: HUD:StartGame() => Main:NewGame()
├── Music (AudioStreamPlayer)
│       * stream: res://art/House In a Forest Loop.ogg
└── DeathSound (AudioStreamPlayer)
        * stream: res://art/gameover.wav

About

CLI tool for displaying a Godot scene in a tree-like format

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages