A new online feature with artificial inteligence can be found on deviantart.com - dreamup.
2D, 3D, game, games, online game, game development, game engine, programming, OpenGL, Open AI, math, graphics, design, graphic, graphics, game development, game engine, programming, web development, web art, web graphic, arts, tutorial, tutorials,
duminică, 29 decembrie 2024
News : Godot Game Awards 2024
Welcome to the first annual Godot Game Awards 2024. Every week we showcased awesome indie games, plugins, and project made in the Godot Engine. You voted for your favorites and we have the results! from StayAtHomeDev.
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
Posted by
Cătălin George Feștilă
Labels:
2024,
2D,
3D,
Blender 3D,
design,
graphic,
graphics,
open source,
source code,
tutorial,
tutorials,
video tutorial,
youtube
Abonați-vă la:
Postări (Atom)