(文本)框
要评估的输入字段。
For example, in the figure above, the field connected to the “Set Position” node depends on two inputs, Position and , and transforms them into a vector using a single instruction.
套接字形状用于传达哪些套接字是字段,哪些是常规数据。有三种可能的套接字形状,每种形状都可视化其”现场状态” :
圆形:
套接字需要单个实际值,不能接受字段输入。对于输出套接字,这意味着节点总是输出单个值。
锐菱形:
套接字可以接受字段输入,也可以输出字段。恒定的单个值可以连接到这些插座,但每个元素的输出通常不会变化。
带圆点的钻石:
套接字形状是一个带有圆点的菱形,这意味着字段对于每个元素具有相同的值。每个点都将向上移动5米。
插座形状是一颗钻石,现场输入具有不同的输入。换句话说,对于每个元素,值可以是不同的。在这种情况下,位置将翻倍,因为每个点的偏移量是点的位置。
Tip
Often it is desired to extract a single value from a field. While it doesn’t make sense conceptually to simply change a field into a single value, the or the 属性统计节点 can be used to retrieve a single value from a field evaluated on a geometry.
当在支持字段的两个节点套接字之间进行连接时,节点连接将被绘制为虚线。如果错误地将非现场插座连接到现场插座,则连接将被绘制为红色实线,表明存在错误。
节点可分为两类:通常通过几何形状的数据流节点和在每个元素的数据上运行的字段节点。字段节点可以是将几何数据带入节点树中的输入节点,或在该数据上操作的函数节点。
具有几何输入和几何输出的节点几乎总是数据流节点。这意味着他们实际上更改了将从几何节点修改器输出的几何数据。
Input nodes provide data to the field evaluation process. By themselves, they mean nothing; they must be evaluated within the context of a data flow node (geometry) to actually output a value. Examples of input nodes are the built-in attribute input nodes like and ID, but also selection nodes like .
字段输入也可来自处理几何形状的其他节点,如 由 /modeling/geometry_nodes/point/distribute_points_on_faces 创建,以便在输入网格的形状发生变化时提供稳定性,并在实例上用于创建运动模糊。值应为大值,无订单。此属性由生成随机性的节点使用,例如 /modeling/geometry_nodes/utilities/random_value 。与其他内置属性不同,此属性不是必需的,可以删除。 ,其形式为 。
所有字段节点在其所连接的数据流节点的上下文中工作。上下文通常由几何组件类型和属性域组成,因此它确定从输入节点检索哪些数据。
一个常见的误解是,在多个地方使用的相同字段节点树将输出相同的数据。这并不一定是真实的,因为将针对每个数据流节点评估字段节点树,从而可能从不同或改变的几何体检索数据。
Here, the node’s input field is evaluated once. To evaluate the field, the node traverses backwards to retrieve the inputs from the field input nodes.
当添加第二个设置位置节点时,同一个字段节点树被评估两次,每个数据流节点一次。在第二个设置位置节点处,结果将不同,因为其几何输入将已经具有与第一个节点改变的位置。
在这里,捕获属性节点存储初始位置的副本。请注意,评估捕获属性节点的字段输入是一个完全不同的步骤。之后, “设置位置” 节点的输入字段不会使用实际位置,而是使用其匿名属性副本。