Remove Debug Remove Demo Remove Mesh Remove Texture
article thumbnail

Developer Shares Building Fabrics, Ropes, And Soft Bodies

Cocos

Though not fully complete, the demos already show a lot of progress, and the developer is selling their findings on the Cocos store for Chinese developers. Try it out now (Note the demo is in Chinese): ClothDemo for 2.x Combined with the knowledge of the rendering, the texture is actually very close to the rendering vertex data.

Build 98
article thumbnail

Godot 3.0, new progress report and GDC

Mircosoft Game Dev

Export options (convert textures, etc.) Automatic detection and reimport of many use cases for textures. If you care about using meshes separately, it is also possible to tell Godot to save them as files. Reimports will overwrite those meshes, though. Godot import/export code was most likely simplified tenfold.

Mesh 52
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

Maintenance release: Godot 3.2.2

Mircosoft Game Dev

The Dodge The Creeps C# demo running on the iOS Simulator. Such pointer could be reported as valid even though the memory it points to was not, or worse, that memory could now hold a different object, leading to hard to debug situations. Thanks to the work of Pedro ( RandomShaper ), debug versions of Godot (e.g. feature set.

Debug 52
article thumbnail

GLES2 and GDNative, progress report #2

Mircosoft Game Dev

add simple C++ GDNative demo. load meshes. render meshes. add simple C++ GDNative demo. Because GDNative is a C API, the minimal example demo to see if things are actually working is implemented in C. The GDNative and NativeScript APIs are rather verbose, so many people seemed to wish for a simpler C++ demo.

Shaders 52
article thumbnail

Godot 3.4 is released with major features and UX polish

Mircosoft Game Dev

Such use-after-free access needs to be guarded with is_instance_valid(obj) , but this has been surprisingly difficult to get right due to a number of bugs and inconsistencies between debug and release builds. You can try it out in the Third Person Shooter (TPS) demo which has been updated to use the ACES Fitted tonemapper.

UX 52
article thumbnail

Here comes Godot 3.2, with quality as priority

Mircosoft Game Dev

2D: Pseudo 3D, Texture atlas, AStar2D. C# version of the Dodge the Creeps demo running in Firefox. Skin support allows multiple meshes to share a single skeleton. formats permit more than 4 bone weights per vertex, such meshes are currently unsupported in Godot 3.2. 2D: Pseudo 3D, Texture atlas, AStar2D.

Render 52
article thumbnail

GSoC 2019 progress report #1 (part 2)

Mircosoft Game Dev

Instead of computing the amount of light that reaches a certain surface every frame for every light source, we precompute all this information and store it in a single texture. The process of generating light map texture coordinates takes a while, and it was being triggered on every scene reimport. Introduction.