Message 1 of 3
Problem with GetAttr
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
While doing
select -r polySurface11.f [57];
getAttr polySurface11Shape.uvPivot;
// Result: 0.225335 0.293394 //
Everything is correct, but when done
select -r polySurface11.f [57];
float $ pos [] = 'getAttr polySurface11Shape.uvPivot';
it turns out
// Error: float $ pos [] = 'getAttr polySurface11Shape.uvPivot'; //
// Error: Line 2.16: Syntax error //
What am I doing wrong?