Pages

Se afișează postările cu eticheta 3D. Afișați toate postările
Se afișează postările cu eticheta 3D. Afișați toate postările

sâmbătă, 7 iunie 2025

News : twigl.app another shader editor.

twigl.app is an online editor for One tweet shader, with GIF generator, sound shader, and broadcast live coding.
Today I tested this online shader editor , my hardware is not very good and browser is low, but works ...

miercuri, 4 iunie 2025

News : The 2025 Annecy International Animation Film Festival.

The 2025 Annecy International Animation Film Festival is scheduled to take place from 8 to 14 June 2025, in Annecy, France. See the wikipedia article.
Du 8 juin au 14 juin 2025, prenez part au Festival international du film d’animation d’Annecy ! Durant une semaine, cet événement célèbre le meilleur du cinéma d'animation dans le monde.

luni, 2 iunie 2025

sâmbătă, 31 mai 2025

News : topoexport

Export with confidence using data from the best sources, for professional-grade precision.

duminică, 11 mai 2025

Blender 3D : my custom addon for 2D game development.

Why do I like working with the Python programming language? Because it is very versatile and allows me to process data from the Blender 3D software.
Here is an addon that I created this week to create 2D sprites from 3D animations from Mixamo. It took almost a week because the artificial intelligence from Copilot is flawed in the field of programming, and I don't have hardware resources that allow me to run AI with specialized IDEs along with Blender 3D... I need to find software management solutions on this hardware.
The idea is simple: a 3D animation is chosen, a rendering camera is set up, the animation parameters and the number of sprites are established, along with the involved rendering cameras, and it is rendered with resolutions and transparency. The reason for multiple cameras is that 3D effects can be created in 2D games. A simple example: the game Syberia is a 2D game with combined 2D sprites. The addon can be improved based on the developer's requirements.
NOTE: If I had better hardware and a good network without ... it would have taken from the first step in 3D modeling, animation, creating addons, and making sprites almost a day.
See these results:

duminică, 4 mai 2025

News : Testing GeometryCrafter: Consistent Geometry Estimation for Open-world Videos with Diffusion Priors

The paper arXiv:2504.01016 introduces GeometryCrafter, a framework designed to estimate temporally consistent, high-quality point maps from open-world videos. These point maps are crucial for applications like 3D/4D reconstruction, depth-based video editing, and camera parameter estimation.
I tested this week on the huggingface.co GeometryCrafter project and works with a short video because I don't have a Pro account ...
The GeometryCrafter can generates .npz files. These are NumPy compressed archive files that store the predicted point maps corresponding to each frame of the input video. Each .npz file encapsulates the 3D spatial information derived from the video frames, facilitating further processing or visualization.
I tested a python script for .npz with Blender 3D software and works , not finished yet!

joi, 24 aprilie 2025

News : This FREE Add-on FIXES Blender’s Biggest Annoyance!

duminică, 20 aprilie 2025

News : Create 3d relief used sculptok blender plugin from SculptOK

SculptOK utilizes advanced AI tools to bring about endless possibilities and dramatically increase productivity. Experience how AI can benefit your organization today.
The official website can be found on this url.
See this video tutorial and you find the addon on the comments area :

joi, 20 martie 2025

News : Neural Network Size Comparison | 3D Animation

... from the Turing Time Machine YouTube channel. This old video from three days ago shows a 3D rendering about how big artificial intelligence can be.

vineri, 21 februarie 2025

News : SHADERed tool.

SHADERed is a lightweight tool for writing and debugging shaders. It is easy to use, open source, cross-platform (runs on Windows, Linux & Web - HLSL shaders work on all platforms) and frequently updated with new features.

marți, 4 februarie 2025

Blender 3D : fix deformation Array of Curve modifier.

Possible bug ...
I noticed after creating an Array with an object and a NurbsPath object in Blender 3D version 4.3.2 and after the classic basic operations aligned, scaled and applied all transformations of these two objects, distortions appear when applying the Curve modifier to the Array object. I do not know the cause; it is possible a bug. It can be solved if you convert the NurbsPath to a new type of Curve object from the main menu Object - Convert - Curve, then applying the Deform Curve modifier will not deform the Array object.

joi, 30 ianuarie 2025

News : glTF-Validator for GIFT format type.

The gITF type format is relatively new since 19 October 2015; 9 years ago, but it has many features.
The KhronosGroup comes with a good feature named glTF-Validator you can find the source code on the GitHub.
You can see this feature online on the glTF-Sample-Viewer-Release - GitHub project.
See this image with this online tool:

sâmbătă, 18 ianuarie 2025

Godot : Using the Godot on browser.

Note: You can add your zipped project by using the drag-and-drop browser feature!
Then you can edit the project like any project, some export features can missing:

Shadertoy : ... shader SpaceX's 7th Starship test by XorDev .

"Starship" by @XorDev Inspired by the debris from SpaceX's 7th Starship test: https://x.com/elonmusk/status/1880040599761596689

miercuri, 15 ianuarie 2025

News : Online tools and artificial intelligence by meshy.

This online tool use artificial intelligence to help with some features.
You can test free or paid, for 3D conversion from image to 3D object you can download a blend file type without animation.
I tested with a web photo and works well, the result is an low poly 3D model ...

sâmbătă, 11 ianuarie 2025

Blender 3D : How to Extract Marvel Rivals 3D Model and Use in Blender.

For those who are Marvel Rivals fans or study gaming files, here is a useful video tutorial.

sâmbătă, 4 ianuarie 2025

Blender 3D : Making UV Maps in Geometry Nodes

... from CartesianCaramel another new video tutorial with this new feature in Blender 3D :

duminică, 29 decembrie 2024

Blender 3D : ... all available nodes !

An old surce code in python for Blender 3D to see available nodes :
import bpy

node_tree = bpy.context.object.active_material.node_tree

location_x = 0
location_y = 0

for type in dir(bpy.types):
    real_type = getattr(bpy.types, type)
    if issubclass(real_type, bpy.types.ShaderNode):
        try:
            node = node_tree.nodes.new(type)
            node.width = 250
            node.location = (location_x, location_y)
            location_x += 300
            if location_x > 3000:
                location_x = 0
                location_y -= 600
        except:
            pass