blendersushi icon indicating copy to clipboard operation
blendersushi copied to clipboard

LIVENODING Exporting Geometry Nodes Custom Data Into Text Using SV Nodes

Open enzyme69 opened this issue 2 years ago • 1 comments

Screen Shot 2022-03-31 at 11 43 47 am Screen Shot 2022-03-31 at 11 46 29 am

enzyme69 avatar Mar 31 '22 00:03 enzyme69

export_PLY_sketchfab_008.blend.zip

import bpy
C = bpy.context

blah = bpy.data.objects['Cube']

# get evaluated data
blaheval = blah.evaluated_get(C.evaluated_depsgraph_get())

for i in blaheval.data.attributes['COL'].data:
    append(i.vector)

enzyme69 avatar Mar 31 '22 00:03 enzyme69