Skip to content

Commit

Permalink
Attributes made input must be read+write appleseedhq#167
Browse files Browse the repository at this point in the history
  • Loading branch information
luisbarrancos committed Mar 10, 2019
1 parent dd1dfc2 commit e72d616
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/appleseedmaya/attributeutils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ bool anyChildPlugConnected(const MPlug& plug, bool input)
MStatus makeInput(MFnAttribute& attr, const bool keyable)
{
attr.setStorable(true);
attr.setReadable(false);
attr.setReadable(true); // if it's false, it won't appear on the attr spreadsheet
attr.setWritable(true);
attr.setKeyable(keyable);
return MS::kSuccess;
Expand Down

0 comments on commit e72d616

Please sign in to comment.