Skip to content
Compares Godot 3.1 scripting languages by rendering as many bunny sprites as possible at 60fps
C++ Nim D GDScript C# TypeScript Other
Branch: master
Clone or download
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
Properties Add bunnymark project and first run results Oct 23, 2017
benchmarks Implement rust bunnymark Apr 22, 2019
images fix c# and d builds Mar 17, 2019
run_data Bunnymark Run 2019-03-16 Mar 17, 2019
runs Bunnymark Run 2019-03-16 Mar 17, 2019
.gitignore Add rust bunnymark Mar 18, 2019
Benchmarker.gd Add rust bunnymark Mar 18, 2019
Benchmarker.tscn fix c# and d builds Mar 17, 2019
Bunnymark.cpp Update GDNative-based implementations Feb 18, 2018
Bunnymark.csproj Tests are now fully automated. Added a BunnymarkV2 test Oct 30, 2017
Bunnymark.sln Add bunnymark project and first run results Oct 23, 2017
Cargo.toml Implement rust bunnymark Apr 22, 2019
LICENSE Initial commit Oct 23, 2017
LibCPP.gdnlib Update GDNative-based implementations Feb 18, 2018
LibD.gdnlib fix c# and d builds Mar 17, 2019
LibNIM.gdnlib Update GDNative-based implementations Feb 18, 2018
LibRust.gdnlib Use release binary for rust May 4, 2019
Makefile fix c# and d builds Mar 17, 2019
README.md Implement rust bunnymark Apr 22, 2019
Test.tscn Add D (-dlang) to Bunnymark Oct 31, 2017
default_env.tres fix c# and d builds Mar 17, 2019
dub.json fix c# and d builds Mar 17, 2019
dub.selections.json fix c# and d builds Mar 17, 2019
export_presets.cfg fix c# and d builds Mar 17, 2019
icon.png Tests are now fully automated. Added a BunnymarkV2 test Oct 30, 2017
icon.png.import fix c# and d builds Mar 17, 2019
nakefile fix c# and d builds Mar 17, 2019
nakefile.nim Tests are now fully automated. Added a BunnymarkV2 test Oct 30, 2017
nakefile.nim.cfg Tests are now fully automated. Added a BunnymarkV2 test Oct 30, 2017
project.godot fix c# and d builds Mar 17, 2019
run_benchmarks.sh fix c# and d builds Mar 17, 2019

README.md

Godot Bunnymark

Renders an increasing number of bunny sprites until a stable 60fps is hit. This is a decent test of real world usage as it combines Godot api usage with raw computation. I plan to update this README whenever significant performance changes occur or when new languages are added. Feel free to contribute language implementations or improvements!

Disclaimer

The performance differences here might appear significant, but these benchmarks test the limits of each language (and the engine), which most games will never hit. Do not pick a language because it is "fastest" unless you know you need the fastest language. The smarter choice would be to pick the language you are most productive in. I personally think that most people will be more productive in GDScript or C#. A lot of time and energy went into making GDScript an integrated, seamless experience so it is a good starting point if you don't have a preference for any of the other languages listed.

It is also important to note that C#/Mono and GDNative are both very young. Its possible that their performance characteristics will change. And please don't use these benchmarks to say "Language X is better / faster than Language Y", we don't have enough data to make those assertions. If anything this proves that any of the choices below are viable. Choose the language that you are comfortable with and do your own testing to cover your own scenarios.

Updates

Follow me on twitter @cart_cart if you want Bunnymark updates or updates on my other projects!

Running

  • Build C++ files
    • Setup headers and bindings using these directions
    • run make in the root of this project
  • Build C# files
    • run msbuild /p:Configuration=Tools;DebugSymbols=false;Optimize=true (some terminals might require escaping some of those symbols)
  • Build Nim files
  • Build D files
  • Build Rust files
    • run cargo build --release
  • Build Godot with the ECMAScript module if you want to run the ECMAScript tests
  • run sh run_benchmarks.sh
  • wait! This will take some time ... the automation code is still a bit naive so it takes awhile to converge on 60 fps
  • view the results in USER_HOME_DIRECTORY/.godot/app_userdata/Bunnymark/benchmark_results.json

Benchmark Run - March 16, 2019

BunnymarkV2

Attempts to draw as many sprites as possible using Sprite nodes. It calls GetChildren() to iterate over a list of Sprites and sets their positions. It also updates a Label's text once per frame. This test aims to be a better emulation of real world api usage than the V1 tests.

Language Bunnies Rendered
ECMAScript/Javascript 4660
GDScript (Release) 18560
C#/Mono 27555
GDNative (D) 28020
GDNative (Nim) 29920
GDNative (C++) 37480

BunnymarkV1 - DrawTexture

Attempts to draw as many sprites to the screen as possible by drawing textures directly with VisualServer. This test focuses on compute / render performance and avoids making godot api calls.

Language Bunnies Rendered
ECMAScript/Javascript 4340
GDScript (Release) 20540
C#/Mono 36720
GDNative (Nim) 60056
GDNative (C++) 65580
GDNative (D) 67840

BunnymarkV1 - Sprites

Attempts to draw as many sprites to the screen as possible by adding Sprite nodes. This test focuses on compute / render performance and avoids making godot api calls.

Language Bunnies Rendered
ECMAScript/Javascript 4300
GDScript (Release) 17639
GDNative (Nim) 37180
C#/Mono 37455
GDNative (D) 38740
GDNative (C++) 41935

Hardware:

  • CPU: Intel i7 7700k 4.2GHz
  • GPU: Nvidia GeForce GTX 1070
  • RAM: 16GB DDR4

Build Info:

  • OS: Arch Linux
  • Official Godot 3.1 release

Credits

You can’t perform that action at this time.