u/LetterheadTall8085

Good news. The Qt quick3d engine implement joints support
▲ 12 r/QtGames+1 crossposts

Good news. The Qt quick3d engine implement joints support

The QtQuick3D.Physics module (starting from version 6.12) now features support for physical joints. This allows the physics engine to natively handle constraints and connections between bodies, which is essential for achieving physically accurate skin behavior, complex skeletal rigs, and natural ragdoll physics in games.

Core Architecture

All new joint types inherit from an abstract base type: PhysicsJoint.

Key rules of PhysicsJoint

  • Connects two bodies: bodyA and bodyB. If one body is left unassigned (null), the joint automatically anchors to the static world space.
  • Strict Requirement: At least one of the connected bodies must be dynamic.
  • Scene registration and lifecycle management are handled automatically behind the scenes via QPhysicsWorld::registerJoint() and deregisterJoint().
  • Local positioning and rotation relative to each body's frame are configured using:
    • positionA / positionB (vector3d)
    • orientationA / orientationB (quaternion)

Available Joint Types

Five specialized joint types have been introduced to handle specific constraints:

1. FixedJoint

Locks the relative position and orientation between two bodies completely. Perfect for composite objects or breakable structures.

2. DistanceJoint

Maintains the origins of the joint within a specified distance range.

  • minDistance — The lower bound of the constraint.
  • maxDistance — The upper bound of the constraint.

3. PrismaticJoint

Permits relative translational (linear) movement along a single axis (the local X-axis of the joint frame) while completely blocking relative rotation.

  • lowerLimit — Maximum translation along the negative X-axis.
  • upperLimit — Maximum translation along the positive X-axis.

4. RevoluteJoint

Commonly referred to as a hinge. It keeps the origins and X-axes of the frames aligned, allowing free rotation exclusively around this shared axis.

  • enableAngularLimit — Toggles the angular constraint (default is false).
  • angularLimitLower / angularLimitUpper — Lower and upper rotation limits specified in radians.

5. SphericalJoint

Also known as a ball-and-socket joint. It keeps the origins locked together but allows the orientations to vary freely (e.g., a shoulder or hip joint).

  • enableConeLimit — Toggles the cone limit constraint (default is false).
  • coneLimitY / coneLimitZ — Angular limits for the cone constraint specified in radians.

Key Takeaways for Developers

  • Natural Skins & Ragdolls: Essential for character physics, secondary clothing motion, and lifelike skeletal simulations.
  • Mechanical Simulation: Simplifies the implementation of vehicles, doors, levers, and suspension systems.
  • Tooling Support: The update includes built-in tests and dedicated Design Studio QML files, enabling visual setup and prototyping.
u/LetterheadTall8085 — 3 days ago

Developing a custom-engine colony sim / economy survival game solo for 2 years (Ecliptica). I’d love to hear your feedback and questions!

Hi everyone!

I'm looking for players who might be interested in my work. If the core concepts and ideas behind my game resonate with you, please let me know. Building a community and hearing from you would be a massive motivation boost to keep pushing forward.

For the past two years, I’ve been single-handedly developing a game that blends deep base building with a broader planetary life simulation. Sadly, I haven’t managed to build an active community around it yet, which means I rarely get any feedback, suggestions, or ideas. I would genuinely love to hear absolutely any opinions, questions, or wishes you might have.

As far as I understand, this community is always on the lookout for good, unique games — and I am looking for dedicated, reliable players.

What is Ecliptica?

In short, Ecliptica is a fairly large-scale project that includes:

  • City & Base Building: Managing and expanding your settlement.
  • Living Economy: A fully dynamic market with no hardcoded price ceilings, completely driven by supply and demand rules.
  • Harsh Survival: Enduring a hostile planetary environment.
  • Expeditions: Scouting and exploring uncharted territories.
  • Urban Survival: Mechanics that challenge you even inside the city if your character lacks wealth or political influence.
  • Procedural Generation & World Destructibility: Making the sandbox unpredictable and interactive.
  • Story & Procedural Quests: A mix of hand-crafted narrative and emergent objectives.
  • and a lot of other features planned for the future.

The Technical Side (No Asset Flips, No AI Slop)

Managing a project of this scale alone is incredibly tough. To make it even more challenging (and rewarding), the game is built entirely on a custom game engine.

  • No generic asset stores. Everything is built from scratch.
  • No low-quality AI-generated content (the only exception is a few temporary inventory icons, which I'm replacing very soon).

So your feedback

If the project sounds like something you'd enjoy, I’d love to make this subreddit a regular home for my development logs and updates. If not, I completely understand and won't spam the space.

I’m highly open to any questions about the mechanics, the custom engine, or the gameplay loop. I would appreciate any feedback or advice you can share!

Thank you all for your time!

reddit.com
u/LetterheadTall8085 — 6 days ago

Ecliptica - Ecliptica Devlog 13

Living World: Procedural Quest System

One of the main new features is the procedurally generated quest system. Now the game analyzes your current state, the position of your empire, and the needs of characters, creating relevant tasks in real-time.

How does it work? Quests are now divided into several types:

  • Contextual Tasks: help you navigate the current situation and suggest which problems of a character or settlement to focus on right now.
  • Storylines: tasks related to the main story and side branches of the Ecliptica world.

The game world has become more symmetrical: similar tasks arise not only for the player but also for other characters. You can talk to a resident of your colony at any time and find out what difficulties they have encountered.

Gamepad Support: Motion Sensors

We strive to make controlling Ecliptica as comfortable as possible for all platforms. In this update, we have added support for control using built-in gamepad sensors (gyroscope). However, it is worth noting that this only works on gamepads that have a gyroscope; gamepads without a gyroscope control the character using classic sticks.

A new section has appeared in the settings menu, allowing you to activate the controller's motion sensors. This gives more intuitive and precise control, especially in moments requiring quick reactions.

store.steampowered.com
u/LetterheadTall8085 — 14 days ago

Ecliptica — Devlog 13: Procedural Quests and Gyroscopic Controls

steam page https://store.steampowered.com/app/3723390/Ecliptica/

A Living World: Procedural Quest System

The headline feature of this update is our brand-new system of procedurally generated quests. The game now analyzes your current state, the status of your empire, and the needs of individual characters to generate relevant tasks in real-time.

Motion Controls

We strive to make the Ecliptica experience comfortable across all platforms. In this update, we have added a completely new control option: support for built-in controller sensors.

youtube.com
u/LetterheadTall8085 — 14 days ago
▲ 4 r/Ecliptica+1 crossposts

Ecliptica - Ecliptica PreDemo v1.4.113

Changelog

  • UI Enhancements: Improved the clarity of resource requirements in the building menu to show exact totals.
  • Gameplay Balancing: Adjusted the colonist arrival rate to ensure a smoother population growth experience.
  • Visual Polish: Fixed rendering issues on several key buildings (Corp Building, Houses, Mining Facilities, and the Capital Tower) to ensure they appear correctly in all environments.
  • General Stability: Various under-the-hood improvements to ensure better game performance and stability.
  • New Features & Improvements
    • AI Optimization: Significantly improved the efficiency of AI decision-making for buildings and production modules, ensuring smoother gameplay and better resource management.
    • Building & Production Balancing: Adjusted resource requirements and production performance to provide a more balanced and rewarding experience.
    • UI Enhancements: Added better tracking for resource requirements in the building interface, making it easier to see what your projects need at a glance.
    • Trade System: Optimized trade logic to be more robust, ensuring your automated systems handle market fluctuations and wallet checks more effectively.
    • Terraformer Updates: Improved terraforming logic for more reliable resource handling and state transitions.
  • Bug Fixes
    • Resolved various minor issues in AI behavior and UI rendering to ensure a more stable game world.
store.steampowered.com
u/LetterheadTall8085 — 13 days ago