godot-xr-tools VS godot-proposals

Compare godot-xr-tools vs godot-proposals and see what are their differences.

godot-xr-tools

Support scenes for AR and VR in Godot (by GodotVR)

godot-proposals

Godot Improvement Proposals (GIPs) (by godotengine)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
godot-xr-tools godot-proposals
20 610
448 1,041
3.8% 2.3%
7.7 2.7
6 days ago 6 months ago
GDScript
MIT License MIT License
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.

godot-xr-tools

Posts with mentions or reviews of godot-xr-tools. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-07-06.
  • Godot 4.1 Is Released
    14 projects | news.ycombinator.com | 6 Jul 2023
    It’s a dream compared to UE. I tried on and off over a couple years to power through building some toy VR apps in UE and was never really able to make much progress past their prefab maps. It’s just so freaking complex that, IME, the fun of the process gets crushed under the weight of making zero forward progress.

    As I started a NixOS immersion program a few months back I was looking for a new platform that I col could do 100% of my dev on Lunux. Ran into godot searching vids on YouTube and was really impressed with the workflows so I installed godot and steam (home.packages = [ pkgs.unstable.godot_4 pkgs.steam ]). With openXR support built into godot 4, it automatically picked up the shared lib that stream dropped and in under an hour was walking around using my index and Vive in a VR env and could also build a package for my son’s quest.

    Within a month on-the-side I had built a tabletopesque tank battle game with a custom ray-based suspension over high poly terrain, particle effects, ballistic artillery, and a unique controller input scheme based on the tilt of the controllers (left for body rotation, right for turret). The physics engine is great, rocking the body on fire was simple as an inverse off the shell spawn vector, and the body properly rolls under both lateral and longitudinal axis by virtue of the damper shocks.

    All that to say, I think the biggest difference is that with godot 90% of my effort, code, and time was spent writing implementation code for my game while on UE it was spent writing integration code.

    You obviously miss out on hot topic things like nanite et al, but I learned a long time ago that fidelity has no correlation with an engaging game. The other con will likely be around performance, it’s passable at 90hz, but if you want to start hitting framerates like 144hz, the critical code will probably need to drop to C++ using GDExtention.

    I’ve also noticed that, with the popularity gaining in gltf, that it was rather trivial to find little assets with native support.

    I’d recommend watching some vids on creating VR apps, and another great resource, if you want to grok the interface code is godot’s open-xr-toolkit project: https://github.com/GodotVR/godot-xr-tools/tree/master/addons...

  • AR for mobile devices?
    1 project | /r/godot | 26 May 2023
  • Question on VR game development.
    1 project | /r/virtualreality | 7 May 2023
    It probably depends on what you want to do and if you want this to be a career. If you want to do this as a hobby and the functions you need are described in this toolkit, then I would give Godot a try as the fastest way to try your idea and get up and running and have fun: https://github.com/GodotVR/godot-xr-tools/tree/master/addons/godot-xr-tools/functions. If you want heavy physics based actions like boneworks with a full body avatar, then yeah go unreal or Unity. If you want to try to get hired by a VR studio, then unreal or Unity.
  • Released the Cruelty Squad VR mod made with Godot's OpenXR and XRTools Assets! 2 months of work, but it's been fun. (Github link in comments)
    2 projects | /r/godot | 3 Mar 2023
    Using Godot (actually the engine is 3.3 in game, but I used 3.5 in the editor), and using basically every one of the XR tools: https://github.com/GodotVR/godot-xr-tools
  • Align kinematic body with up direction
    1 project | /r/godot | 30 Jan 2023
    Hi although developed for VR I wonder if this might give you some ideas: https://github.com/GodotVR/godot-xr-tools/blob/master/scenes/sphere_world_demo/sphere_world_demo.tscn
  • Retrogame INSIDE a Godot game?
    2 projects | /r/godot | 14 Jan 2023
    There is also a 2din3d object in the xrtools I think that allows you to assign a scene via code if you wanted to make a mame machine. https://github.com/GodotVR/godot-xr-tools/wiki/PointerAndUI
  • Last VR conversion of the year, /u/slaiyn and team’s Solar Gardener. Thanks to everyone for so much support this year helping me learn Godot!
    3 projects | /r/godot | 28 Dec 2022
    Godot XR Asset and XR Tools asset, making it 100x easier to make these VR conversions, and especially MalcolmNixon who jumped in and literally created an extension of XRTools for the purpose of walking on planets for this project that now everyone can use: https://github.com/GodotVR/godot-xr-tools.
  • I am Robi-Man!
    3 projects | /r/godot | 3 Nov 2022
    XR Tools asset: https://github.com/GodotVR/godot-xr-tools
  • what's the state of VR in godot 4?
    1 project | /r/godot | 5 Oct 2022
  • Does godot work with the quest 2? (if so... tutorials?)
    2 projects | /r/godot | 24 Aug 2022

godot-proposals

Posts with mentions or reviews of godot-proposals. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-12.
  • Show HN: My wife and I made a maze game
    3 projects | news.ycombinator.com | 12 Apr 2024
    Godot was fine, for the most part, it's a good engine for small games. The main issue was around working together and resolving conflicts with git (Godot isn't really working and constantly kept changing IDs in resource files), and it kept losing data in scenes when the code changed so we had to rebuild things several times. On previous test games we also ran into huge performance issues in the editor when we wanted to do too much work in scenes, so we had to switch to doing most of the work in code.

    The worst part was when I had to rip out a bunch of testing code that used @tool for release as it seemed to cause issues when doing a release build. The engine is generally not great when you want to follow clean software engineering (e.g. dependency injection is not possible, I opened a proposal to that end here[1]).

    [1]: https://github.com/godotengine/godot-proposals/issues/8850

  • Dev snapshot: Godot 4.3 dev 3
    2 projects | news.ycombinator.com | 9 Feb 2024
  • How to make thick object disappear while passing through thin one?
    1 project | /r/godot | 9 Dec 2023
    If we had a Mask2D, this would be super easy and straight forward.
  • How to use line2D as a mask texture?
    1 project | /r/godot | 9 Dec 2023
    So if that's what OP meant, clip_children property won't work. Instead OP needs to use a CanvasGroup parent and the Line2D (with CanvasItem Material in Subtract mode) and TextureRect as siblings, or any of the other methods explained here until we have a Mask2D node.
  • New Running And Debugging System for Android And Ios &gui apps
    1 project | /r/godot | 9 Dec 2023
    There is an open proposal to have a compile option for a LibGodot, as a Library https://github.com/godotengine/godot-proposals/issues/6267
  • What IDE has the best support for GdScript?
    2 projects | /r/godot | 9 Dec 2023
    Yes, there could be the option to open at least 2 tabs at the same time, when working with scripts. This has probably already been suggested in: https://github.com/godotengine/godot-proposals
  • How to fix the jittery pixel in my game?
    3 projects | /r/godot | 8 Dec 2023
    I cannot tell exactly where the jitter is from the video, but if it is what I'm thinking of, it is a known issue, see here. There is a proposal to fix this, with tons of discussion here. Try some of the workarounds mentioned in these two links. Game looks great by the way!
  • 4.2 did Ctrl + K change or is this a bug?
    2 projects | /r/godot | 5 Dec 2023
    It's in the release notes. Here is a link to the pull request, based on this proposal.
  • How do I view the scene in runtime?
    1 project | /r/godot | 5 Dec 2023
    Currently not possible: https://github.com/godotengine/godot-proposals/issues/7213
  • Made a proposal for clone a key in AnimationPlayer
    1 project | /r/godot | 26 Nov 2023

What are some alternatives?

When comparing godot-xr-tools and godot-proposals you can also consider the following projects:

RelEcs - A lightweight and easy to use entity component system with an effective feature set for making games.

o3de - Open 3D Engine (O3DE) is an Apache 2.0-licensed multi-platform 3D engine that enables developers and content creators to build AAA games, cinema-quality 3D worlds, and high-fidelity simulations without any fees or commercial obligations.

godot_openxr - (Maintenance mode) OpenXR drivers for the Godot Game Engine v3.x

godex - Godex is a Godot Engine ECS library.

godot-console - In-game console for Godot 3.

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

Godot-XR-Avatar - a MIT Licensed VR avatar for the Godot Engine

Godot-Mixing-Desk - A complete audio solution for Godot 3.3.x, making procedural sound and adaptive/procedural music possible with a few nodes and a couple lines of code.

clojure-vr

kompute - General purpose GPU compute framework built on Vulkan to support 1000s of cross vendor graphics cards (AMD, Qualcomm, NVIDIA & friends). Blazing fast, mobile-enabled, asynchronous and optimized for advanced GPU data processing usecases. Backed by the Linux Foundation.

gdsdecomp - Godot reverse engineering tools

openseeface-gd - A GUI for running OpenSeeFace.