Open tlaedre opened 7 years ago
https://github.com/sideeffects/HoudiniEngineForUnity/blob/4faa44af93ae22a861ceb8e6100fe0f0843d9f10/Assets/Houdini/Editor/HoudiniParmsGUI.cs#L491
Changed input parm is incorrectly assigned back to myParms.prParmInputs[index] instead of myParms.prParmInputs[parm.id].
myParms.prParmInputs[index]
myParms.prParmInputs[parm.id]
Fixed. Should be available in daily build Houdini 16.5.328+
https://github.com/sideeffects/HoudiniEngineForUnity/blob/4faa44af93ae22a861ceb8e6100fe0f0843d9f10/Assets/Houdini/Editor/HoudiniParmsGUI.cs#L491
Changed input parm is incorrectly assigned back to
myParms.prParmInputs[index]
instead ofmyParms.prParmInputs[parm.id]
.