article thumbnail

Nearing the Finish Line: Rewriting the Untold Engine

Harold Serrano

Components: The data attached to entities, like meshes, physics, or animations. Want collision? One Last Piece: The Collision System With almost every system in place, I’m now working on the Collision System—the last big piece of this rewrite. Want to add physics? setEntityKinetics(). setEntityCollision(). What’s Next?

Engine 69
article thumbnail

Godot XR update - February 2025

Mircosoft Game Dev

mesh formats and thus requires Godot 4.2+. mesh formats and thus requires Godot 4.2+. Features Update OpenXR to Khronos 1.1.41 release This version of XR Tools has been updated to contain Godot 4.2 Features Update OpenXR to Khronos 1.1.41 release This version of XR Tools has been updated to contain Godot 4.2

Collision 102
Insiders

Sign Up for our Newsletter

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Trending Sources

article thumbnail

Dev snapshot: Godot 4.4 beta 4

Mircosoft Game Dev

3D: Fix collision reposition with CSGShape3D ( GH-102286 ). Physics: Jolt: Fix ghost collision issue on dense triangle meshes ( GH-102614 ). This section covers the most relevant changes made since the beta 3 snapshot , which are largely regression fixes. 2D: Fix Camera2D limits drawing ( GH-102868 ).

Beta 73
article thumbnail

Destoying from scene shows all children deleted, but still childrens are visible in scene on collision. on colllision

Cocos

Destoying from scene shows all children deleted, but still childrens are visible in scene on collision : - On collision with the saw, this is happening : - onLoad() { this.animationComponent = this.node.getComponent(Animation); this.animationComponent.clips[0].name What’s happening wrong with the collision detection code?

article thumbnail

Dev snapshot: Godot 4.4 beta 1

Mircosoft Game Dev

GH-98163 ) CSGMesh3D now explicitly requires the mesh to be manifold. A manifold mesh must be closed, have each edge connected to only two faces, and have volume. Commonly, this means that it needs to be a watertight mesh without any holes and where you can never see the backside of the triangles. (

Beta 106
article thumbnail

Developer Shares Building Fabrics, Ropes, And Soft Bodies

Cocos

Analysis The whole effect can be split into two parts, one for the simulation of the mesh and one for the rendering of the mesh. No need to define the vertex format, and even Cocos has support for sprite meshes. Well, it’s very comfortable, much more comfortable than just a mesh, and it has some practicality too.

Build 98
article thumbnail

Object Placement on Terrain (Mesh)

Mnenad

This chapter is all about how I solved it (so far) to be able to place all kinds of assets like 3D-meshes or self-growing fractal seeds on the terrain. Let’s assume we do it for each vertex on a mesh with let’s say 10’000 vertices.   Asset placement - depending on mesh height vertices. Before we start.

Terrain 52