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 Feb 5, 2019
1 parent 8ca7b72 commit 8e1dd13
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 8e1dd13

Please sign in to comment.