gdext VS arewegameyet

Compare gdext vs arewegameyet and see what are their differences.

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
gdext arewegameyet
12 99
2,427 677
7.1% 0.9%
9.6 7.1
5 days ago 3 days ago
Rust SCSS
Mozilla Public License 2.0 Creative Commons Attribution 4.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

gdext

Posts with mentions or reviews of gdext. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-26.
  • Voronoi, Manhattan, random
    6 projects | dev.to | 26 Apr 2024
    As an alternative, you can code in C++ or C#. If desired, Godot has bindings for other languages, such as Rust. Going ahead—in the end, C++ came in handy and useful for the project.
  • Modern Java/JVM Build Practices
    9 projects | news.ycombinator.com | 4 Jan 2024
    The world has moved on though to opinionated tools, and Rust isn't even the furthest in that direction (That would be Go). The equivalent of those two lines in Cargo.toml would be this example of a basic configuration from the jacoco-maven-plugin: https://www.jacoco.org/jacoco/trunk/doc/examples/build/pom.x... - That's 40 lines in the section to do the "defaults".

    Yes, you could add a load of config for files to include/exclude from coverage and so on, but the idea that that's a norm is way more common in Java projects than other languages. Like here's some example Cargo.toml files from complicated Rust projects:

    Servo: https://github.com/servo/servo/blob/main/Cargo.toml

    rust-gdext: https://github.com/godot-rust/gdext/blob/master/godot-core/C...

    ripgrep: https://github.com/BurntSushi/ripgrep/blob/master/Cargo.toml

    socketio: https://github.com/1c3t3a/rust-socketio/blob/main/socketio/C...

  • GDext: Rust Bindings for Godot 4
    1 project | news.ycombinator.com | 2 Jan 2024
  • Unity’s pricing is a symptom, not the cause of tougher times for the industry
    2 projects | news.ycombinator.com | 14 Sep 2023
  • Godot 4.1 Is Released
    14 projects | news.ycombinator.com | 6 Jul 2023
    Starting with Godot 4.0, they now support GDExtension which allows you to basically write your own game code in C++ (and other languages), then have the engine import your code: https://docs.godotengine.org/en/stable/tutorials/scripting/g.... There is also a set of Rust bindings that utilize GDExtension too: https://github.com/godot-rust/gdext.

    They might be worth looking into.

  • Bevy, Fyrox or Godot, which has better 3D graphics performance and Wayland support?
    1 project | /r/rust_gamedev | 22 Jun 2023
    Godot currently has 2 versions, the 3.X LTS version has a different api for which rust support ist fully there, that version is I think like 6months old and quite mature. The timeline for GDExtention Rust is difficult to predict but this is the status: https://github.com/godot-rust/gdext/issues/24
  • What is Rust's potential in game development?
    12 projects | /r/rust | 15 Jun 2023
    Adding onto this, I successfully written a game in Godot using gdnative / gdext. I started with a split approach using gdscript and rust for CPU intensive but found that the API layer was slow at transferring large amounts of data (serialization?). I ended up rewriting it in all rust and it worked like a charm. I was able to target native and web assembly, the web assembly was much slower but worked on the browser.
  • Thinking of migrating from Roblox, have some questions
    1 project | /r/godot | 8 Jun 2023
    You can always port performance-sensitive parts of your code later to C#, or even Rust using GDExtension modules: https://github.com/godot-rust/gdext
  • Adding scripts written in Rust to nodes with GDExtension
    1 project | /r/godot | 22 May 2023
    I’ve recently switched from my own custom game engine written in Rust to Godot and want to use my knowledge in Rust to create game logic. I’ve looked at the book for godot-rust and can’t figure out how to use it properly. My goal is to write Rust code and implement it as a script in Godot 4.
  • Really frustrated. [Warning: Bit of a negative rant]
    6 projects | /r/rust_gamedev | 26 Apr 2023
    To add to your point, here’s also godot-rust if you want something semi-native in godot

arewegameyet

Posts with mentions or reviews of arewegameyet. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-07-22.
  • Is rust suitable for multiplayer games?
    1 project | /r/gamedev | 10 Dec 2023
    arewegameyet
  • Someday, maybe, we will be game. I hope.
    1 project | /r/rust_gamedev | 21 Aug 2023
    "While the ecosystem is still very young, you can find enough libraries and game engines to sink your teeth into doing some slightly experimental gamedev."
  • Egregoria is a city simulation with high granularity
    6 projects | news.ycombinator.com | 22 Jul 2023
    I think Rust for games has come really far. I will cite https://arewegameyet.rs/ "Almost. We have the blocks, bring your own glue.".

    All the blocks are there and the language is really well suited to games.

    On top of my head:

    The pros:

    - The crate ecosystem and the package manager makes it really easy to integrate any useful component such as pathfinding, spatial partitioning, graphics backend, audio system.. Most crates take a lot of effort to be cross-platform so I can develop on linux and not spend too much time debugging windows releases.

    - The strong typing and algebraic data types makes expressing the game state very pleasant. I also found I was able to develop a very big game without too many bugs even though I don't write many tests.

    - Ahead of time compilation + LLVM guarantees you won't have to optimise for weird things around a virtual machine. Rust gives you more control to optimise hot loops as you can go low-level.

    - I find wgpu to be the perfect balance between ergonomics and power compared to Vulkan. OpenGL support through wgpu is also a nice addition for lower end devices.

    - The Rust community is very helpful, you can often talk directly to crate maintainers

    The cons:

    - Compilation times, when compared to JITed languages such as C# can be very painful. It can be alleviated by buying a 3950X but I still often get 10-30s iteration times.

    - The static nature of Rust means you often need a dynamism layer above to tweak stuff that can be awkward to manage. I made inline_tweak for this purpose but it's really far from how easy Unity makes it. https://github.com/Uriopass/inline_tweak

    - Since Rust feels very ergonomic, you are tempted to write almost all game logic within it, so mod support feels very backwards to implement as you cannot really tweak "everything" like in Unity games. Thankfully "Systems" game like Factorio or Egregoria can be theoretically split into the "simulation" and the "entities" so mod can still have a great impact. Factorio is built in C++ so has the same problematic. Their Lua API surface is quite insane to be able to hook into everything. https://lua-api.factorio.com/latest/

    Now, I have to talk about Bevy: https://bevyengine.org/. It did not exist when I started but it is a revolution in the Rust gamedev space. It is a very powerful 100% Rust game engine that makes you write game code in Rust too. It has incredible energy behind it and I feel like if I'd used Bevy from the start I wouldn't have had to develop many core engine systems. Its modular design is also incredibly pleasant as you can just replace any part you don't like with your own.

  • What is Rust's potential in game development?
    12 projects | /r/rust | 15 Jun 2023
  • Struggling to find practical uses for Rust
    2 projects | /r/rust | 26 May 2023
    For practical uses of Rust? Whatever you want to program. People use Rust for game development, GUIs, web dev, and more. Anything where abstraction, speed, concurrency, memory safety, etc. are important, Rust will probably be a good fit.
  • Latest Zen Kernel......
    5 projects | /r/linuxmemes | 26 May 2023
    Are we game yet? "Almost. We have the blocks, bring your own glue"
  • Really frustrated. [Warning: Bit of a negative rant]
    6 projects | /r/rust_gamedev | 26 Apr 2023
    Not seeing anything else that's close to photo realistic. I'm hitting the tough bugs first all too often. More than half my time has been spent on ecosystem problems.
  • What are some stuff that Rust isn't good at?
    14 projects | /r/rust | 16 Apr 2023
    I also know of https://arewegameyet.rs/
  • Chrome ships WebGPU, a sort-of successor to WebGL. How soon do you see this being adopted by the game dev community?
    4 projects | /r/gamedev | 10 Apr 2023
    Yes — and in fact, Firefox's implementation has been the go-to graphics API for folks trying to make Rust gamedev happen for a long time now. Bevy Engine's renderer is built on it, for example.
  • Are We <Thing> Yet?
    2 projects | news.ycombinator.com | 10 Apr 2023
    They're all/mostly websites about the state of the Rust language ecosystem. For example, can you write games in Rust (https://arewegameyet.rs/) or what's the state of the async (https://areweasyncyet.rs/)

What are some alternatives?

When comparing gdext and arewegameyet you can also consider the following projects:

awesome-godot - A curated list of free/libre plugins, scripts and add-ons for Godot

Godot - Godot Engine – Multi-platform 2D and 3D game engine

dipa - dipa makes it easy to efficiently delta encode large Rust data structures.

RG3D - 3D and 2D game engine written in Rust [Moved to: https://github.com/FyroxEngine/Fyrox]

xml-mut - xml mutation language resembling sql

rust-rdkafka - A fully asynchronous, futures-based Kafka client library for Rust based on librdkafka

gdsdecomp - Godot reverse engineering tools

GameDev-Resources - :video_game: :game_die: A wonderful list of Game Development resources.

piston - A modular game engine written in Rust

detonator - 2D game engine and editor 💥💣

Arrow - Game Narrative Design Tool

awesome-bevy - A collection of Bevy assets, plugins, learning resources, and apps made by the community