File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
Assets/MRTK/SDK/Editor/Inspectors/UX/Pointers Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ public class SpherePointerInspector : BaseControllerPointerInspector
18
18
private SerializedProperty triggerInteraction ;
19
19
private SerializedProperty sceneQueryBufferSize ;
20
20
private SerializedProperty ignoreCollidersNotInFOV ;
21
-
21
+ private SerializedProperty graspPointPlacement ;
22
22
23
23
private bool spherePointerFoldout = true ;
24
24
@@ -35,6 +35,7 @@ protected override void OnEnable()
35
35
grabLayerMasks = serializedObject . FindProperty ( "grabLayerMasks" ) ;
36
36
triggerInteraction = serializedObject . FindProperty ( "triggerInteraction" ) ;
37
37
ignoreCollidersNotInFOV = serializedObject . FindProperty ( "ignoreCollidersNotInFOV" ) ;
38
+ graspPointPlacement = serializedObject . FindProperty ( "graspPointPlacement" ) ;
38
39
}
39
40
40
41
public override void OnInspectorGUI ( )
@@ -58,6 +59,7 @@ public override void OnInspectorGUI()
58
59
EditorGUILayout . PropertyField ( triggerInteraction ) ;
59
60
EditorGUILayout . PropertyField ( grabLayerMasks , true ) ;
60
61
EditorGUILayout . PropertyField ( ignoreCollidersNotInFOV ) ;
62
+ EditorGUILayout . PropertyField ( graspPointPlacement ) ;
61
63
}
62
64
}
63
65
You can’t perform that action at this time.
0 commit comments