Attribute Transfer Node #86843
Labels
No Label
Interest
Alembic
Interest
Animation & Rigging
Interest
Asset Browser
Interest
Asset Browser Project Overview
Interest
Audio
Interest
Automated Testing
Interest
Blender Asset Bundle
Interest
BlendFile
Interest
Collada
Interest
Compatibility
Interest
Compositing
Interest
Core
Interest
Cycles
Interest
Dependency Graph
Interest
Development Management
Interest
EEVEE
Interest
EEVEE & Viewport
Interest
Freestyle
Interest
Geometry Nodes
Interest
Grease Pencil
Interest
ID Management
Interest
Images & Movies
Interest
Import Export
Interest
Line Art
Interest
Masking
Interest
Metal
Interest
Modeling
Interest
Modifiers
Interest
Motion Tracking
Interest
Nodes & Physics
Interest
OpenGL
Interest
Overlay
Interest
Overrides
Interest
Performance
Interest
Physics
Interest
Pipeline, Assets & IO
Interest
Platforms, Builds & Tests
Interest
Python API
Interest
Render & Cycles
Interest
Render Pipeline
Interest
Sculpt, Paint & Texture
Interest
Text Editor
Interest
Translations
Interest
Triaging
Interest
Undo
Interest
USD
Interest
User Interface
Interest
UV Editing
Interest
VFX & Video
Interest
Video Sequencer
Interest
Virtual Reality
Interest
Vulkan
Interest
Wayland
Interest
Workbench
Legacy
Blender 2.8 Project
Legacy
Milestone 1: Basic, Local Asset Browser
Legacy
OpenGL Error
Meta
Good First Issue
Meta
Papercut
Meta
Retrospective
Meta
Security
Module
Animation & Rigging
Module
Core
Module
Development Management
Module
EEVEE & Viewport
Module
Grease Pencil
Module
Modeling
Module
Nodes & Physics
Module
Pipeline, Assets & IO
Module
Platforms, Builds & Tests
Module
Python API
Module
Render & Cycles
Module
Sculpt, Paint & Texture
Module
Triaging
Module
User Interface
Module
VFX & Video
Platform
FreeBSD
Platform
Linux
Platform
macOS
Platform
Windows
Priority
High
Priority
Low
Priority
Normal
Priority
Unbreak Now!
Status
Archived
Status
Confirmed
Status
Duplicate
Status
Needs Info from Developers
Status
Needs Information from User
Status
Needs Triage
Status
Resolved
Type
Bug
Type
Design
Type
Known Issue
Type
Patch
Type
Report
Type
To Do
No Milestone
No project
No Assignees
5 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: blender/blender#86843
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
{F9904877 size=full}
This is task is for a port of the "Data Transfer" modifier to a node.
Details
** A later improvement to the node could be to copy multiple attributes, maybe with a multi-socket input node.
** "Nearest": Copies attributes from the nearest element of the domain of the source attribute.
** "Nearest Interpolated": Similar to what happens in the point distribute node, interpolates values from the nearest vertices or edges on the closest face
** "Topology": Requires the topology of the target geometry to be the same, so really more of an "Attribute Copy" operation, otherwise outputs an error.
** More options may be necessary based on the choice for the destination domain.
Further Questions
** The "Max Distance" and "Ray Radius" options may be necessary.
Implementation
It's not clear how much the existing data transfer code would be useful, my guess is not much.
The "Attribute Proximity" node already does the same thing with the "position" attribute, so some logic could be shared with that.
Added subscriber: @HooglyBoogly
Added subscriber: @victorlouis
As I understand it:
Nearest
mode of the modifier corresponds to thePoints
mode if the Attribute Proximity nodeNearest Interpolated
mode corresponds to theFaces
modeHowever the Attribute Proximity node only "transfers"
position
, so it's code would have to be extended to transfer arbitrary attributes (and interpolate them over triangle faces when needed).Yes, good points. Those names in particular could be improved I think.
Added subscriber: @SimonThommes
The way this is split up into details totally makes sense to me.
In terms of needed mapping methods I have a couple of thoughts:
Corner
domain, with for example UV seams. Even the current operator/modifier works far from ideal in this case.But I think additional needed methods can come if necessary.
WIP: Attribute Transfer Nodeto Attribute Transfer NodeChanged status from 'Needs Triage' to: 'Confirmed'
Added subscriber: @stratmann
Added subscriber: @JacquesLucke
Changed status from 'Confirmed' to: 'Archived'
The design of the underlying system has changed significantly. If improvements to the existing Transfer node are required, a new task can be created.