Skip to content

Commit 9e516cc

Browse files
committed
Widened range of the 'Sampling Resolution' setting.
1 parent a4a454f commit 9e516cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Plugins/HoudiniEngineUnity/Editor/UI/HEU_InputNodeUI.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ The HDA type can accept any object with a HEU_HoudiniAssetRoot component. (Inclu
308308
EditorGUI.indentLevel++;
309309
{
310310
UnityEditor.SerializedProperty samplingResolution = inputNode._uiCache._splineSettingsProperty.FindPropertyRelative("_samplingResolution");
311-
samplingResolution.floatValue = EditorGUILayout.Slider("Sampling Resolution", samplingResolution.floatValue, 0.0f, 1.0f);
311+
samplingResolution.floatValue = EditorGUILayout.Slider("Sampling Resolution", samplingResolution.floatValue, 0.0f, 4.0f);
312312
}
313313
EditorGUI.indentLevel--;
314314
}

0 commit comments

Comments
 (0)