Skip to content

Commit b0ada69

Browse files
committed
remove imgui from samples as well
1 parent 62cfd35 commit b0ada69

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

Assets/Samples/CustomComposite/CustomComposite.cs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -136,13 +136,6 @@ public class CustomCompositeEditor : InputParameterEditor<CustomComposite>
136136
{
137137
public override void OnGUI()
138138
{
139-
// Using the 'target' property, we can access an instance of our composite.
140-
var currentValue = target.scaleFactor;
141-
142-
// The easiest way to lay out our UI is to simply use EditorGUILayout.
143-
// We simply assign the changed value back to the 'target' object. The input
144-
// system will automatically detect a change in value.
145-
target.scaleFactor = EditorGUILayout.Slider(m_ScaleFactorLabel, currentValue, 0, 2);
146139
}
147140

148141
public override void OnDrawVisualElements(VisualElement root, Action onChangedCallback)

0 commit comments

Comments
 (0)