Haoran Yang Posted March 29, 2024 Share Posted March 29, 2024 Hi I want to use my value in Record field "z-wert" as z-value for creating a 3d-Point. But it didn't work. I could not find any wrong from my nodes. Please help me to find out why. It seems that FieldValue cannot be read. Thank you so much! punkt_schieben_Marionette.vwx Quote Link to comment
Letti R Posted March 30, 2024 Share Posted March 30, 2024 Hello, there is a type mismatch at the inputs "sRecName" and "sFildName". There the node "Get Record Field" expects to get data of type "string" (aka. text) but what you are giving with the "Name" nodes are objects (data of type handle) that are named "zahl" and "z-wert". These objects dont exist, so there is nothing put into the "Get Record Field" node at these two inputs. I guess what you wanted to do is to use the "String" node instead of the "Name" nodes. By the way, the expected data types of the input or ourput ports of a node is normaly hinted in the name of said port. For example: "hObj" -> is a handle to an object (it can be treated like an object) "sRecName" -> is a string (text) "nX" -> is a number and so on To cut a long story short, here is a corrected version of your Marionette: punkt_schieben_Marionette.vwx Regards, Letti 2 Quote Link to comment
Haoran Yang Posted April 4, 2024 Author Share Posted April 4, 2024 Thank you Letti! Quote Link to comment
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.