Pages

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

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

sâmbătă, 3 august 2024

News : Quick Gaea 2.0 to Blender Workflow

Gaea 2.0 is now available for everyone!
Gaea 2.0, one of the best tools for generating landscapes quickly, is finally out! And that means it's time for a introductory tutorial. In today's video I will introduce you to this tool, its erosion, masking and texturing tools - and at the end, we'll export everything to Blender.
You can download this software from the official website.
See this video tutorial about how can be used with Blender 3D software, from Martin Klekner - youtube channel.

joi, 4 iulie 2024

Blender 3D : World Blender 10 - Particle Erosion

Comes with a free version and a paid version ...

vineri, 21 iunie 2024

News : Rope Solver with Geometry Nodes | Euler Integration | Verlet Physics | XPBD - Detailed Tutorial

Verlet integration (French pronunciation: [vɛʁˈlɛ]) is a numerical method used to integrate Newton's equations of motion.[1] It is frequently used to calculate trajectories of particles in molecular dynamics simulations and computer graphics... , see the wikipedia article.
This video tutorial can be found on the 3DSinghVFX youtube channel.

sâmbătă, 1 iunie 2024

Blender 3D : news and normal map and displace modifiers.

I haven't worked with Blender 3D for some time, I found changes to the modifiers tools, here in the screenshot is how to get a displacement map.
The modifiers tools are used with subdivision and displace map with a gradient texture of white - gray and black, after obtaining the height level normal to the surface, it is applied and the geometry of the vertices is modified.